diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 3c7a207..670ed46 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)) @@ -996,6 +996,131 @@ 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 +================================================================================ + +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: (token_tree (identifier) (identifier)))) + (identifier) + (identifier)))) + (expression_statement + (call_expression + function: (identifier) + arguments: (arguments + (attribute_item (attr_item + (identifier) + arguments: (token_tree + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (token_tree) + (token_tree)))) + (identifier))))) + +================================================================================ +Derive macro helper attributes +================================================================================ + +// Example from https://github.com/dtolnay/thiserror/blob/21c26903e29cb92ba1a7ff11e82ae2001646b60d/README.md + +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 + (line_comment) + (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) + (token_tree + (string_literal) + (identifier) + (token_tree (integer_literal))))) + (enum_variant (identifier) + (ordered_field_declaration_list (type_identifier))) + (attribute_item (attr_item + (identifier) + (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 ================================================================================ @@ -1032,7 +1157,7 @@ fn foo() { pattern: (identifier) value: (array_expression (attribute_item - (meta_item + (attr_item (identifier))) (integer_literal) (integer_literal) @@ -1041,7 +1166,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 527daa0..f1d4666 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)) diff --git a/grammar.js b/grammar.js index 53ff0b8..2f4649c 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,14 +266,39 @@ 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', $._expression)), + field('arguments', alias($.delim_token_tree, $.token_tree)) + )) + ), + + built_in_attr: $ => seq( + $._built_in_attr_path, + optional(choice( + seq('=', field('value', $._expression)), + field('arguments', $.meta_arguments) + )) + ), + + _built_in_attr_path: $ => choice( + ...built_in_attributes.map(name => alias(name, $.identifier)) + ), + 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 6e3ffde..9b3aad2 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,538 @@ } ] }, + "_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": "_expression" + } + } + ] + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "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": "_expression" + } + } + ] + }, + { + "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": [ @@ -955,7 +1487,7 @@ "name": "value", "content": { "type": "SYMBOL", - "name": "_literal" + "name": "_expression" } } ] diff --git a/src/node-types.json b/src/node-types.json index e53cfd7..4160337 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": "token_tree", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "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 @@ -2379,6 +2439,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "attr_item", + "named": true + }, { "type": "meta_item", "named": true @@ -2715,7 +2779,7 @@ "required": false, "types": [ { - "type": "_literal", + "type": "_expression", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 2b56995..092c33b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2567 -#define LARGE_STATE_COUNT 647 -#define SYMBOL_COUNT 320 +#define STATE_COUNT 2582 +#define LARGE_STATE_COUNT 659 +#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 @@ -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", @@ -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, @@ -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, @@ -10159,28 +10495,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 +10620,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 +10641,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 +10672,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 +10694,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 +10719,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 +10744,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 +10761,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 +11671,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,932 +11693,1895 @@ 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: - ACCEPT_TOKEN(anon_sym_lifetime); + if (lookahead == '_') ADVANCE(277); 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}, - [101] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, - [109] = {.lex_state = 57, .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}, - [114] = {.lex_state = 5, .external_lex_state = 2}, - [115] = {.lex_state = 57, .external_lex_state = 2}, - [116] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, - [123] = {.lex_state = 5, .external_lex_state = 2}, - [124] = {.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 = 57, .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}, - [135] = {.lex_state = 5, .external_lex_state = 2}, - [136] = {.lex_state = 5, .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}, - [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}, - [148] = {.lex_state = 5, .external_lex_state = 2}, - [149] = {.lex_state = 57, .external_lex_state = 2}, - [150] = {.lex_state = 57, .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}, - [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}, - [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 = 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}, - [170] = {.lex_state = 5, .external_lex_state = 2}, - [171] = {.lex_state = 5, .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 = 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 = 5, .external_lex_state = 2}, - [182] = {.lex_state = 5, .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}, - [189] = {.lex_state = 6, .external_lex_state = 2}, - [190] = {.lex_state = 6, .external_lex_state = 2}, - [191] = {.lex_state = 6, .external_lex_state = 2}, - [192] = {.lex_state = 6, .external_lex_state = 2}, - [193] = {.lex_state = 6, .external_lex_state = 2}, + 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(); + 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 = 57, .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 = 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 = 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 = 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 = 57, .external_lex_state = 2}, + [84] = {.lex_state = 57, .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}, + [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 = 57, .external_lex_state = 2}, + [93] = {.lex_state = 5, .external_lex_state = 2}, + [94] = {.lex_state = 5, .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 = 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 = 57, .external_lex_state = 2}, + [103] = {.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 = 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 = 5, .external_lex_state = 2}, + [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 = 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 = 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 = 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 = 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}, + [134] = {.lex_state = 5, .external_lex_state = 2}, + [135] = {.lex_state = 5, .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}, + [144] = {.lex_state = 57, .external_lex_state = 2}, + [145] = {.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 = 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 = 57, .external_lex_state = 2}, + [158] = {.lex_state = 5, .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 = 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 = 5, .external_lex_state = 2}, + [170] = {.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 = 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 = 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}, + [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 = 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}, + [190] = {.lex_state = 6, .external_lex_state = 2}, + [191] = {.lex_state = 6, .external_lex_state = 2}, + [192] = {.lex_state = 6, .external_lex_state = 2}, + [193] = {.lex_state = 6, .external_lex_state = 2}, [194] = {.lex_state = 6, .external_lex_state = 2}, [195] = {.lex_state = 6, .external_lex_state = 2}, [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 = 1, .external_lex_state = 2}, - [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}, - [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}, - [224] = {.lex_state = 1, .external_lex_state = 2}, - [225] = {.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 = 1, .external_lex_state = 2}, + [224] = {.lex_state = 4, .external_lex_state = 3}, + [225] = {.lex_state = 4, .external_lex_state = 3}, [226] = {.lex_state = 1, .external_lex_state = 2}, - [227] = {.lex_state = 1, .external_lex_state = 2}, - [228] = {.lex_state = 5, .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}, [230] = {.lex_state = 1, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, @@ -12290,42 +13589,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [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}, + [241] = {.lex_state = 5, .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}, + [245] = {.lex_state = 1, .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}, - [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}, + [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 = 1, .external_lex_state = 2}, + [253] = {.lex_state = 1, .external_lex_state = 2}, + [254] = {.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 = 11, .external_lex_state = 2}, + [263] = {.lex_state = 14, .external_lex_state = 3}, + [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}, [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}, [274] = {.lex_state = 58, .external_lex_state = 2}, @@ -12435,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}, @@ -12492,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}, @@ -12526,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}, @@ -12536,131 +13835,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}, - [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}, - [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}, + [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 = 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 = 5, .external_lex_state = 2}, + [496] = {.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 = 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 = 5, .external_lex_state = 2}, + [506] = {.lex_state = 12, .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}, + [511] = {.lex_state = 11, .external_lex_state = 2}, + [512] = {.lex_state = 11, .external_lex_state = 2}, + [513] = {.lex_state = 5, .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}, - [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.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 = 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}, + [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 = 12, .external_lex_state = 2}, + [528] = {.lex_state = 12, .external_lex_state = 2}, + [529] = {.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}, + [534] = {.lex_state = 12, .external_lex_state = 2}, + [535] = {.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 = 12, .external_lex_state = 2}, - [539] = {.lex_state = 12, .external_lex_state = 2}, + [538] = {.lex_state = 11, .external_lex_state = 2}, + [539] = {.lex_state = 11, .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}, + [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 = 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}, + [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 = 12, .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 = 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}, + [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 = 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}, + [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 = 4, .external_lex_state = 3}, + [566] = {.lex_state = 4, .external_lex_state = 3}, + [567] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 11, .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 = 11, .external_lex_state = 2}, + [576] = {.lex_state = 11, .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}, + [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 = 5, .external_lex_state = 2}, + [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 = 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 = 11, .external_lex_state = 2}, + [592] = {.lex_state = 12, .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 = 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}, + [598] = {.lex_state = 12, .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 = 5, .external_lex_state = 2}, - [603] = {.lex_state = 5, .external_lex_state = 2}, - [604] = {.lex_state = 5, .external_lex_state = 2}, - [605] = {.lex_state = 5, .external_lex_state = 2}, - [606] = {.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 = 5, .external_lex_state = 2}, [608] = {.lex_state = 5, .external_lex_state = 2}, [609] = {.lex_state = 5, .external_lex_state = 2}, @@ -12670,16 +13969,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [613] = {.lex_state = 5, .external_lex_state = 2}, [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 = 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}, + [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}, @@ -12687,439 +13986,439 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [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 = 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 = 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 = 4, .external_lex_state = 3}, + [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 = 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}, + [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 = 4, .external_lex_state = 3}, - [766] = {.lex_state = 3, .external_lex_state = 3}, + [766] = {.lex_state = 4, .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}, - [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}, + [768] = {.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 = 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 = 4, .external_lex_state = 3}, + [777] = {.lex_state = 14, .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}, - [781] = {.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 = 2, .external_lex_state = 3}, - [784] = {.lex_state = 2, .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}, + [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 = 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}, + [794] = {.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 = 4, .external_lex_state = 3}, - [800] = {.lex_state = 4, .external_lex_state = 3}, - [801] = {.lex_state = 4, .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 = 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}, + [803] = {.lex_state = 2, .external_lex_state = 3}, + [804] = {.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 = 2, .external_lex_state = 3}, + [811] = {.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 = 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}, - [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}, + [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 = 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 = 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 = 14, .external_lex_state = 3}, + [837] = {.lex_state = 14, .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 = 2, .external_lex_state = 3}, + [844] = {.lex_state = 14, .external_lex_state = 3}, + [845] = {.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 = 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}, - [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}, - [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}, - [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}, + [851] = {.lex_state = 14, .external_lex_state = 3}, + [852] = {.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 = 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 = 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}, + [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 = 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}, + [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 = 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}, + [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 = 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}, + [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 = 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 = 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}, + [953] = {.lex_state = 14, .external_lex_state = 3}, + [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 = 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 = 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 = 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 = 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}, + [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 = 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 = 14, .external_lex_state = 3}, + [994] = {.lex_state = 14, .external_lex_state = 3}, + [995] = {.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 = 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 = 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}, - [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}, + [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 = 2, .external_lex_state = 3}, + [1014] = {.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 = 2, .external_lex_state = 3}, - [1020] = {.lex_state = 4, .external_lex_state = 3}, + [1019] = {.lex_state = 14, .external_lex_state = 3}, + [1020] = {.lex_state = 14, .external_lex_state = 3}, [1021] = {.lex_state = 2, .external_lex_state = 3}, - [1022] = {.lex_state = 4, .external_lex_state = 3}, + [1022] = {.lex_state = 14, .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}, - [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}, + [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 = 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 = 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}, - [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}, @@ -13127,7 +14426,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 2, .external_lex_state = 3}, [1072] = {.lex_state = 2, .external_lex_state = 3}, - [1073] = {.lex_state = 7, .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}, [1076] = {.lex_state = 2, .external_lex_state = 3}, @@ -13135,11 +14434,11 @@ 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}, - [1082] = {.lex_state = 7, .external_lex_state = 3}, - [1083] = {.lex_state = 7, .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 = 2, .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}, @@ -13148,7 +14447,7 @@ 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}, @@ -13157,12 +14456,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1100] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [1105] = {.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 = 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}, @@ -13181,99 +14480,99 @@ 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}, + [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}, - [1135] = {.lex_state = 7, .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}, [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 7, .external_lex_state = 3}, + [1140] = {.lex_state = 2, .external_lex_state = 3}, [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 5, .external_lex_state = 2}, + [1142] = {.lex_state = 2, .external_lex_state = 3}, [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 7, .external_lex_state = 3}, - [1145] = {.lex_state = 2, .external_lex_state = 3}, + [1144] = {.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 = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 5, .external_lex_state = 2}, - [1149] = {.lex_state = 5, .external_lex_state = 2}, + [1147] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 2, .external_lex_state = 3}, - [1152] = {.lex_state = 2, .external_lex_state = 3}, - [1153] = {.lex_state = 2, .external_lex_state = 3}, + [1152] = {.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 = 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 = 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}, - [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}, + [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 = 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 = 5, .external_lex_state = 2}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, - [1183] = {.lex_state = 5, .external_lex_state = 2}, - [1184] = {.lex_state = 2, .external_lex_state = 3}, - [1185] = {.lex_state = 2, .external_lex_state = 3}, - [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}, - [1193] = {.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 = 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 = 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 = 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}, + [1195] = {.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 = 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 = 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}, - [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 7, .external_lex_state = 3}, + [1205] = {.lex_state = 4, .external_lex_state = 3}, + [1206] = {.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 = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 4, .external_lex_state = 3}, [1212] = {.lex_state = 2, .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}, + [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 = 7, .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}, [1222] = {.lex_state = 2, .external_lex_state = 3}, @@ -13302,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}, @@ -13344,7 +14643,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 +14669,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}, - [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}, - [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}, - [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}, - [1374] = {.lex_state = 18, .external_lex_state = 3}, - [1375] = {.lex_state = 7, .external_lex_state = 3}, - [1376] = {.lex_state = 9, .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}, + [1316] = {.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}, + [1321] = {.lex_state = 2, .external_lex_state = 3}, + [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 = 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}, + [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 = 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}, + [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 = 18, .external_lex_state = 3}, + [1345] = {.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}, + [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 = 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 = 18, .external_lex_state = 3}, + [1364] = {.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 = 4, .external_lex_state = 3}, + [1369] = {.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 = 18, .external_lex_state = 3}, + [1376] = {.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 = 4, .external_lex_state = 3}, + [1380] = {.lex_state = 4, .external_lex_state = 3}, + [1381] = {.lex_state = 4, .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}, + [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 = 18, .external_lex_state = 3}, + [1387] = {.lex_state = 4, .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}, + [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 = 7, .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}, + [1397] = {.lex_state = 8, .external_lex_state = 3}, [1398] = {.lex_state = 18, .external_lex_state = 3}, - [1399] = {.lex_state = 18, .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 = 7, .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}, @@ -13477,726 +14776,726 @@ 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 = 9, .external_lex_state = 3}, + [1425] = {.lex_state = 18, .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}, - [1450] = {.lex_state = 18, .external_lex_state = 3}, - [1451] = {.lex_state = 18, .external_lex_state = 3}, - [1452] = {.lex_state = 9, .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}, + [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 = 8, .external_lex_state = 3}, + [1436] = {.lex_state = 8, .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 = 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 = 4, .external_lex_state = 3}, + [1450] = {.lex_state = 4, .external_lex_state = 3}, + [1451] = {.lex_state = 4, .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 = 18, .external_lex_state = 3}, - [1458] = {.lex_state = 18, .external_lex_state = 3}, + [1457] = {.lex_state = 4, .external_lex_state = 3}, + [1458] = {.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 = 9, .external_lex_state = 3}, - [1462] = {.lex_state = 18, .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 = 9, .external_lex_state = 3}, + [1465] = {.lex_state = 8, .external_lex_state = 3}, [1466] = {.lex_state = 18, .external_lex_state = 3}, - [1467] = {.lex_state = 7, .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 = 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}, + [1475] = {.lex_state = 18, .external_lex_state = 3}, [1476] = {.lex_state = 18, .external_lex_state = 3}, [1477] = {.lex_state = 18, .external_lex_state = 3}, [1478] = {.lex_state = 18, .external_lex_state = 3}, - [1479] = {.lex_state = 14, .external_lex_state = 3}, - [1480] = {.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 = 18, .external_lex_state = 3}, - [1483] = {.lex_state = 14, .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 = 14, .external_lex_state = 3}, - [1486] = {.lex_state = 9, .external_lex_state = 3}, - [1487] = {.lex_state = 18, .external_lex_state = 3}, + [1485] = {.lex_state = 8, .external_lex_state = 3}, + [1486] = {.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 = 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}, + [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 = 8, .external_lex_state = 3}, + [1499] = {.lex_state = 18, .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}, - [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}, + [1501] = {.lex_state = 18, .external_lex_state = 3}, + [1502] = {.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 = 18, .external_lex_state = 3}, + [1509] = {.lex_state = 4, .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 = 8, .external_lex_state = 3}, + [1514] = {.lex_state = 4, .external_lex_state = 3}, + [1515] = {.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 = 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}, + [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}, + [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 = 4, .external_lex_state = 3}, + [1531] = {.lex_state = 4, .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 = 18, .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}, - [1546] = {.lex_state = 18, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .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}, + [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 = 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 = 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 = 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}, + [1553] = {.lex_state = 4, .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 = 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}, + [1559] = {.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 = 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}, + [1566] = {.lex_state = 4, .external_lex_state = 3}, + [1567] = {.lex_state = 4, .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 = 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}, + [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}, + [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 = 15, .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}, - [1594] = {.lex_state = 0, .external_lex_state = 3}, - [1595] = {.lex_state = 0, .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}, - [1604] = {.lex_state = 0, .external_lex_state = 3}, - [1605] = {.lex_state = 0, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .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 = 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 = 4, .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 = 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 = 7, .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}, + [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 = 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 = 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 = 4, .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}, + [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 = 0, .external_lex_state = 3}, + [1626] = {.lex_state = 0, .external_lex_state = 3}, + [1627] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, [1634] = {.lex_state = 0, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .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}, + [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 = 4, .external_lex_state = 3}, + [1641] = {.lex_state = 0, .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 = 13, .external_lex_state = 3}, + [1650] = {.lex_state = 9, .external_lex_state = 3}, + [1651] = {.lex_state = 4, .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 = 13, .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 = 4, .external_lex_state = 3}, + [1662] = {.lex_state = 4, .external_lex_state = 3}, + [1663] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 18, .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}, + [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 = 9, .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 = 4, .external_lex_state = 3}, + [1678] = {.lex_state = 18, .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}, - [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}, - [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}, + [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 = 4, .external_lex_state = 3}, + [1691] = {.lex_state = 4, .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 = 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 = 15, .external_lex_state = 3}, + [1709] = {.lex_state = 4, .external_lex_state = 3}, + [1710] = {.lex_state = 4, .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 = 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 = 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 = 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 = 18, .external_lex_state = 3}, + [1727] = {.lex_state = 4, .external_lex_state = 3}, + [1728] = {.lex_state = 4, .external_lex_state = 3}, [1729] = {.lex_state = 4, .external_lex_state = 3}, - [1730] = {.lex_state = 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}, - [1741] = {.lex_state = 18, .external_lex_state = 3}, + [1730] = {.lex_state = 0, .external_lex_state = 3}, + [1731] = {.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 = 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 = 4, .external_lex_state = 3}, + [1741] = {.lex_state = 4, .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}, + [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 = 7, .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}, + [1753] = {.lex_state = 4, .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}, - [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}, + [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 = 4, .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}, + [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 = 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 = 4, .external_lex_state = 3}, + [1776] = {.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}, - [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}, + [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 = 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 = 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 = 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}, + [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 = 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}, - [1806] = {.lex_state = 58, .external_lex_state = 3}, - [1807] = {.lex_state = 58, .external_lex_state = 3}, - [1808] = {.lex_state = 58, .external_lex_state = 3}, - [1809] = {.lex_state = 0, .external_lex_state = 3}, - [1810] = {.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 = 18, .external_lex_state = 3}, + [1805] = {.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 = 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 = 4, .external_lex_state = 4}, + [1812] = {.lex_state = 4, .external_lex_state = 3}, [1813] = {.lex_state = 58, .external_lex_state = 3}, - [1814] = {.lex_state = 7, .external_lex_state = 3}, + [1814] = {.lex_state = 58, .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}, - [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}, + [1816] = {.lex_state = 58, .external_lex_state = 3}, + [1817] = {.lex_state = 4, .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 = 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}, + [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 = 7, .external_lex_state = 3}, - [1832] = {.lex_state = 4, .external_lex_state = 4}, - [1833] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, + [1835] = {.lex_state = 58, .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}, + [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 = 0, .external_lex_state = 3}, + [1841] = {.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 = 0, .external_lex_state = 3}, - [1845] = {.lex_state = 7, .external_lex_state = 3}, - [1846] = {.lex_state = 0, .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 = 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}, + [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 = 18, .external_lex_state = 3}, + [1853] = {.lex_state = 0, .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}, - [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}, - [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 58, .external_lex_state = 3}, - [1878] = {.lex_state = 4, .external_lex_state = 4}, - [1879] = {.lex_state = 58, .external_lex_state = 3}, - [1880] = {.lex_state = 4, .external_lex_state = 4}, - [1881] = {.lex_state = 0, .external_lex_state = 3}, - [1882] = {.lex_state = 58, .external_lex_state = 3}, - [1883] = {.lex_state = 10, .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 = 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 = 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 = 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 = 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}, - [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}, + [1886] = {.lex_state = 4, .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 = 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 = 58, .external_lex_state = 3}, - [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 0, .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}, + [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 = 0, .external_lex_state = 3}, + [1901] = {.lex_state = 0, .external_lex_state = 3}, [1902] = {.lex_state = 3, .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}, + [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}, + [1907] = {.lex_state = 4, .external_lex_state = 3}, [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 0, .external_lex_state = 3}, - [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 3, .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 = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 7, .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 = 3, .external_lex_state = 3}, - [1918] = {.lex_state = 3, .external_lex_state = 3}, + [1917] = {.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 = 7, .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}, - [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 7, .external_lex_state = 3}, - [1928] = {.lex_state = 58, .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}, + [1921] = {.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 = 58, .external_lex_state = 3}, + [1925] = {.lex_state = 58, .external_lex_state = 3}, + [1926] = {.lex_state = 58, .external_lex_state = 3}, + [1927] = {.lex_state = 58, .external_lex_state = 3}, + [1928] = {.lex_state = 4, .external_lex_state = 3}, + [1929] = {.lex_state = 4, .external_lex_state = 3}, + [1930] = {.lex_state = 0, .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 = 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 = 7, .external_lex_state = 3}, - [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.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 = 3, .external_lex_state = 3}, - [1948] = {.lex_state = 0, .external_lex_state = 3}, - [1949] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 7, .external_lex_state = 3}, - [1953] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [1956] = {.lex_state = 58, .external_lex_state = 3}, - [1957] = {.lex_state = 0, .external_lex_state = 3}, + [1956] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [1961] = {.lex_state = 10, .external_lex_state = 3}, - [1962] = {.lex_state = 58, .external_lex_state = 3}, + [1960] = {.lex_state = 3, .external_lex_state = 3}, + [1961] = {.lex_state = 0, .external_lex_state = 3}, + [1962] = {.lex_state = 0, .external_lex_state = 3}, [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 58, .external_lex_state = 3}, + [1964] = {.lex_state = 0, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 7, .external_lex_state = 3}, - [1967] = {.lex_state = 0, .external_lex_state = 3}, + [1966] = {.lex_state = 0, .external_lex_state = 3}, + [1967] = {.lex_state = 4, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 0, .external_lex_state = 3}, + [1969] = {.lex_state = 3, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.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 = 10, .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}, - [1980] = {.lex_state = 0, .external_lex_state = 3}, - [1981] = {.lex_state = 58, .external_lex_state = 3}, - [1982] = {.lex_state = 58, .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 = 0, .external_lex_state = 3}, [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 58, .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 = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 3, .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 = 58, .external_lex_state = 3}, - [1992] = {.lex_state = 4, .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 = 3, .external_lex_state = 3}, - [1995] = {.lex_state = 0, .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 = 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 = 58, .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 = 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}, + [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 = 3, .external_lex_state = 3}, - [2009] = {.lex_state = 0, .external_lex_state = 3}, - [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 7, .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}, - [2019] = {.lex_state = 0, .external_lex_state = 3}, - [2020] = {.lex_state = 0, .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 = 4, .external_lex_state = 3}, + [2018] = {.lex_state = 58, .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 = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 3, .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}, + [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 = 7, .external_lex_state = 3}, + [2029] = {.lex_state = 58, .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}, - [2033] = {.lex_state = 3, .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}, + [2037] = {.lex_state = 0, .external_lex_state = 3}, [2038] = {.lex_state = 58, .external_lex_state = 3}, - [2039] = {.lex_state = 0, .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 = 58, .external_lex_state = 3}, - [2044] = {.lex_state = 58, .external_lex_state = 3}, - [2045] = {.lex_state = 58, .external_lex_state = 3}, - [2046] = {.lex_state = 0, .external_lex_state = 3}, + [2043] = {.lex_state = 0, .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 = 58, .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 = 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}, - [2056] = {.lex_state = 58, .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 = 7, .external_lex_state = 3}, - [2063] = {.lex_state = 58, .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 = 7, .external_lex_state = 3}, - [2068] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [2071] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, + [2074] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, + [2078] = {.lex_state = 4, .external_lex_state = 3}, [2079] = {.lex_state = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 58, .external_lex_state = 3}, + [2080] = {.lex_state = 0, .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}, + [2082] = {.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 = 58, .external_lex_state = 3}, + [2085] = {.lex_state = 0, .external_lex_state = 3}, [2086] = {.lex_state = 58, .external_lex_state = 3}, - [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.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 = 58, .external_lex_state = 3}, - [2090] = {.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 = 7, .external_lex_state = 3}, - [2094] = {.lex_state = 58, .external_lex_state = 3}, - [2095] = {.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 = 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 = 58, .external_lex_state = 3}, - [2102] = {.lex_state = 58, .external_lex_state = 3}, - [2103] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 7, .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}, + [2105] = {.lex_state = 9, .external_lex_state = 3}, + [2106] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 58, .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 = 0, .external_lex_state = 3}, - [2116] = {.lex_state = 0, .external_lex_state = 3}, - [2117] = {.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 = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 58, .external_lex_state = 3}, + [2119] = {.lex_state = 0, .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}, + [2121] = {.lex_state = 4, .external_lex_state = 3}, + [2122] = {.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 = 0, .external_lex_state = 3}, - [2126] = {.lex_state = 0, .external_lex_state = 3}, - [2127] = {.lex_state = 3, .external_lex_state = 3}, + [2125] = {.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 = 0, .external_lex_state = 3}, + [2129] = {.lex_state = 4, .external_lex_state = 3}, [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 18, .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}, - [2134] = {.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 = 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}, + [2136] = {.lex_state = 58, .external_lex_state = 3}, + [2137] = {.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 = 0, .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 = 0, .external_lex_state = 3}, @@ -14204,423 +15503,438 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2150] = {.lex_state = 0, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.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}, + [2156] = {.lex_state = 58, .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 = 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 = 7, .external_lex_state = 3}, + [2164] = {.lex_state = 0, .external_lex_state = 3}, [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.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}, - [2171] = {.lex_state = 58, .external_lex_state = 3}, - [2172] = {.lex_state = 0, .external_lex_state = 3}, - [2173] = {.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 = 4, .external_lex_state = 3}, + [2173] = {.lex_state = 4, .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}, + [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 = 7, .external_lex_state = 3}, - [2179] = {.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 = 7, .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}, - [2185] = {.lex_state = 58, .external_lex_state = 3}, - [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.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 = 7, .external_lex_state = 3}, - [2191] = {.lex_state = 58, .external_lex_state = 3}, - [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 7, .external_lex_state = 3}, + [2190] = {.lex_state = 0, .external_lex_state = 3}, + [2191] = {.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 = 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 = 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}, + [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 = 58, .external_lex_state = 3}, - [2206] = {.lex_state = 0, .external_lex_state = 3}, - [2207] = {.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 = 58, .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}, - [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.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 = 7, .external_lex_state = 3}, - [2217] = {.lex_state = 0, .external_lex_state = 3}, - [2218] = {.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 = 18, .external_lex_state = 3}, + [2221] = {.lex_state = 0, .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}, + [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}, + [2226] = {.lex_state = 58, .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 = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 58, .external_lex_state = 3}, + [2231] = {.lex_state = 0, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 58, .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}, + [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 = 0, .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 = 7, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 3}, - [2247] = {.lex_state = 58, .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 = 0, .external_lex_state = 3}, - [2251] = {.lex_state = 0, .external_lex_state = 3}, - [2252] = {.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 = 58, .external_lex_state = 3}, - [2256] = {.lex_state = 0, .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}, - [2261] = {.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}, + [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 = 58, .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 = 58, .external_lex_state = 3}, + [2273] = {.lex_state = 0, .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}, + [2275] = {.lex_state = 0, .external_lex_state = 3}, + [2276] = {.lex_state = 0, .external_lex_state = 3}, [2277] = {.lex_state = 0, .external_lex_state = 3}, - [2278] = {.lex_state = 7, .external_lex_state = 3}, + [2278] = {.lex_state = 58, .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}, + [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 = 18, .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}, + [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 = 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 = 18, .external_lex_state = 3}, - [2298] = {.lex_state = 18, .external_lex_state = 3}, + [2297] = {.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}, + [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 = 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}, + [2306] = {.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 = 58, .external_lex_state = 3}, - [2311] = {.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 = 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 = 0, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 58, .external_lex_state = 3}, + [2318] = {.lex_state = 4, .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}, + [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 = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2323] = {.lex_state = 4, .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}, + [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}, - [2331] = {.lex_state = 0, .external_lex_state = 3}, - [2332] = {.lex_state = 7, .external_lex_state = 3}, - [2333] = {.lex_state = 18, .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 = 0, .external_lex_state = 3}, [2335] = {.lex_state = 0, .external_lex_state = 3}, [2336] = {.lex_state = 0, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .external_lex_state = 3}, + [2337] = {.lex_state = 0, .external_lex_state = 3}, [2338] = {.lex_state = 0, .external_lex_state = 3}, - [2339] = {.lex_state = 7, .external_lex_state = 3}, + [2339] = {.lex_state = 0, .external_lex_state = 3}, [2340] = {.lex_state = 0, .external_lex_state = 3}, - [2341] = {.lex_state = 7, .external_lex_state = 3}, + [2341] = {.lex_state = 58, .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}, + [2343] = {.lex_state = 0, .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 = 4, .external_lex_state = 3}, + [2352] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, + [2359] = {.lex_state = 4, .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}, - [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}, - [2371] = {.lex_state = 0, .external_lex_state = 3}, + [2361] = {.lex_state = 0, .external_lex_state = 3}, + [2362] = {.lex_state = 4, .external_lex_state = 3}, + [2363] = {.lex_state = 4, .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 = 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}, + [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 = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 9, .external_lex_state = 3}, + [2381] = {.lex_state = 4, .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}, + [2383] = {.lex_state = 4, .external_lex_state = 3}, + [2384] = {.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 = 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 = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 7, .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}, + [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 = 4, .external_lex_state = 3}, + [2398] = {.lex_state = 4, .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}, + [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 = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 7, .external_lex_state = 3}, - [2407] = {.lex_state = 7, .external_lex_state = 3}, + [2406] = {.lex_state = 0, .external_lex_state = 3}, + [2407] = {.lex_state = 0, .external_lex_state = 3}, [2408] = {.lex_state = 0, .external_lex_state = 3}, - [2409] = {.lex_state = 58, .external_lex_state = 3}, + [2409] = {.lex_state = 0, .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}, - [2415] = {.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}, - [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}, + [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 = 4, .external_lex_state = 3}, + [2422] = {.lex_state = 58, .external_lex_state = 3}, [2423] = {.lex_state = 0, .external_lex_state = 3}, - [2424] = {.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 = 7, .external_lex_state = 3}, + [2426] = {.lex_state = 9, .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}, + [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}, - [2438] = {.lex_state = 0, .external_lex_state = 3}, - [2439] = {.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 = 4, .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}, - [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}, + [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 = 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 = 0, .external_lex_state = 3}, - [2449] = {.lex_state = 0, .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}, + [2449] = {.lex_state = 4, .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 = 0, .external_lex_state = 3}, - [2455] = {.lex_state = 7, .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}, + [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 = 0, .external_lex_state = 3}, + [2459] = {.lex_state = 4, .external_lex_state = 3}, + [2460] = {.lex_state = 4, .external_lex_state = 3}, + [2461] = {.lex_state = 4, .external_lex_state = 3}, + [2462] = {.lex_state = 0, .external_lex_state = 3}, + [2463] = {.lex_state = 0, .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}, + [2466] = {.lex_state = 0, .external_lex_state = 3}, + [2467] = {.lex_state = 0, .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}, - [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}, + [2469] = {.lex_state = 4, .external_lex_state = 3}, + [2470] = {.lex_state = 4, .external_lex_state = 3}, + [2471] = {.lex_state = 9, .external_lex_state = 3}, + [2472] = {.lex_state = 0, .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 = 10, .external_lex_state = 3}, + [2477] = {.lex_state = 4, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, [2479] = {.lex_state = 0, .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}, - [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}, + [2481] = {.lex_state = 0, .external_lex_state = 3}, + [2482] = {.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 = 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 = 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 = 0, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, [2499] = {.lex_state = 0, .external_lex_state = 3}, - [2500] = {.lex_state = 7, .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}, + [2500] = {.lex_state = 0, .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 = 4, .external_lex_state = 3}, [2505] = {.lex_state = 0, .external_lex_state = 3}, - [2506] = {.lex_state = 0, .external_lex_state = 3}, - [2507] = {.lex_state = 10, .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 = 10, .external_lex_state = 3}, - [2510] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, + [2512] = {.lex_state = 4, .external_lex_state = 3}, [2513] = {.lex_state = 0, .external_lex_state = 3}, - [2514] = {.lex_state = 10, .external_lex_state = 3}, - [2515] = {.lex_state = 0, .external_lex_state = 3}, + [2514] = {.lex_state = 0, .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 = 10, .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 = 0, .external_lex_state = 3}, - [2523] = {.lex_state = 10, .external_lex_state = 3}, - [2524] = {.lex_state = 0, .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 = 10, .external_lex_state = 3}, - [2528] = {.lex_state = 10, .external_lex_state = 3}, - [2529] = {.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 = 9, .external_lex_state = 3}, [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 10, .external_lex_state = 3}, - [2532] = {.lex_state = 0, .external_lex_state = 3}, - [2533] = {.lex_state = 7, .external_lex_state = 3}, - [2534] = {.lex_state = 0, .external_lex_state = 3}, + [2531] = {.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 = 4, .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}, - [2538] = {.lex_state = 0, .external_lex_state = 3}, - [2539] = {.lex_state = 10, .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}, - [2543] = {.lex_state = 0, .external_lex_state = 3}, + [2537] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, + [2546] = {.lex_state = 9, .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}, + [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}, - [2552] = {.lex_state = 0, .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 = 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}, - [2558] = {.lex_state = 0, .external_lex_state = 3}, - [2559] = {.lex_state = 7, .external_lex_state = 3}, - [2560] = {.lex_state = 7, .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 = 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 = 0, .external_lex_state = 3}, - [2563] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, + [2566] = {.lex_state = 4, .external_lex_state = 3}, + [2567] = {.lex_state = 4, .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 = 0, .external_lex_state = 3}, + [2574] = {.lex_state = 0, .external_lex_state = 3}, + [2575] = {.lex_state = 4, .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}, }; enum { @@ -14741,6 +16055,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 +16161,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_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_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(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(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_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), @@ -14953,79 +16311,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_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__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(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(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_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), @@ -15102,79 +16460,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_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(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__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(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(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_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), @@ -15251,85 +16609,234 @@ 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_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__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(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(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(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_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(258), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15399,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(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_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(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__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(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(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_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), @@ -15698,79 +17056,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [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(2481), - [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_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__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(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(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(3), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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), @@ -15847,79 +17205,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(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(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__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(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(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_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), @@ -15996,79 +17354,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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__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(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(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_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), @@ -16145,85 +17503,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2481), - [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_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__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(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(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(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(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(11), - [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(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), @@ -16311,62 +17669,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(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(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(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_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(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(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_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(1575), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16443,79 +17801,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [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(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__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(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(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_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), @@ -16592,79 +17950,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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__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(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(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(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(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_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(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(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(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(4), + [aux_sym_function_modifiers_repeat1] = STATE(1593), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16740,80 +18247,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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_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), + [15] = { + [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(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(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_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), @@ -16889,80 +18396,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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_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), + [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(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(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(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_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), @@ -17038,202 +18545,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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_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(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), - [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), - [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_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(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_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), @@ -17330,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(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_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(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(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), @@ -17471,55 +18829,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_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(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_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(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 +18970,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_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(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_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(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(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), @@ -17688,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(318), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17703,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(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(322), + [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(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(318), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17753,52 +19111,52 @@ 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_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(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_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(320), [anon_sym_LPAREN] = ACTIONS(320), @@ -17894,52 +19252,52 @@ 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_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(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_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(324), [anon_sym_LPAREN] = ACTIONS(13), @@ -18035,52 +19393,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_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(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_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), @@ -18176,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(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_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(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_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(320), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(316), [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(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), @@ -18252,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(322), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -18267,282 +19625,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(308), - [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(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(322), - [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), - }, - [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_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(288), - [anon_sym_QMARK] = ACTIONS(282), - [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_as] = ACTIONS(288), - [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(350), - [anon_sym_EQ] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(288), - [anon_sym_GT] = ACTIONS(288), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(288), - [anon_sym_DOT_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(288), - [anon_sym_DOT_DOT_EQ] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_PIPE] = ACTIONS(288), - [anon_sym_CARET] = ACTIONS(288), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(288), - [anon_sym_GT_GT] = ACTIONS(288), - [anon_sym_SLASH] = ACTIONS(288), - [anon_sym_PERCENT] = ACTIONS(288), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_LT_LT_EQ] = ACTIONS(282), - [anon_sym_GT_GT_EQ] = ACTIONS(282), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(288), - [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), - }, - [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_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_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_as] = ACTIONS(318), - [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(350), [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(352), + [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(318), [anon_sym_DOT_DOT_DOT] = ACTIONS(316), [anon_sym_DOT_DOT] = ACTIONS(318), @@ -18570,8 +19657,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), @@ -18579,68 +19666,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [25] = { + [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(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(282), + [anon_sym_LBRACE] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(282), + [anon_sym_COLON] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(288), + [anon_sym_STAR] = ACTIONS(288), + [anon_sym_QMARK] = ACTIONS(282), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18659,7 +19747,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(288), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18674,40 +19762,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(288), + [anon_sym_LT] = ACTIONS(288), + [anon_sym_GT] = ACTIONS(288), [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(288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(288), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_PIPE] = ACTIONS(288), + [anon_sym_CARET] = ACTIONS(288), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(288), + [anon_sym_GT_GT] = ACTIONS(288), + [anon_sym_SLASH] = ACTIONS(288), + [anon_sym_PERCENT] = ACTIONS(288), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_LT_LT_EQ] = ACTIONS(282), + [anon_sym_GT_GT_EQ] = ACTIONS(282), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(288), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18722,53 +19810,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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), + [26] = { + [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(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(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), @@ -18857,188 +19945,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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_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_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_as] = ACTIONS(338), - [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(350), - [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(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(338), - [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), - }, - [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), + [27] = { + [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), @@ -19127,53 +20080,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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), + [28] = { + [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(320), @@ -19262,53 +20215,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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), + [29] = { + [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(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), + [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_as] = ACTIONS(318), + [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(350), + [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(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(318), + [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), + }, + [30] = { + [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(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), + [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_as] = ACTIONS(318), + [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(350), + [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(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(318), + [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), + }, + [31] = { + [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(320), [anon_sym_LBRACE] = ACTIONS(320), @@ -19397,60 +20620,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [32] = { + [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(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), + [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_as] = ACTIONS(338), + [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(350), + [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(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(338), + [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), + }, [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_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(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_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(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_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), @@ -19509,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(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_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(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_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), @@ -19620,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(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_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(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_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), @@ -19731,54 +21089,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_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_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(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(40), + [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(382), @@ -19841,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(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_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(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_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), @@ -19951,54 +21309,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_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(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_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(386), @@ -20061,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(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_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(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_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), @@ -20171,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(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_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(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_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), @@ -20280,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(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_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(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_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), @@ -20389,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(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_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(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(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_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), @@ -20498,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(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_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(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_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), @@ -20607,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(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_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(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_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), @@ -20715,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(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_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(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_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), @@ -20822,273 +22288,57 @@ 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), - [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_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_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(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_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(498), + [anon_sym_RPAREN] = ACTIONS(398), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21146,57 +22396,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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), + [48] = { + [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(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_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(498), + [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21254,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_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_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(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(2476), - [sym_generic_function] = STATE(1019), - [sym_generic_type_with_turbofish] = STATE(2072), - [sym__expression_except_range] = STATE(1019), - [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_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), @@ -21470,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(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_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), @@ -21546,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), @@ -21554,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(510), - [anon_sym_DASH] = ACTIONS(504), + [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), @@ -21577,52 +22935,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__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_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(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), @@ -21653,6 +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(516), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -21663,8 +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), - [sym_mutable_specifier] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -21684,57 +23042,271 @@ 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), + [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(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), + [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(522), + [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), + }, + [56] = { + [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(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_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(518), + [anon_sym_RBRACK] = ACTIONS(524), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -21790,53 +23362,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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), + [57] = { + [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), @@ -21867,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(520), + [anon_sym_let] = ACTIONS(526), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -21897,267 +23469,267 @@ 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), - [sym_identifier] = ACTIONS(340), + [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_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(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(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(522), [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), }, - [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), - [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), + [59] = { + [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(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_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(532), + [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), }, - [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), + [60] = { + [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), @@ -22188,7 +23760,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(528), + [anon_sym_let] = ACTIONS(534), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22218,53 +23790,374 @@ 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), + [61] = { + [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(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), + [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), + [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), + }, + [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(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(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_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(532), + [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), + }, + [64] = { + [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), @@ -22295,7 +24188,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(542), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22325,53 +24218,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), + [65] = { + [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), @@ -22402,7 +24295,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(532), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22413,7 +24305,8 @@ 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(510), + [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), @@ -22432,53 +24325,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), + [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), @@ -22509,6 +24402,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_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22516,12 +24410,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_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_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22539,53 +24432,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), + [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), @@ -22616,7 +24509,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(536), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -22624,11 +24516,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(530), [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_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22646,57 +24539,165 @@ 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), + [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(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(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_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(552), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22730,12 +24731,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,267 +24753,160 @@ 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), - [sym_identifier] = ACTIONS(280), + [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), [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(554), [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(542), - [anon_sym_DOT_DOT] = ACTIONS(540), - [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), }, - [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), + [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), @@ -23044,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(548), + [anon_sym_let] = ACTIONS(556), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -23074,160 +24967,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [67] = { - [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), + [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), }, - [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), + [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), @@ -23265,12 +25157,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(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_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23288,58 +25179,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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), + [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(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_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(554), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23395,58 +25285,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), + [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), + [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), + }, + [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(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_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), @@ -23502,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), }, - [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), + [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(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_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), @@ -23586,12 +25581,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,159 +25603,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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(562), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(564), - [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(562), - [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(562), - [anon_sym_extern] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(562), - [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_yield] = ACTIONS(560), - [anon_sym_move] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(562), - [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(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), + [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(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_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), @@ -23821,53 +25709,53 @@ 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(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(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), @@ -23908,7 +25796,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(516), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -23927,53 +25815,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), + [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(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_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), @@ -24033,69 +25921,175 @@ 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), - [sym_identifier] = ACTIONS(340), + [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(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_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), + }, + [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), @@ -24120,7 +26114,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(516), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24139,53 +26133,477 @@ 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), + [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), + [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] = { + [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), + }, + [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(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(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_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), @@ -24226,7 +26644,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 +26663,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), + [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(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_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), @@ -24332,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), @@ -24351,53 +26875,53 @@ 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), + [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), @@ -24457,265 +26981,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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(516), - [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), }, - [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), + [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(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_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), }, - [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), + [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), @@ -24756,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(516), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24775,53 +27299,53 @@ 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(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), + [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(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_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), @@ -24881,159 +27405,159 @@ 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), + [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(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(516), - [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), }, - [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), + [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(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), @@ -25074,7 +27598,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(516), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -25093,53 +27617,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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_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), @@ -25199,159 +27723,159 @@ 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), - [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), + [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(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(516), - [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), }, - [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), + [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(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_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), @@ -25411,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), }, - [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), + [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(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_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), @@ -25517,53 +28359,159 @@ 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), + [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), + }, + [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(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_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), @@ -25623,159 +28571,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), + [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), @@ -25816,7 +28658,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(510), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -25835,56 +28677,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [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), + [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(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_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), @@ -25905,24 +28747,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(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), [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), @@ -25941,83 +28783,295 @@ 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(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_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), + [108] = { + [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), + }, + [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(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(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), + }, + [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(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), @@ -26047,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), }, - [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), + [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(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(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_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), }, - [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), + [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(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_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), @@ -26259,371 +29313,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), + [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(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(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), - }, - [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] = { - [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_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), }, - [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), + [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), @@ -26664,7 +29506,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(510), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -26683,159 +29525,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), + [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(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), }, - [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), + [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(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_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), @@ -26895,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), }, - [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), + [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(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_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), @@ -27001,53 +29949,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), + [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(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_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), @@ -27088,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), @@ -27107,371 +30055,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), + [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), [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), }, - [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_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), - }, - [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_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), + [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(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(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), }, - [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), + [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(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_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), @@ -27531,583 +30373,265 @@ 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_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), + [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(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), }, - [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), + [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), [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), }, - [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_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), - }, - [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), + [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), @@ -28148,7 +30672,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(510), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -28167,159 +30691,53 @@ 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), - [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), - }, - [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), + [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(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_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), @@ -28360,7 +30778,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), @@ -28379,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), }, - [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), + [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(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_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), @@ -28466,7 +30884,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,165 +30903,377 @@ 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), - [sym_identifier] = ACTIONS(280), + [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(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(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), }, - [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), - [sym_identifier] = ACTIONS(280), + [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(19), - [anon_sym_u8] = 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(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(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), @@ -28678,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(540), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28697,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), }, - [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), + [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(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_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), @@ -28784,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(540), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28803,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), }, - [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), + [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(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_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), @@ -28890,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), @@ -28909,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), }, - [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), + [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(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_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), @@ -28996,7 +31626,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 +31645,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), + [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(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_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), @@ -29102,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), @@ -29121,159 +31751,53 @@ 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), - [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), - }, - [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), + [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(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_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), @@ -29314,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), @@ -29333,53 +31857,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(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), + [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(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_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), @@ -29439,53 +31963,53 @@ 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), + [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(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_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), @@ -29545,371 +32069,159 @@ 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(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), + [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(510), - [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] = { - [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] = { - [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), - }, - [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), + [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(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_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), @@ -29969,56 +32281,56 @@ 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), + [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(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_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(284), + [anon_sym_LBRACE] = ACTIONS(602), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30039,19 +32351,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), @@ -30075,53 +32387,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), + [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(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_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), @@ -30162,7 +32474,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(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30181,56 +32493,56 @@ 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), + [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(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_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(284), + [anon_sym_LBRACE] = ACTIONS(602), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30251,19 +32563,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), @@ -30287,53 +32599,159 @@ 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), + [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), + [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_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_extern] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_COLON_COLON] = ACTIONS(636), + [anon_sym_AMP] = ACTIONS(638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [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_yield] = ACTIONS(638), + [anon_sym_move] = ACTIONS(638), + [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), + }, + [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(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_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), @@ -30374,7 +32792,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,265 +32811,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(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), - [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), - }, - [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), + [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(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(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), }, - [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), + [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(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_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), @@ -30711,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), }, - [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), + [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(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_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), @@ -30798,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(540), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30817,53 +33129,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(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), + [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(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_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), @@ -30904,7 +33322,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), @@ -30923,160 +33341,160 @@ 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(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), - [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_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_EQ] = ACTIONS(638), - [anon_sym_extern] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [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_yield] = ACTIONS(638), - [anon_sym_move] = ACTIONS(638), - [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), + [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(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), - }, - [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), + [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), [anon_sym_LBRACK] = ACTIONS(17), @@ -31116,7 +33534,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(510), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -31135,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), }, - [143] = { - [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(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_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(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), }, - [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), + [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(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_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), @@ -31347,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), }, - [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), + [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(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_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), @@ -31434,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(540), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31453,53 +33871,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(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), + [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), + [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), + }, + [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(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_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), @@ -31540,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(540), + [anon_sym_DOT_DOT] = ACTIONS(532), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31559,53 +34189,159 @@ 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), + [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(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), + }, + [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(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_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), @@ -31665,53 +34401,159 @@ 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), + [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(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), + }, + [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), @@ -31752,7 +34594,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(510), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -31771,371 +34613,265 @@ 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), - [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] = { - [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), + [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(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(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), }, - [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), + [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(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), }, - [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), + [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(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_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), @@ -32176,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), @@ -32195,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), }, - [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), + [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(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_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), @@ -32301,159 +35037,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [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), + [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), + [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(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(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), }, - [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), + [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), @@ -32513,56 +35249,56 @@ 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), + [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(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_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(586), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32583,19 +35319,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), @@ -32619,399 +35355,81 @@ 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(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), - [sym_identifier] = ACTIONS(340), + [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(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_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), - }, - [158] = { - [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), - }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(656), - [sym_identifier] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_macro_rules_BANG] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(564), - [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_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(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_EQ] = ACTIONS(562), - [anon_sym_extern] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [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_yield] = ACTIONS(658), - [anon_sym_move] = ACTIONS(658), - [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_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), - }, - [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), - [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_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), @@ -33043,325 +35461,7 @@ 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), - [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_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), - }, - [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] = { + [171] = { [ts_builtin_sym_end] = ACTIONS(664), [sym_identifier] = ACTIONS(666), [anon_sym_SEMI] = ACTIONS(664), @@ -33467,53 +35567,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(664), [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), + [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), @@ -33554,7 +35654,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(516), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -33573,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), }, - [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), + [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), @@ -33679,7 +35779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [167] = { + [174] = { [ts_builtin_sym_end] = ACTIONS(668), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(668), @@ -33785,371 +35885,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(672), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_macro_rules_BANG] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_LBRACE] = 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_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = 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_while] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_extern] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [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_yield] = ACTIONS(674), - [anon_sym_move] = ACTIONS(674), - [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), - }, - [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), + [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(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_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), @@ -34209,53 +35991,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(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), + [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), @@ -34315,53 +36097,53 @@ 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(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), + [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), @@ -34402,7 +36184,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(516), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -34421,53 +36203,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [178] = { + [ts_builtin_sym_end] = ACTIONS(672), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_macro_rules_BANG] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_LBRACE] = 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_SQUOTE] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_async] = 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_while] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_extern] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [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_yield] = ACTIONS(674), + [anon_sym_move] = ACTIONS(674), + [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), + }, + [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), @@ -34527,53 +36415,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(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), + [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), @@ -34614,7 +36502,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(516), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -34633,159 +36521,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [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), - }, - [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), + [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), @@ -34845,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), }, - [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), + [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), @@ -34951,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), }, - [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), + [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(516), - [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), }, - [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), + [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), @@ -35163,159 +36945,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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(516), - [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), }, - [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), + [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(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_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), @@ -35356,7 +37244,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), @@ -35375,155 +37263,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [sym_identifier] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_macro_rules_BANG] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [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_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_EQ] = ACTIONS(562), - [anon_sym_extern] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [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_yield] = ACTIONS(658), - [anon_sym_move] = ACTIONS(658), - [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), + [188] = { + [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(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(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), }, - [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__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), + [189] = { + [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(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(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), @@ -35583,50 +37471,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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__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), + [190] = { + [sym_attribute_item] = STATE(202), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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), @@ -35686,53 +37574,156 @@ 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), - [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__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), + [191] = { + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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), + [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), + }, + [192] = { + [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(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(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(772), + [anon_sym_RPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -35763,7 +37754,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 +37780,53 @@ 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), - [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__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), + [193] = { + [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(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(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(776), + [anon_sym_RPAREN] = ACTIONS(782), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -35866,7 +37857,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 +37883,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), - [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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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(780), + [anon_sym_RPAREN] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -35969,12 +37960,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 +37985,53 @@ 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), - [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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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_RPAREN] = ACTIONS(790), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36097,53 +38087,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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__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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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_RPAREN] = ACTIONS(792), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36199,53 +38189,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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__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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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_RPAREN] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36301,53 +38291,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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__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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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_RPAREN] = ACTIONS(796), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36403,53 +38393,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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__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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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_RPAREN] = ACTIONS(798), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36505,53 +38495,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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__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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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(752), @@ -36607,50 +38596,49 @@ 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(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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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), @@ -36681,13 +38669,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__] = ACTIONS(800), [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -36708,148 +38695,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [sym_function_modifiers] = STATE(2411), + [202] = { + [sym_function_modifiers] = STATE(2577), [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__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(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_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(800), - [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), - }, - [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__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_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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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), @@ -36906,49 +38794,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [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__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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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), @@ -37005,46 +38893,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [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__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), + [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), @@ -37102,46 +38990,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__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), + [205] = { + [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(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(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), @@ -37199,46 +39087,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [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__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), + [206] = { + [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(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(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), @@ -37296,46 +39184,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [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__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), + [207] = { + [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(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(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), @@ -37393,7 +39281,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), @@ -37489,180 +39377,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(850), [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__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), + [209] = { + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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_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(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(854), - [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(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), - }, - [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__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_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_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [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_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), + [sym_mutable_specifier] = ACTIONS(860), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -37671,93 +39464,93 @@ 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), }, - [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), - [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), + [210] = { + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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_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(836), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [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_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(856), + [sym_mutable_specifier] = ACTIONS(862), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -37766,93 +39559,93 @@ 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_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), }, - [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), - [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), + [211] = { + [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(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(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(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_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(860), + [anon_sym_default] = ACTIONS(814), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(862), + [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_COLON_COLON] = ACTIONS(820), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(864), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(866), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -37861,54 +39654,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(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), }, - [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), - [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), + [212] = { + [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), @@ -37956,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), @@ -37964,85 +39757,85 @@ 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), + [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(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(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(692), + [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(860), + [anon_sym_default] = ACTIONS(814), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(862), + [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_COLON_COLON] = ACTIONS(820), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(864), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), + [sym_mutable_specifier] = ACTIONS(866), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -38051,93 +39844,93 @@ 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_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), }, - [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), + [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(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(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), [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_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_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(862), + [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(760), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(864), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), + [sym_mutable_specifier] = ACTIONS(868), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -38146,54 +39939,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(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), }, - [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__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), + [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(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(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), + [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_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(870), + [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(872), + [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), + }, + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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), @@ -38215,14 +40103,14 @@ 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(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(856), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), @@ -38230,9 +40118,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(822), - [anon_sym_AMP] = ACTIONS(864), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(872), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -38249,83 +40137,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [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__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), + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2511), + [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(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(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(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(814), + [anon_sym_default] = ACTIONS(854), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [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(820), + [anon_sym_COLON_COLON] = ACTIONS(760), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(858), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), @@ -38336,93 +40224,93 @@ 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(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), }, - [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__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), + [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(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(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(814), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [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(820), + [anon_sym_COLON_COLON] = ACTIONS(718), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(876), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -38431,37 +40319,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(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), }, - [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__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), + [219] = { + [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), @@ -38525,536 +40413,1270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(880), [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), + [220] = { + [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), + [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), + [221] = { + [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), + [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), }, - [217] = { - [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), + [222] = { + [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), + [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_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), + [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), }, - [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), + [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), + [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_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), + [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), + [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), }, - [221] = { - [sym_identifier] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), + [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(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), + [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), + }, + [228] = { + [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), + [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), + }, + [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), + }, + [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(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), + }, + [233] = { + [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), + }, + [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), + }, + [235] = { + [sym_identifier] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = 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(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_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(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(566), + [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(568), - [anon_sym_LT] = ACTIONS(568), + [anon_sym_ref] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(896), [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym__] = ACTIONS(568), - [anon_sym_AMP] = 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(568), - [anon_sym_DOT_DOT] = ACTIONS(568), + [sym_mutable_specifier] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(896), [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(896), [anon_sym_AMP_AMP] = ACTIONS(566), [anon_sym_PIPE_PIPE] = ACTIONS(566), [anon_sym_PIPE] = ACTIONS(568), @@ -39078,181 +41700,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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(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), }, - [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), + [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(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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(898), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [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(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(920), [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(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), }, - [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), - [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(910), - [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), - [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), + [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), }, - [224] = { + [238] = { [sym_identifier] = ACTIONS(630), [anon_sym_LPAREN] = ACTIONS(628), [anon_sym_RBRACE] = ACTIONS(628), @@ -39332,567 +41954,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [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), - }, - [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), + [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(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(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), }, - [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), + [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(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(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), }, - [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), + [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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(912), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [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(904), + [sym_integer_literal] = ACTIONS(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(920), [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_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), - [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), - }, - [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_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), }, - [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), + [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(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(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), }, - [232] = { + [243] = { [sym_identifier] = ACTIONS(646), [anon_sym_LPAREN] = ACTIONS(644), [anon_sym_RBRACE] = ACTIONS(644), @@ -39972,3014 +42354,2993 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), }, - [234] = { - [sym_identifier] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(920), - [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_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_EQ] = ACTIONS(562), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_ref] = ACTIONS(918), - [anon_sym_LT] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(920), - [anon_sym__] = ACTIONS(918), + [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), + }, + [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_DOT_DOT_DOT] = ACTIONS(564), - [sym_mutable_specifier] = ACTIONS(918), - [anon_sym_DOT_DOT] = ACTIONS(918), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(918), - [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), + [anon_sym_dyn] = ACTIONS(726), [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(736), [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), + [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(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), }, - [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_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), + [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(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), }, - [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), + [248] = { + [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), }, - [237] = { - [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), + [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(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(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), }, - [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), + [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), }, - [239] = { - [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), + [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(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(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), }, - [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), + [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(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(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), }, - [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), + [253] = { + [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(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(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), }, - [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), + [254] = { + [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(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(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), }, - [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), + [255] = { + [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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(922), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), + [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(904), + [sym_integer_literal] = ACTIONS(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(920), [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(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), }, - [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), + [256] = { + [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(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(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), }, - [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), + [257] = { + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [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(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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(920), [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(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] = { - [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), + [258] = { + [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(1390), + [sym_generic_type_with_turbofish] = STATE(2386), + [sym_bounded_type] = STATE(1432), + [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(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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(920), [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(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), }, - [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), + [259] = { + [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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(920), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(904), + [sym_char_literal] = ACTIONS(920), [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(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), }, - [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), + [260] = { + [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), + [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_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), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(982), [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), + [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(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(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(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), + [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(1017), + [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), + [264] = { + [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(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), - [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), + [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(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(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_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), + [266] = { + [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), }, - [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), + [267] = { + [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), }, - [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), + [268] = { + [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), }, - [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), + [269] = { + [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), }, - [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), + [270] = { + [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), }, - [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), + [271] = { + [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), }, - [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), + [272] = { + [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), }, - [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), + [273] = { + [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), }, - [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), + [274] = { + [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), }, - [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), + [275] = { + [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), }, - [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), + [276] = { + [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), }, - [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), + [277] = { + [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), }, - [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), + [278] = { + [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), }, - [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), + [279] = { + [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), }, - [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), + [280] = { + [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), }, - [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), - [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), + [281] = { + [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), }, - [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), + [282] = { + [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), @@ -42997,33 +45358,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1170), [anon_sym_str] = ACTIONS(1170), [anon_sym_char] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1172), + [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(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_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), + [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(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__] = 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_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), }, - [272] = { + [285] = { + [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(1184), [sym_identifier] = ACTIONS(1186), [anon_sym_SEMI] = ACTIONS(1184), @@ -43100,7 +45716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1184), [sym_block_comment] = ACTIONS(3), }, - [273] = { + [287] = { [ts_builtin_sym_end] = ACTIONS(1188), [sym_identifier] = ACTIONS(1190), [anon_sym_SEMI] = ACTIONS(1188), @@ -43177,7 +45793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1188), [sym_block_comment] = ACTIONS(3), }, - [274] = { + [288] = { [ts_builtin_sym_end] = ACTIONS(1192), [sym_identifier] = ACTIONS(1194), [anon_sym_SEMI] = ACTIONS(1192), @@ -43254,7 +45870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1192), [sym_block_comment] = ACTIONS(3), }, - [275] = { + [289] = { [ts_builtin_sym_end] = ACTIONS(1196), [sym_identifier] = ACTIONS(1198), [anon_sym_SEMI] = ACTIONS(1196), @@ -43331,7 +45947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1196), [sym_block_comment] = ACTIONS(3), }, - [276] = { + [290] = { [ts_builtin_sym_end] = ACTIONS(1200), [sym_identifier] = ACTIONS(1202), [anon_sym_SEMI] = ACTIONS(1200), @@ -43408,7 +46024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1200), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [291] = { [ts_builtin_sym_end] = ACTIONS(1204), [sym_identifier] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(1204), @@ -43485,7 +46101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1204), [sym_block_comment] = ACTIONS(3), }, - [278] = { + [292] = { [ts_builtin_sym_end] = ACTIONS(1208), [sym_identifier] = ACTIONS(1210), [anon_sym_SEMI] = ACTIONS(1208), @@ -43562,7 +46178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1208), [sym_block_comment] = ACTIONS(3), }, - [279] = { + [293] = { [ts_builtin_sym_end] = ACTIONS(1212), [sym_identifier] = ACTIONS(1214), [anon_sym_SEMI] = ACTIONS(1212), @@ -43639,7 +46255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1212), [sym_block_comment] = ACTIONS(3), }, - [280] = { + [294] = { [ts_builtin_sym_end] = ACTIONS(1216), [sym_identifier] = ACTIONS(1218), [anon_sym_SEMI] = ACTIONS(1216), @@ -43716,7 +46332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1216), [sym_block_comment] = ACTIONS(3), }, - [281] = { + [295] = { [ts_builtin_sym_end] = ACTIONS(1220), [sym_identifier] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1220), @@ -43793,7 +46409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1220), [sym_block_comment] = ACTIONS(3), }, - [282] = { + [296] = { [ts_builtin_sym_end] = ACTIONS(1224), [sym_identifier] = ACTIONS(1226), [anon_sym_SEMI] = ACTIONS(1224), @@ -43870,7 +46486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1224), [sym_block_comment] = ACTIONS(3), }, - [283] = { + [297] = { [ts_builtin_sym_end] = ACTIONS(1228), [sym_identifier] = ACTIONS(1230), [anon_sym_SEMI] = ACTIONS(1228), @@ -43947,7 +46563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1228), [sym_block_comment] = ACTIONS(3), }, - [284] = { + [298] = { [ts_builtin_sym_end] = ACTIONS(1232), [sym_identifier] = ACTIONS(1234), [anon_sym_SEMI] = ACTIONS(1232), @@ -44024,7 +46640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1232), [sym_block_comment] = ACTIONS(3), }, - [285] = { + [299] = { [ts_builtin_sym_end] = ACTIONS(1236), [sym_identifier] = ACTIONS(1238), [anon_sym_SEMI] = ACTIONS(1236), @@ -44101,7 +46717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1236), [sym_block_comment] = ACTIONS(3), }, - [286] = { + [300] = { [ts_builtin_sym_end] = ACTIONS(1240), [sym_identifier] = ACTIONS(1242), [anon_sym_SEMI] = ACTIONS(1240), @@ -44178,7 +46794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1240), [sym_block_comment] = ACTIONS(3), }, - [287] = { + [301] = { [ts_builtin_sym_end] = ACTIONS(1244), [sym_identifier] = ACTIONS(1246), [anon_sym_SEMI] = ACTIONS(1244), @@ -44255,7 +46871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [288] = { + [302] = { [ts_builtin_sym_end] = ACTIONS(1248), [sym_identifier] = ACTIONS(1250), [anon_sym_SEMI] = ACTIONS(1248), @@ -44332,7 +46948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1248), [sym_block_comment] = ACTIONS(3), }, - [289] = { + [303] = { [ts_builtin_sym_end] = ACTIONS(1252), [sym_identifier] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1252), @@ -44409,7 +47025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1252), [sym_block_comment] = ACTIONS(3), }, - [290] = { + [304] = { [ts_builtin_sym_end] = ACTIONS(1256), [sym_identifier] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(1256), @@ -44486,7 +47102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1256), [sym_block_comment] = ACTIONS(3), }, - [291] = { + [305] = { [ts_builtin_sym_end] = ACTIONS(1260), [sym_identifier] = ACTIONS(1262), [anon_sym_SEMI] = ACTIONS(1260), @@ -44563,7 +47179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1260), [sym_block_comment] = ACTIONS(3), }, - [292] = { + [306] = { [ts_builtin_sym_end] = ACTIONS(1264), [sym_identifier] = ACTIONS(1266), [anon_sym_SEMI] = ACTIONS(1264), @@ -44640,7 +47256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1264), [sym_block_comment] = ACTIONS(3), }, - [293] = { + [307] = { [ts_builtin_sym_end] = ACTIONS(1268), [sym_identifier] = ACTIONS(1270), [anon_sym_SEMI] = ACTIONS(1268), @@ -44717,7 +47333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1268), [sym_block_comment] = ACTIONS(3), }, - [294] = { + [308] = { [ts_builtin_sym_end] = ACTIONS(1272), [sym_identifier] = ACTIONS(1274), [anon_sym_SEMI] = ACTIONS(1272), @@ -44794,7 +47410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1272), [sym_block_comment] = ACTIONS(3), }, - [295] = { + [309] = { [ts_builtin_sym_end] = ACTIONS(1276), [sym_identifier] = ACTIONS(1278), [anon_sym_SEMI] = ACTIONS(1276), @@ -44871,7 +47487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1276), [sym_block_comment] = ACTIONS(3), }, - [296] = { + [310] = { [ts_builtin_sym_end] = ACTIONS(1280), [sym_identifier] = ACTIONS(1282), [anon_sym_SEMI] = ACTIONS(1280), @@ -44948,7 +47564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1280), [sym_block_comment] = ACTIONS(3), }, - [297] = { + [311] = { [ts_builtin_sym_end] = ACTIONS(1284), [sym_identifier] = ACTIONS(1286), [anon_sym_SEMI] = ACTIONS(1284), @@ -45025,7 +47641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1284), [sym_block_comment] = ACTIONS(3), }, - [298] = { + [312] = { [ts_builtin_sym_end] = ACTIONS(1288), [sym_identifier] = ACTIONS(1290), [anon_sym_SEMI] = ACTIONS(1288), @@ -45102,7 +47718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1288), [sym_block_comment] = ACTIONS(3), }, - [299] = { + [313] = { [ts_builtin_sym_end] = ACTIONS(1292), [sym_identifier] = ACTIONS(1294), [anon_sym_SEMI] = ACTIONS(1292), @@ -45179,7 +47795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1292), [sym_block_comment] = ACTIONS(3), }, - [300] = { + [314] = { [ts_builtin_sym_end] = ACTIONS(1296), [sym_identifier] = ACTIONS(1298), [anon_sym_SEMI] = ACTIONS(1296), @@ -45256,7 +47872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1296), [sym_block_comment] = ACTIONS(3), }, - [301] = { + [315] = { [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1302), [anon_sym_SEMI] = ACTIONS(1300), @@ -45333,7 +47949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1300), [sym_block_comment] = ACTIONS(3), }, - [302] = { + [316] = { [ts_builtin_sym_end] = ACTIONS(1304), [sym_identifier] = ACTIONS(1306), [anon_sym_SEMI] = ACTIONS(1304), @@ -45410,7 +48026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1304), [sym_block_comment] = ACTIONS(3), }, - [303] = { + [317] = { [ts_builtin_sym_end] = ACTIONS(1308), [sym_identifier] = ACTIONS(1310), [anon_sym_SEMI] = ACTIONS(1308), @@ -45487,7 +48103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1308), [sym_block_comment] = ACTIONS(3), }, - [304] = { + [318] = { [ts_builtin_sym_end] = ACTIONS(1312), [sym_identifier] = ACTIONS(1314), [anon_sym_SEMI] = ACTIONS(1312), @@ -45564,7 +48180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1312), [sym_block_comment] = ACTIONS(3), }, - [305] = { + [319] = { [ts_builtin_sym_end] = ACTIONS(1316), [sym_identifier] = ACTIONS(1318), [anon_sym_SEMI] = ACTIONS(1316), @@ -45641,7 +48257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, - [306] = { + [320] = { [ts_builtin_sym_end] = ACTIONS(1320), [sym_identifier] = ACTIONS(1322), [anon_sym_SEMI] = ACTIONS(1320), @@ -45718,7 +48334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1320), [sym_block_comment] = ACTIONS(3), }, - [307] = { + [321] = { [ts_builtin_sym_end] = ACTIONS(1324), [sym_identifier] = ACTIONS(1326), [anon_sym_SEMI] = ACTIONS(1324), @@ -45795,7 +48411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1324), [sym_block_comment] = ACTIONS(3), }, - [308] = { + [322] = { [ts_builtin_sym_end] = ACTIONS(1328), [sym_identifier] = ACTIONS(1330), [anon_sym_SEMI] = ACTIONS(1328), @@ -45872,7 +48488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1328), [sym_block_comment] = ACTIONS(3), }, - [309] = { + [323] = { [ts_builtin_sym_end] = ACTIONS(1332), [sym_identifier] = ACTIONS(1334), [anon_sym_SEMI] = ACTIONS(1332), @@ -45949,7 +48565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1332), [sym_block_comment] = ACTIONS(3), }, - [310] = { + [324] = { [ts_builtin_sym_end] = ACTIONS(1336), [sym_identifier] = ACTIONS(1338), [anon_sym_SEMI] = ACTIONS(1336), @@ -46026,7 +48642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1336), [sym_block_comment] = ACTIONS(3), }, - [311] = { + [325] = { [ts_builtin_sym_end] = ACTIONS(1340), [sym_identifier] = ACTIONS(1342), [anon_sym_SEMI] = ACTIONS(1340), @@ -46103,7 +48719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1340), [sym_block_comment] = ACTIONS(3), }, - [312] = { + [326] = { [ts_builtin_sym_end] = ACTIONS(1344), [sym_identifier] = ACTIONS(1346), [anon_sym_SEMI] = ACTIONS(1344), @@ -46180,7 +48796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1344), [sym_block_comment] = ACTIONS(3), }, - [313] = { + [327] = { [ts_builtin_sym_end] = ACTIONS(1348), [sym_identifier] = ACTIONS(1350), [anon_sym_SEMI] = ACTIONS(1348), @@ -46257,7 +48873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1348), [sym_block_comment] = ACTIONS(3), }, - [314] = { + [328] = { [ts_builtin_sym_end] = ACTIONS(1352), [sym_identifier] = ACTIONS(1354), [anon_sym_SEMI] = ACTIONS(1352), @@ -46334,7 +48950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1352), [sym_block_comment] = ACTIONS(3), }, - [315] = { + [329] = { [ts_builtin_sym_end] = ACTIONS(1356), [sym_identifier] = ACTIONS(1358), [anon_sym_SEMI] = ACTIONS(1356), @@ -46411,7 +49027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1356), [sym_block_comment] = ACTIONS(3), }, - [316] = { + [330] = { [ts_builtin_sym_end] = ACTIONS(1360), [sym_identifier] = ACTIONS(1362), [anon_sym_SEMI] = ACTIONS(1360), @@ -46488,7 +49104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1360), [sym_block_comment] = ACTIONS(3), }, - [317] = { + [331] = { [ts_builtin_sym_end] = ACTIONS(1364), [sym_identifier] = ACTIONS(1366), [anon_sym_SEMI] = ACTIONS(1364), @@ -46565,7 +49181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1364), [sym_block_comment] = ACTIONS(3), }, - [318] = { + [332] = { [ts_builtin_sym_end] = ACTIONS(1368), [sym_identifier] = ACTIONS(1370), [anon_sym_SEMI] = ACTIONS(1368), @@ -46642,7 +49258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1368), [sym_block_comment] = ACTIONS(3), }, - [319] = { + [333] = { [ts_builtin_sym_end] = ACTIONS(1372), [sym_identifier] = ACTIONS(1374), [anon_sym_SEMI] = ACTIONS(1372), @@ -46719,7 +49335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1372), [sym_block_comment] = ACTIONS(3), }, - [320] = { + [334] = { [ts_builtin_sym_end] = ACTIONS(1376), [sym_identifier] = ACTIONS(1378), [anon_sym_SEMI] = ACTIONS(1376), @@ -46796,7 +49412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1376), [sym_block_comment] = ACTIONS(3), }, - [321] = { + [335] = { [ts_builtin_sym_end] = ACTIONS(1380), [sym_identifier] = ACTIONS(1382), [anon_sym_SEMI] = ACTIONS(1380), @@ -46873,7 +49489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1380), [sym_block_comment] = ACTIONS(3), }, - [322] = { + [336] = { [ts_builtin_sym_end] = ACTIONS(1384), [sym_identifier] = ACTIONS(1386), [anon_sym_SEMI] = ACTIONS(1384), @@ -46950,7 +49566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1384), [sym_block_comment] = ACTIONS(3), }, - [323] = { + [337] = { [ts_builtin_sym_end] = ACTIONS(1388), [sym_identifier] = ACTIONS(1390), [anon_sym_SEMI] = ACTIONS(1388), @@ -47027,7 +49643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1388), [sym_block_comment] = ACTIONS(3), }, - [324] = { + [338] = { [ts_builtin_sym_end] = ACTIONS(1392), [sym_identifier] = ACTIONS(1394), [anon_sym_SEMI] = ACTIONS(1392), @@ -47104,7 +49720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1392), [sym_block_comment] = ACTIONS(3), }, - [325] = { + [339] = { [ts_builtin_sym_end] = ACTIONS(1396), [sym_identifier] = ACTIONS(1398), [anon_sym_SEMI] = ACTIONS(1396), @@ -47181,7 +49797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1396), [sym_block_comment] = ACTIONS(3), }, - [326] = { + [340] = { [ts_builtin_sym_end] = ACTIONS(1400), [sym_identifier] = ACTIONS(1402), [anon_sym_SEMI] = ACTIONS(1400), @@ -47258,7 +49874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1400), [sym_block_comment] = ACTIONS(3), }, - [327] = { + [341] = { [ts_builtin_sym_end] = ACTIONS(1404), [sym_identifier] = ACTIONS(1406), [anon_sym_SEMI] = ACTIONS(1404), @@ -47335,7 +49951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1404), [sym_block_comment] = ACTIONS(3), }, - [328] = { + [342] = { [ts_builtin_sym_end] = ACTIONS(1408), [sym_identifier] = ACTIONS(1410), [anon_sym_SEMI] = ACTIONS(1408), @@ -47412,7 +50028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1408), [sym_block_comment] = ACTIONS(3), }, - [329] = { + [343] = { [ts_builtin_sym_end] = ACTIONS(1412), [sym_identifier] = ACTIONS(1414), [anon_sym_SEMI] = ACTIONS(1412), @@ -47489,7 +50105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1412), [sym_block_comment] = ACTIONS(3), }, - [330] = { + [344] = { [ts_builtin_sym_end] = ACTIONS(1416), [sym_identifier] = ACTIONS(1418), [anon_sym_SEMI] = ACTIONS(1416), @@ -47566,7 +50182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1416), [sym_block_comment] = ACTIONS(3), }, - [331] = { + [345] = { [ts_builtin_sym_end] = ACTIONS(1420), [sym_identifier] = ACTIONS(1422), [anon_sym_SEMI] = ACTIONS(1420), @@ -47643,7 +50259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1420), [sym_block_comment] = ACTIONS(3), }, - [332] = { + [346] = { [ts_builtin_sym_end] = ACTIONS(1424), [sym_identifier] = ACTIONS(1426), [anon_sym_SEMI] = ACTIONS(1424), @@ -47720,7 +50336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1424), [sym_block_comment] = ACTIONS(3), }, - [333] = { + [347] = { [ts_builtin_sym_end] = ACTIONS(1428), [sym_identifier] = ACTIONS(1430), [anon_sym_SEMI] = ACTIONS(1428), @@ -47797,7 +50413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1428), [sym_block_comment] = ACTIONS(3), }, - [334] = { + [348] = { [ts_builtin_sym_end] = ACTIONS(1432), [sym_identifier] = ACTIONS(1434), [anon_sym_SEMI] = ACTIONS(1432), @@ -47874,7 +50490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1432), [sym_block_comment] = ACTIONS(3), }, - [335] = { + [349] = { [ts_builtin_sym_end] = ACTIONS(1436), [sym_identifier] = ACTIONS(1438), [anon_sym_SEMI] = ACTIONS(1436), @@ -47951,7 +50567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1436), [sym_block_comment] = ACTIONS(3), }, - [336] = { + [350] = { [ts_builtin_sym_end] = ACTIONS(1440), [sym_identifier] = ACTIONS(1442), [anon_sym_SEMI] = ACTIONS(1440), @@ -48028,7 +50644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1440), [sym_block_comment] = ACTIONS(3), }, - [337] = { + [351] = { [ts_builtin_sym_end] = ACTIONS(1444), [sym_identifier] = ACTIONS(1446), [anon_sym_SEMI] = ACTIONS(1444), @@ -48105,7 +50721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1444), [sym_block_comment] = ACTIONS(3), }, - [338] = { + [352] = { [ts_builtin_sym_end] = ACTIONS(1448), [sym_identifier] = ACTIONS(1450), [anon_sym_SEMI] = ACTIONS(1448), @@ -48182,7 +50798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1448), [sym_block_comment] = ACTIONS(3), }, - [339] = { + [353] = { [ts_builtin_sym_end] = ACTIONS(1452), [sym_identifier] = ACTIONS(1454), [anon_sym_SEMI] = ACTIONS(1452), @@ -48259,7 +50875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1452), [sym_block_comment] = ACTIONS(3), }, - [340] = { + [354] = { [ts_builtin_sym_end] = ACTIONS(1456), [sym_identifier] = ACTIONS(1458), [anon_sym_SEMI] = ACTIONS(1456), @@ -48336,7 +50952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1456), [sym_block_comment] = ACTIONS(3), }, - [341] = { + [355] = { [ts_builtin_sym_end] = ACTIONS(1460), [sym_identifier] = ACTIONS(1462), [anon_sym_SEMI] = ACTIONS(1460), @@ -48413,7 +51029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1460), [sym_block_comment] = ACTIONS(3), }, - [342] = { + [356] = { [ts_builtin_sym_end] = ACTIONS(1464), [sym_identifier] = ACTIONS(1466), [anon_sym_SEMI] = ACTIONS(1464), @@ -48490,7 +51106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1464), [sym_block_comment] = ACTIONS(3), }, - [343] = { + [357] = { [ts_builtin_sym_end] = ACTIONS(1468), [sym_identifier] = ACTIONS(1470), [anon_sym_SEMI] = ACTIONS(1468), @@ -48567,7 +51183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1468), [sym_block_comment] = ACTIONS(3), }, - [344] = { + [358] = { [ts_builtin_sym_end] = ACTIONS(1472), [sym_identifier] = ACTIONS(1474), [anon_sym_SEMI] = ACTIONS(1472), @@ -48644,7 +51260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1472), [sym_block_comment] = ACTIONS(3), }, - [345] = { + [359] = { [ts_builtin_sym_end] = ACTIONS(1476), [sym_identifier] = ACTIONS(1478), [anon_sym_SEMI] = ACTIONS(1476), @@ -48721,7 +51337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1476), [sym_block_comment] = ACTIONS(3), }, - [346] = { + [360] = { [ts_builtin_sym_end] = ACTIONS(1480), [sym_identifier] = ACTIONS(1482), [anon_sym_SEMI] = ACTIONS(1480), @@ -48798,1162 +51414,777 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1480), [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), - [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), + [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(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), - [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_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_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), - [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), - [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_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), - [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_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(1500), - [sym_raw_string_literal] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), - [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), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [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), + [362] = { + [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), }, - [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), + [363] = { + [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), }, - [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), + [364] = { + [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), }, - [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), + [365] = { + [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), }, - [357] = { - [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), + [366] = { + [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), }, - [358] = { - [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), + [367] = { + [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), }, - [359] = { - [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), + [368] = { + [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), }, - [360] = { - [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), + [369] = { + [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), }, - [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), + [370] = { + [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), }, - [362] = { + [371] = { [ts_builtin_sym_end] = ACTIONS(1542), [sym_identifier] = ACTIONS(1544), [anon_sym_SEMI] = ACTIONS(1542), @@ -50030,7 +52261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1542), [sym_block_comment] = ACTIONS(3), }, - [363] = { + [372] = { [ts_builtin_sym_end] = ACTIONS(1546), [sym_identifier] = ACTIONS(1548), [anon_sym_SEMI] = ACTIONS(1546), @@ -50107,7 +52338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1546), [sym_block_comment] = ACTIONS(3), }, - [364] = { + [373] = { [ts_builtin_sym_end] = ACTIONS(1550), [sym_identifier] = ACTIONS(1552), [anon_sym_SEMI] = ACTIONS(1550), @@ -50184,7 +52415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1550), [sym_block_comment] = ACTIONS(3), }, - [365] = { + [374] = { [ts_builtin_sym_end] = ACTIONS(1554), [sym_identifier] = ACTIONS(1556), [anon_sym_SEMI] = ACTIONS(1554), @@ -50261,7 +52492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1554), [sym_block_comment] = ACTIONS(3), }, - [366] = { + [375] = { [ts_builtin_sym_end] = ACTIONS(1558), [sym_identifier] = ACTIONS(1560), [anon_sym_SEMI] = ACTIONS(1558), @@ -50338,7 +52569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1558), [sym_block_comment] = ACTIONS(3), }, - [367] = { + [376] = { [ts_builtin_sym_end] = ACTIONS(1562), [sym_identifier] = ACTIONS(1564), [anon_sym_SEMI] = ACTIONS(1562), @@ -50415,7 +52646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1562), [sym_block_comment] = ACTIONS(3), }, - [368] = { + [377] = { [ts_builtin_sym_end] = ACTIONS(1566), [sym_identifier] = ACTIONS(1568), [anon_sym_SEMI] = ACTIONS(1566), @@ -50492,7 +52723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1566), [sym_block_comment] = ACTIONS(3), }, - [369] = { + [378] = { [ts_builtin_sym_end] = ACTIONS(1570), [sym_identifier] = ACTIONS(1572), [anon_sym_SEMI] = ACTIONS(1570), @@ -50569,7 +52800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1570), [sym_block_comment] = ACTIONS(3), }, - [370] = { + [379] = { [ts_builtin_sym_end] = ACTIONS(1574), [sym_identifier] = ACTIONS(1576), [anon_sym_SEMI] = ACTIONS(1574), @@ -50646,7 +52877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1574), [sym_block_comment] = ACTIONS(3), }, - [371] = { + [380] = { [ts_builtin_sym_end] = ACTIONS(1578), [sym_identifier] = ACTIONS(1580), [anon_sym_SEMI] = ACTIONS(1578), @@ -50723,7 +52954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1578), [sym_block_comment] = ACTIONS(3), }, - [372] = { + [381] = { [ts_builtin_sym_end] = ACTIONS(1582), [sym_identifier] = ACTIONS(1584), [anon_sym_SEMI] = ACTIONS(1582), @@ -50800,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), }, - [373] = { + [382] = { [ts_builtin_sym_end] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [anon_sym_SEMI] = ACTIONS(1586), @@ -50877,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), }, - [374] = { + [383] = { [ts_builtin_sym_end] = ACTIONS(1590), [sym_identifier] = ACTIONS(1592), [anon_sym_SEMI] = ACTIONS(1590), @@ -50954,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), }, - [375] = { + [384] = { [ts_builtin_sym_end] = ACTIONS(1594), [sym_identifier] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1594), @@ -51031,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), }, - [376] = { + [385] = { [ts_builtin_sym_end] = ACTIONS(1598), [sym_identifier] = ACTIONS(1600), [anon_sym_SEMI] = ACTIONS(1598), @@ -51108,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), }, - [377] = { + [386] = { [ts_builtin_sym_end] = ACTIONS(1602), [sym_identifier] = ACTIONS(1604), [anon_sym_SEMI] = ACTIONS(1602), @@ -51185,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), }, - [378] = { + [387] = { [ts_builtin_sym_end] = ACTIONS(1606), [sym_identifier] = ACTIONS(1608), [anon_sym_SEMI] = ACTIONS(1606), @@ -51262,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), }, - [379] = { + [388] = { [ts_builtin_sym_end] = ACTIONS(1610), [sym_identifier] = ACTIONS(1612), [anon_sym_SEMI] = ACTIONS(1610), @@ -51339,7 +53570,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1610), [sym_block_comment] = ACTIONS(3), }, - [380] = { + [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), [anon_sym_SEMI] = ACTIONS(1614), @@ -51416,3549 +53724,3703 @@ 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), - [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), - [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), - [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), - [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), - [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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(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(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), }, [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(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(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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [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(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), }, [427] = { + [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), + }, + [428] = { + [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), + }, + [429] = { + [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), + }, + [430] = { + [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), + }, + [431] = { + [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), + }, + [432] = { + [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), + }, + [433] = { + [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), + }, + [434] = { + [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), + }, + [435] = { + [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), + }, + [436] = { + [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), + }, + [437] = { + [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), + }, + [438] = { + [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(1800), [sym_identifier] = ACTIONS(1802), [anon_sym_SEMI] = ACTIONS(1800), @@ -55035,7 +57497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, - [428] = { + [440] = { [ts_builtin_sym_end] = ACTIONS(1804), [sym_identifier] = ACTIONS(1806), [anon_sym_SEMI] = ACTIONS(1804), @@ -55112,7 +57574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, - [429] = { + [441] = { [ts_builtin_sym_end] = ACTIONS(1808), [sym_identifier] = ACTIONS(1810), [anon_sym_SEMI] = ACTIONS(1808), @@ -55189,7 +57651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, - [430] = { + [442] = { [ts_builtin_sym_end] = ACTIONS(1812), [sym_identifier] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(1812), @@ -55266,7 +57728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, - [431] = { + [443] = { [ts_builtin_sym_end] = ACTIONS(1816), [sym_identifier] = ACTIONS(1818), [anon_sym_SEMI] = ACTIONS(1816), @@ -55343,7 +57805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, - [432] = { + [444] = { [ts_builtin_sym_end] = ACTIONS(1820), [sym_identifier] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(1820), @@ -55420,7 +57882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, - [433] = { + [445] = { [ts_builtin_sym_end] = ACTIONS(1824), [sym_identifier] = ACTIONS(1826), [anon_sym_SEMI] = ACTIONS(1824), @@ -55497,7 +57959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, - [434] = { + [446] = { [ts_builtin_sym_end] = ACTIONS(1828), [sym_identifier] = ACTIONS(1830), [anon_sym_SEMI] = ACTIONS(1828), @@ -55574,7 +58036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1828), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [447] = { [ts_builtin_sym_end] = ACTIONS(1832), [sym_identifier] = ACTIONS(1834), [anon_sym_SEMI] = ACTIONS(1832), @@ -55651,7 +58113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1832), [sym_block_comment] = ACTIONS(3), }, - [436] = { + [448] = { [ts_builtin_sym_end] = ACTIONS(1836), [sym_identifier] = ACTIONS(1838), [anon_sym_SEMI] = ACTIONS(1836), @@ -55728,7 +58190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, - [437] = { + [449] = { [ts_builtin_sym_end] = ACTIONS(1840), [sym_identifier] = ACTIONS(1842), [anon_sym_SEMI] = ACTIONS(1840), @@ -55805,84 +58267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1840), [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), - [sym_block_comment] = ACTIONS(3), - }, - [439] = { + [450] = { [ts_builtin_sym_end] = ACTIONS(1844), [sym_identifier] = ACTIONS(1846), [anon_sym_SEMI] = ACTIONS(1844), @@ -55959,7 +58344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, - [440] = { + [451] = { [ts_builtin_sym_end] = ACTIONS(1848), [sym_identifier] = ACTIONS(1850), [anon_sym_SEMI] = ACTIONS(1848), @@ -56036,7 +58421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, - [441] = { + [452] = { [ts_builtin_sym_end] = ACTIONS(1852), [sym_identifier] = ACTIONS(1854), [anon_sym_SEMI] = ACTIONS(1852), @@ -56113,7 +58498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, - [442] = { + [453] = { [ts_builtin_sym_end] = ACTIONS(1856), [sym_identifier] = ACTIONS(1858), [anon_sym_SEMI] = ACTIONS(1856), @@ -56190,7 +58575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, - [443] = { + [454] = { [ts_builtin_sym_end] = ACTIONS(1860), [sym_identifier] = ACTIONS(1862), [anon_sym_SEMI] = ACTIONS(1860), @@ -56267,7 +58652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, - [444] = { + [455] = { [ts_builtin_sym_end] = ACTIONS(1864), [sym_identifier] = ACTIONS(1866), [anon_sym_SEMI] = ACTIONS(1864), @@ -56344,7 +58729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1864), [sym_block_comment] = ACTIONS(3), }, - [445] = { + [456] = { [ts_builtin_sym_end] = ACTIONS(1868), [sym_identifier] = ACTIONS(1870), [anon_sym_SEMI] = ACTIONS(1868), @@ -56421,84 +58806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1868), [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), - [sym_block_comment] = ACTIONS(3), - }, - [447] = { + [457] = { [ts_builtin_sym_end] = ACTIONS(1872), [sym_identifier] = ACTIONS(1874), [anon_sym_SEMI] = ACTIONS(1872), @@ -56575,7 +58883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1872), [sym_block_comment] = ACTIONS(3), }, - [448] = { + [458] = { [ts_builtin_sym_end] = ACTIONS(1876), [sym_identifier] = ACTIONS(1878), [anon_sym_SEMI] = ACTIONS(1876), @@ -56652,7 +58960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1876), [sym_block_comment] = ACTIONS(3), }, - [449] = { + [459] = { [ts_builtin_sym_end] = ACTIONS(1880), [sym_identifier] = ACTIONS(1882), [anon_sym_SEMI] = ACTIONS(1880), @@ -56729,7 +59037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1880), [sym_block_comment] = ACTIONS(3), }, - [450] = { + [460] = { [ts_builtin_sym_end] = ACTIONS(1884), [sym_identifier] = ACTIONS(1886), [anon_sym_SEMI] = ACTIONS(1884), @@ -56806,7 +59114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1884), [sym_block_comment] = ACTIONS(3), }, - [451] = { + [461] = { [ts_builtin_sym_end] = ACTIONS(1888), [sym_identifier] = ACTIONS(1890), [anon_sym_SEMI] = ACTIONS(1888), @@ -56883,84 +59191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), - }, - [453] = { + [462] = { [ts_builtin_sym_end] = ACTIONS(1892), [sym_identifier] = ACTIONS(1894), [anon_sym_SEMI] = ACTIONS(1892), @@ -57037,7 +59268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1892), [sym_block_comment] = ACTIONS(3), }, - [454] = { + [463] = { [ts_builtin_sym_end] = ACTIONS(1896), [sym_identifier] = ACTIONS(1898), [anon_sym_SEMI] = ACTIONS(1896), @@ -57114,7 +59345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1896), [sym_block_comment] = ACTIONS(3), }, - [455] = { + [464] = { [ts_builtin_sym_end] = ACTIONS(1900), [sym_identifier] = ACTIONS(1902), [anon_sym_SEMI] = ACTIONS(1900), @@ -57191,7 +59422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1900), [sym_block_comment] = ACTIONS(3), }, - [456] = { + [465] = { [ts_builtin_sym_end] = ACTIONS(1904), [sym_identifier] = ACTIONS(1906), [anon_sym_SEMI] = ACTIONS(1904), @@ -57268,7 +59499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, - [457] = { + [466] = { [ts_builtin_sym_end] = ACTIONS(1908), [sym_identifier] = ACTIONS(1910), [anon_sym_SEMI] = ACTIONS(1908), @@ -57345,7 +59576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, - [458] = { + [467] = { [ts_builtin_sym_end] = ACTIONS(1912), [sym_identifier] = ACTIONS(1914), [anon_sym_SEMI] = ACTIONS(1912), @@ -57422,7 +59653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1912), [sym_block_comment] = ACTIONS(3), }, - [459] = { + [468] = { [ts_builtin_sym_end] = ACTIONS(1916), [sym_identifier] = ACTIONS(1918), [anon_sym_SEMI] = ACTIONS(1916), @@ -57499,7 +59730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1916), [sym_block_comment] = ACTIONS(3), }, - [460] = { + [469] = { [ts_builtin_sym_end] = ACTIONS(1920), [sym_identifier] = ACTIONS(1922), [anon_sym_SEMI] = ACTIONS(1920), @@ -57576,7 +59807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1920), [sym_block_comment] = ACTIONS(3), }, - [461] = { + [470] = { [ts_builtin_sym_end] = ACTIONS(1924), [sym_identifier] = ACTIONS(1926), [anon_sym_SEMI] = ACTIONS(1924), @@ -57653,7 +59884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1924), [sym_block_comment] = ACTIONS(3), }, - [462] = { + [471] = { [ts_builtin_sym_end] = ACTIONS(1928), [sym_identifier] = ACTIONS(1930), [anon_sym_SEMI] = ACTIONS(1928), @@ -57730,1560 +59961,1479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1928), [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), + [472] = { + [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(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), - [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), + [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), }, - [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), + [473] = { + [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), }, - [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), + [474] = { + [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), }, - [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), + [475] = { + [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), }, - [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), + [476] = { + [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), }, - [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), + [477] = { + [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), }, - [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), + [478] = { + [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), }, - [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), + [479] = { + [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), }, - [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), + [480] = { + [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), }, - [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), + [481] = { + [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), }, - [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), + [482] = { + [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), }, - [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), + [483] = { + [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), }, - [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), + [484] = { + [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), }, - [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), + [485] = { + [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), }, - [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), + [486] = { + [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), }, - [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), + [487] = { + [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), }, - [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), + [488] = { + [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), }, - [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), + [489] = { + [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), }, - [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), + [490] = { + [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), }, - [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), + [491] = { + [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 +61451,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,310 +61475,321 @@ 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_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2006), + [sym_float_literal] = ACTIONS(2006), [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), + [492] = { + [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_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), + [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), }, - [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), + [493] = { + [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_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), + [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), }, - [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), + [494] = { + [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(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(1012), + [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), }, - [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), + [495] = { + [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(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(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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -59641,301 +61799,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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_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_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), + [496] = { + [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(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(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), }, - [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__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), + [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(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(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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -59945,1452 +61951,1538 @@ 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(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), }, - [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_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), + [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(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(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), }, - [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), + [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(2071), + [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(1012), + [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), }, - [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), + [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(2024), + [anon_sym_RBRACE] = ACTIONS(2069), + [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(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), }, - [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), + [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), }, - [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(569), - [sym_boolean_literal] = STATE(569), - [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), + [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_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2071), + [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(1012), + [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] = { + [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(569), - [sym_boolean_literal] = STATE(569), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), [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_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), }, - [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), + [504] = { + [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(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), + [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(1012), + [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(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), + [505] = { + [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), }, - [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), + [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), }, - [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), + [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(2024), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2107), + [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(1012), + [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(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), + [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), }, - [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), + [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), }, - [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), + [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), }, - [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), + [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(2024), + [anon_sym_RBRACE] = ACTIONS(2107), + [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(1012), + [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), }, - [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), + [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(2107), + [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(1012), + [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), }, - [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), + [513] = { + [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(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), + [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), + [514] = { + [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), + [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(1012), + [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] = { + [515] = { + [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_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(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(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(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(539), [sym_token_repetition] = STATE(539), [sym__literal] = STATE(539), - [sym_string_literal] = STATE(569), - [sym_boolean_literal] = STATE(569), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), [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_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(1012), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), [sym_metavariable] = ACTIONS(2217), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [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), + [518] = { + [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(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), + [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), @@ -61438,181 +63530,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2221), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [sym_block_comment] = ACTIONS(3), }, - [512] = { - [sym_delim_token_tree] = STATE(503), - [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), - [aux_sym_delim_token_tree_repeat1] = STATE(503), - [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_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(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), + [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_LBRACK] = ACTIONS(2185), + [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(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), }, - [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), + [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(2199), - [anon_sym_RPAREN] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2233), [anon_sym_u8] = ACTIONS(2231), [anon_sym_i8] = ACTIONS(2231), [anon_sym_u16] = ACTIONS(2231), @@ -61660,255 +63679,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [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), + [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(2199), + [anon_sym_LPAREN] = ACTIONS(2203), [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), + [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), @@ -61956,107 +63752,108 @@ 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(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(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), [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_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_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), + [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), }, - [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), + [523] = { + [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(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(2243), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2245), [anon_sym_u8] = ACTIONS(2241), [anon_sym_i8] = ACTIONS(2241), [anon_sym_u16] = ACTIONS(2241), @@ -62104,182 +63901,33 @@ 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(1012), [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_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_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), + [524] = { + [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(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2249), [anon_sym_u8] = ACTIONS(2247), [anon_sym_i8] = ACTIONS(2247), [anon_sym_u16] = ACTIONS(2247), @@ -62327,329 +63975,847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2247), [sym_super] = ACTIONS(2247), [sym_crate] = ACTIONS(2247), - [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), }, - [524] = { + [525] = { + [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(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(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(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(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_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_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(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(2261), + [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), + }, + [530] = { + [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(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(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(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(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(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(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), + }, + [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(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(2277), + [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), + }, + [534] = { + [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_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), + }, + [535] = { + [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(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(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(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), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), [aux_sym_delim_token_tree_repeat1] = STATE(506), - [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_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(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(2253), - [sym_super] = ACTIONS(2253), - [sym_crate] = ACTIONS(2253), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [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_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_DOLLAR] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2275), + [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), @@ -62697,550 +64863,476 @@ 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(1012), [sym_self] = ACTIONS(2259), [sym_super] = ACTIONS(2259), [sym_crate] = ACTIONS(2259), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [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), - [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_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), - [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(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), - [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_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(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(2269), - [sym_super] = ACTIONS(2269), - [sym_crate] = ACTIONS(2269), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [537] = { + [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(2275), + [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), }, - [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), + [538] = { + [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(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), }, - [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), + [539] = { + [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), }, - [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), + [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(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), }, - [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_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_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(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(2277), - [sym_super] = ACTIONS(2277), - [sym_crate] = ACTIONS(2277), - [sym_raw_string_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [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(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(2283), + [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), }, - [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), + [542] = { + [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(2283), + [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), }, - [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), + [543] = { + [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(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2183), [anon_sym_DOLLAR] = ACTIONS(2287), [anon_sym_u8] = ACTIONS(2285), [anon_sym_i8] = ACTIONS(2285), @@ -63289,32 +65381,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2285), [sym_super] = ACTIONS(2285), [sym_crate] = ACTIONS(2285), - [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), }, - [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), + [544] = { + [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(2199), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), + [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), @@ -63341,424 +65433,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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), + [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(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), }, - [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), + [545] = { + [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(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(542), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), + [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(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), }, - [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), + [546] = { + [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(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(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), }, - [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), + [547] = { + [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_LBRACK] = ACTIONS(2185), + [anon_sym_RBRACK] = ACTIONS(2301), + [anon_sym_DOLLAR] = ACTIONS(2303), + [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(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), }, - [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), + [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(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), + }, + [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(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2309), [anon_sym_u8] = ACTIONS(2307), [anon_sym_i8] = ACTIONS(2307), @@ -63807,32 +65825,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2307), [sym_super] = ACTIONS(2307), [sym_crate] = ACTIONS(2307), - [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), }, - [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), + [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(2169), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2313), [anon_sym_u8] = ACTIONS(2311), [anon_sym_i8] = ACTIONS(2311), @@ -63881,222 +65899,593 @@ 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(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(2311), [sym_super] = ACTIONS(2311), [sym_crate] = ACTIONS(2311), - [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), }, - [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), + [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(2297), + [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), + }, + [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), }, - [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), + [557] = { + [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_DOLLAR] = ACTIONS(2323), + [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(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(2321), + [sym_super] = ACTIONS(2321), + [sym_crate] = ACTIONS(2321), + [sym_raw_string_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), [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), - [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), + [558] = { + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -64106,70 +66495,143 @@ 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(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), }, - [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), - [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), + [559] = { + [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(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(569), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2327), + [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_COMMA] = ACTIONS(2335), + [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), + }, + [560] = { + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -64179,871 +66641,731 @@ 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(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), }, - [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), + [561] = { + [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(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(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [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(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), [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), + [562] = { + [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(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(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [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(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), [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), + [563] = { + [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(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(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [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(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), [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), + [564] = { + [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(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(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [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(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), [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), + [565] = { + [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(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(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [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(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), [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), + [566] = { + [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(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(570), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [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(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), [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), + [567] = { + [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(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(570), + [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(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(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(894), + [anon_sym_default] = ACTIONS(910), [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(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), [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), + [568] = { + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_RPAREN] = ACTIONS(2353), + [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(1012), + [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), }, - [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), + [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(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(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(894), + [anon_sym_default] = ACTIONS(910), [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(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), [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), + [570] = { + [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(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(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(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(894), + [anon_sym_default] = ACTIONS(910), [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(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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_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), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1164), - [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), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(2337), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [561] = { + [571] = { [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(2359), [anon_sym_RPAREN] = ACTIONS(2359), @@ -65104,7 +67426,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(1012), [sym_self] = ACTIONS(2357), [sym_super] = ACTIONS(2357), [sym_crate] = ACTIONS(2357), @@ -65113,1109 +67435,199 @@ 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), - [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), - [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), - }, - [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), - [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(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_block_comment] = ACTIONS(3), - }, - [568] = { - [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(1000), - [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), - [sym_block_comment] = ACTIONS(3), - }, - [569] = { - [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(1000), - [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), - [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), - [sym_block_comment] = ACTIONS(3), - }, - [571] = { - [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(1000), - [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), - }, [572] = { - [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(1000), - [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_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(1012), + [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), }, [573] = { - [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(1000), - [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_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(1012), + [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), }, [574] = { - [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(1000), - [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), - }, - [575] = { - [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(1000), - [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), + [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(1486), + [anon_sym_LBRACK] = ACTIONS(1490), [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_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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66225,275 +67637,207 @@ 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), - }, - [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_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), }, - [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), + [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(1012), + [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), }, - [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), + [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(1012), + [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), }, - [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), + [577] = { + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66503,342 +67847,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(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), }, - [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_block_comment] = ACTIONS(3), - }, - [583] = { - [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(2421), - [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_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), - [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_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), + [578] = { + [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_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(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(894), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(910), [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(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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(2387), [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), + [579] = { + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66848,412 +67987,1183 @@ 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(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), }, - [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__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), + [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(1012), + [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(1012), + [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(1012), + [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_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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), + [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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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_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), + [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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2447), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [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), - }, - [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), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [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), + [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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2447), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [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), - }, - [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), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(2425), + [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), @@ -67262,66 +69172,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(2429), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67331,135 +69241,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(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), }, - [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_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), }, - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67469,135 +69379,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(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), }, - [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), - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(2451), + [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), @@ -67606,65 +69448,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(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_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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67674,270 +69586,412 @@ 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(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_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), + [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(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_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(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(894), + [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(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2455), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2457), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [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), + [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), + }, + [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), + [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), + }, + [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_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(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(894), + [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(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2459), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [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), + [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(2483), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_dyn] = ACTIONS(2487), - [sym_mutable_specifier] = ACTIONS(2489), + [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(2491), - [sym_super] = ACTIONS(2491), - [sym_crate] = ACTIONS(2491), - [sym_metavariable] = ACTIONS(2493), + [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_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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), + [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), @@ -67946,65 +70000,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68014,65 +70068,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68082,65 +70136,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68150,65 +70204,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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_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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68218,65 +70272,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [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(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_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(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68286,65 +70408,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [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), + [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), + }, + [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(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_PLUS] = ACTIONS(2465), + [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_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_mutable_specifier] = ACTIONS(2467), + [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), + }, + [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(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(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68354,65 +70612,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68422,65 +70680,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(2497), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68490,65 +70748,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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_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), - [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), + [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(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_PLUS] = ACTIONS(2465), + [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_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_mutable_specifier] = ACTIONS(2469), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2471), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), + [sym_block_comment] = ACTIONS(3), + }, + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68558,65 +70884,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68626,65 +70952,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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__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), + [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(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), + }, + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68694,65 +71088,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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_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), - [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), + [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(2502), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_dyn] = ACTIONS(2506), + [sym_mutable_specifier] = ACTIONS(2508), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2510), + [sym_super] = ACTIONS(2510), + [sym_crate] = ACTIONS(2510), + [sym_metavariable] = ACTIONS(2512), + [sym_block_comment] = ACTIONS(3), + }, + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68762,65 +71224,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68830,66 +71292,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(2499), + [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), @@ -68898,65 +71360,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68966,65 +71428,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69034,65 +71496,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69102,66 +71564,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(2501), + [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), @@ -69170,65 +71632,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69238,65 +71700,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69306,133 +71768,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69442,65 +71836,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69510,65 +71904,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69578,65 +71972,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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(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), - [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), + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69646,65 +72040,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [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(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_PLUS] = ACTIONS(2465), + [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_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_mutable_specifier] = ACTIONS(2520), + [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), + }, + [640] = { + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69714,133 +72176,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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_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), - [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), + [641] = { + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69850,66 +72244,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(2512), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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_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), - [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), + [642] = { + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), - [sym_mutable_specifier] = ACTIONS(826), + [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), @@ -69918,65 +72312,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(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1182), + [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), }, - [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), - [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), + [643] = { + [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(1176), + [anon_sym_COLON_COLON] = ACTIONS(1498), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1500), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69986,950 +72380,1018 @@ 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(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_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), + [644] = { + [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(2483), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_dyn] = ACTIONS(2487), - [sym_mutable_specifier] = ACTIONS(2516), + [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(2491), - [sym_super] = ACTIONS(2491), - [sym_crate] = ACTIONS(2491), - [sym_metavariable] = ACTIONS(2493), + [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_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), + [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(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_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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [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), + [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(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_RPAREN] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [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), - }, - [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), + [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(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(1658), + [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(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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [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(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [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), + [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(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(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_RPAREN] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [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(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [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), + [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(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(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_RPAREN] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [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), - }, - [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), + [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(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(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_RPAREN] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [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), - }, - [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), + [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(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(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_RPAREN] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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), - }, - [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), + [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(2510), + [sym_super] = ACTIONS(2510), + [sym_crate] = ACTIONS(2510), + [sym_metavariable] = ACTIONS(2512), + [sym_block_comment] = ACTIONS(3), + }, + [653] = { + [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(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_RPAREN] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [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), - }, - [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), + [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(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(1727), + [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(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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [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(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [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), + [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(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(1664), + [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(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(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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(912), [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(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(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [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), + [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(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(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_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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(918), [anon_sym_dyn] = ACTIONS(726), - [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_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), + [sym_mutable_specifier] = ACTIONS(2550), + [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), + }, + [657] = { + [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(1704), + [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(1516), + [aux_sym_function_modifiers_repeat1] = STATE(1593), + [sym_identifier] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(906), [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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [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(900), - [anon_sym_AMP] = ACTIONS(902), + [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(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [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), + [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(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(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_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(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(894), + [anon_sym_default] = ACTIONS(910), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(896), + [anon_sym_union] = ACTIONS(912), [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(916), + [anon_sym_AMP] = ACTIONS(918), [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(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, }; @@ -70952,57 +73414,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2143), 1, + STATE(1433), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71014,7 +73476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71049,57 +73511,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2120), 1, + STATE(1866), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71111,7 +73573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71146,57 +73608,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1717), 1, + STATE(1428), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71208,7 +73670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71243,57 +73705,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2150), 1, + STATE(1654), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71305,7 +73767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71340,57 +73802,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + 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(2112), 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, + [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(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1401), 1, + STATE(2290), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + 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, + [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(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(2291), 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, + [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(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(1420), 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(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71402,7 +74155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71420,7 +74173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [645] = 32, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71437,57 +74190,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1658), 1, + STATE(1737), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71499,7 +74252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71517,7 +74270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [774] = 32, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71534,57 +74287,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1395), 1, + STATE(2142), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71596,7 +74349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71614,7 +74367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [903] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71631,57 +74384,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1651), 1, + STATE(1925), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71693,7 +74446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71711,7 +74464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71728,57 +74481,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + 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(1414), 1, + sym__type, + STATE(1421), 1, + sym_lifetime, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, + sym_bracketed_type, + STATE(2386), 1, + sym_generic_type_with_turbofish, + 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, + [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(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(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1659), 1, + STATE(1702), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71790,7 +74640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71808,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, @@ -71825,57 +74675,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2187), 1, + STATE(1739), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71887,7 +74737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71905,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, @@ -71922,57 +74772,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2544), 1, + ACTIONS(2325), 1, sym_identifier, - STATE(1201), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, sym_for_lifetimes, - STATE(1539), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1724), 1, + STATE(1390), 1, sym_generic_type, - STATE(1725), 1, + STATE(1414), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71984,7 +74834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72002,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, @@ -72019,57 +74869,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2089), 1, + STATE(1698), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72081,7 +74931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72099,7 +74949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72116,57 +74966,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1405), 1, + STATE(2047), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72178,7 +75028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72196,74 +75046,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, + [2193] = 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(902), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2475), 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(1894), 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, + [2322] = 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(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(2485), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(771), 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(1007), 1, + STATE(1390), 1, sym_generic_type, - STATE(1112), 1, + STATE(1692), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2480), 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(1575), 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(2491), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72275,7 +75222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72293,7 +75240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72310,57 +75257,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1896), 1, + STATE(2238), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72372,7 +75319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72390,7 +75337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72407,57 +75354,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 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(1216), 1, sym_for_lifetimes, - STATE(1517), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1709), 1, + STATE(1390), 1, sym_generic_type, - STATE(1712), 1, + STATE(1685), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72469,7 +75416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72487,7 +75434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72504,57 +75451,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2000), 1, + STATE(1684), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72566,7 +75513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72584,7 +75531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72601,57 +75548,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1661), 1, + STATE(1683), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72663,7 +75610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72681,7 +75628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72698,57 +75645,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 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(1216), 1, sym_for_lifetimes, - STATE(1546), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1653), 1, + STATE(1390), 1, sym_generic_type, - STATE(1691), 1, + STATE(2132), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72760,7 +75707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72778,7 +75725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72795,57 +75742,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2298), 1, + STATE(2086), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72857,7 +75804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72875,7 +75822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72892,57 +75839,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1928), 1, + STATE(1682), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72954,7 +75901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72972,7 +75919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72989,57 +75936,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2297), 1, + STATE(1419), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73051,7 +75998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73069,7 +76016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73086,57 +76033,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1815), 1, + STATE(2306), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73148,7 +76095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73166,7 +76113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73183,57 +76130,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1419), 1, + STATE(1800), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73245,7 +76192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73263,7 +76210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73280,57 +76227,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1424), 1, + STATE(2202), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73342,7 +76289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73360,7 +76307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73377,57 +76324,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1713), 1, + STATE(2123), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73439,7 +76386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73457,7 +76404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73474,154 +76421,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2310), 1, + STATE(1680), 1, sym__type, - STATE(2370), 1, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 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, - [3483] = 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(1058), 1, - sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, - sym_scoped_identifier, - STATE(2376), 1, + STATE(2577), 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(1593), 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(922), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73633,7 +76483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73651,7 +76501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73668,57 +76518,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1400), 1, + STATE(2018), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73730,7 +76580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73748,7 +76598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73765,57 +76615,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1420), 1, + STATE(1671), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73827,7 +76677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73845,7 +76695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73862,57 +76712,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1726), 1, + STATE(1669), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73924,7 +76774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73942,7 +76792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73959,57 +76809,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2021), 1, + STATE(2158), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74021,7 +76871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74039,7 +76889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74056,57 +76906,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2075), 1, + STATE(2136), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74118,7 +76968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74136,7 +76986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74153,57 +77003,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1884), 1, + STATE(2293), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74215,7 +77065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74233,7 +77083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [4902] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74250,57 +77100,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1964), 1, + STATE(2141), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74312,7 +77162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74330,32 +77180,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, + [5031] = 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(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, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(1274), 42, + 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(1677), 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, @@ -74373,32 +77277,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [5160] = 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(1665), 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_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, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - [4586] = 32, + 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, + [5289] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74415,57 +77391,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1997), 1, + STATE(1663), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74477,7 +77453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74495,7 +77471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4715] = 32, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74512,57 +77488,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + ACTIONS(2554), 1, + sym_identifier, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1533), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1709), 1, sym_generic_type, - STATE(2102), 1, + STATE(1712), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74574,7 +77550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74592,7 +77568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4844] = 32, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74609,57 +77585,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + ACTIONS(2556), 1, + sym_identifier, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1542), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1691), 1, sym_generic_type, - STATE(1804), 1, + STATE(1699), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74671,7 +77647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74689,7 +77665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4973] = 32, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74706,57 +77682,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2236), 1, + STATE(1603), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74768,7 +77744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74786,7 +77762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5102] = 32, + [5805] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74803,57 +77779,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2302), 1, + STATE(1661), 1, sym__type, - STATE(2370), 1, + STATE(2327), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74865,7 +77841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74883,74 +77859,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5231] = 32, + [5934] = 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(902), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(771), 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(1007), 1, + STATE(1390), 1, sym_generic_type, - STATE(1100), 1, + STATE(2301), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2480), 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(1575), 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(2491), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74962,7 +77938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74980,7 +77956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5360] = 32, + [6063] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74997,57 +77973,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 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(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1551), 1, sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(1882), 1, + STATE(1648), 1, sym__type, - STATE(2301), 1, + STATE(1659), 1, + sym_generic_type, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75059,7 +78035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75077,7 +78053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5489] = 32, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75094,57 +78070,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1875), 1, + STATE(2196), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75156,7 +78132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75174,7 +78150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5618] = 32, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75191,57 +78167,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1678), 1, + STATE(1418), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75253,7 +78229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75271,7 +78247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5747] = 32, + [6450] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75288,57 +78264,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2550), 1, + ACTIONS(2325), 1, sym_identifier, - STATE(1201), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1216), 1, sym_for_lifetimes, - STATE(1529), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1647), 1, - sym__type, - STATE(1694), 1, + STATE(1390), 1, sym_generic_type, - STATE(2301), 1, + STATE(2117), 1, + sym__type, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75350,7 +78326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75368,104 +78344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5876] = 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(1099), 1, - sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, - sym_scoped_identifier, - STATE(2376), 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, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2491), 3, - sym_self, - sym_super, - sym_crate, - STATE(1075), 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(2471), 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, - [6005] = 32, + [6579] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75482,57 +78361,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2059), 1, + STATE(1932), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75544,7 +78423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75562,7 +78441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6134] = 32, + [6708] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75579,57 +78458,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1679), 1, + STATE(1613), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75641,7 +78520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75659,7 +78538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6263] = 32, + [6837] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75676,57 +78555,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1879), 1, + STATE(2109), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75738,7 +78617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75756,7 +78635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6392] = 32, + [6966] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75773,57 +78652,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1695), 1, + STATE(1646), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75835,7 +78714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75853,7 +78732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6521] = 32, + [7095] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75870,57 +78749,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1939), 1, + STATE(1696), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75932,7 +78811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75950,7 +78829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6650] = 32, + [7224] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75967,57 +78846,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1981), 1, + STATE(2089), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76029,7 +78908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76047,104 +78926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6779] = 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(1095), 1, - sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, - sym_scoped_identifier, - STATE(2376), 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, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2491), 3, - sym_self, - sym_super, - sym_crate, - STATE(1075), 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(2471), 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, - [6908] = 32, + [7353] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76161,57 +78943,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1601), 1, + STATE(2076), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76223,7 +79005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76241,7 +79023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7037] = 32, + [7482] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76258,57 +79040,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2171), 1, + STATE(2217), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76320,7 +79102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76338,7 +79120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7166] = 32, + [7611] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76355,57 +79137,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2288), 1, + STATE(1705), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76417,7 +79199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76435,74 +79217,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7295] = 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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(1681), 1, + STATE(1097), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76514,7 +79296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76532,7 +79314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7424] = 32, + [7869] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76549,57 +79331,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2138), 1, - sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2330), 1, + sym__type, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76611,7 +79393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76629,7 +79411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7553] = 32, + [7998] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76646,57 +79428,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1418), 1, + STATE(1662), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76708,7 +79490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76726,7 +79508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7682] = 32, + [8127] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76743,57 +79525,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1415), 1, - sym_lifetime, - STATE(1418), 1, + STATE(1723), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2411), 1, + STATE(2509), 1, + sym_lifetime, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76805,7 +79587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76823,7 +79605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7811] = 32, + [8256] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76840,57 +79622,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 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(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1549), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1687), 1, sym_generic_type, - STATE(1640), 1, + STATE(1713), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76902,7 +79684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76920,7 +79702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7940] = 32, + [8385] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76937,57 +79719,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1727), 1, + STATE(2029), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76999,7 +79781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77017,74 +79799,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8069] = 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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(1627), 1, + STATE(1098), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77096,7 +79878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77114,74 +79896,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8198] = 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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(1685), 1, + STATE(1126), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77193,7 +79975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77211,7 +79993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8327] = 32, + [8772] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77228,57 +80010,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1956), 1, + STATE(1987), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77290,7 +80072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77308,7 +80090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8456] = 32, + [8901] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77325,57 +80107,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2132), 1, + STATE(1949), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77387,7 +80169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77405,104 +80187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8585] = 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(1059), 1, - sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, - sym_scoped_identifier, - STATE(2376), 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, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2491), 3, - sym_self, - sym_super, - sym_crate, - STATE(1075), 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(2471), 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, - [8714] = 32, + [9030] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77519,57 +80204,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2261), 1, + STATE(1729), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77581,7 +80266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77599,7 +80284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8843] = 32, + [9159] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77616,57 +80301,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1900), 1, + STATE(1728), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77678,7 +80363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77696,7 +80381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8972] = 32, + [9288] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77713,57 +80398,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1894), 1, + STATE(2038), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77775,7 +80460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77793,7 +80478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9101] = 32, + [9417] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77810,57 +80495,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1394), 1, + STATE(2302), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77872,7 +80557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77890,74 +80575,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9230] = 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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(1708), 1, + STATE(1113), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77969,7 +80654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77987,7 +80672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9359] = 32, + [9675] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78004,57 +80689,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1680), 1, + STATE(1843), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78066,7 +80751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78084,7 +80769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9488] = 32, + [9804] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78101,57 +80786,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1784), 1, + STATE(1688), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78163,7 +80848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78181,7 +80866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9617] = 32, + [9933] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78198,57 +80883,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2108), 1, + STATE(1842), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78260,7 +80945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78278,7 +80963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9746] = 32, + [10062] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78295,57 +80980,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2061), 1, + STATE(1899), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78357,7 +81042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78375,74 +81060,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9875] = 32, + [10191] = 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(902), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(771), 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(1007), 1, + STATE(1390), 1, sym_generic_type, - STATE(1109), 1, + STATE(1895), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2480), 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(1575), 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(2491), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78454,7 +81139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78472,7 +81157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10004] = 32, + [10320] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78489,57 +81174,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1409), 1, + STATE(2011), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78551,7 +81236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78569,7 +81254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10133] = 32, + [10449] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78586,57 +81271,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1649), 1, + STATE(2125), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78648,7 +81333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78666,7 +81351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10262] = 33, + [10578] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78683,58 +81368,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 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(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1401), 1, + STATE(2156), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(906), 2, - sym_super, - sym_crate, - STATE(1575), 2, + STATE(1593), 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(922), 3, + sym_self, + sym_super, + sym_crate, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78746,7 +81430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78764,74 +81448,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(1683), 1, + STATE(1100), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78843,7 +81527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78861,74 +81545,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(1660), 1, + STATE(1099), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78940,7 +81624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78958,74 +81642,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [10965] = 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(2480), 1, sym_identifier, - ACTIONS(2463), 1, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, + ACTIONS(2488), 1, anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(2475), 1, + ACTIONS(2494), 1, anon_sym_fn, - ACTIONS(2477), 1, + ACTIONS(2496), 1, anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(2481), 1, + ACTIONS(2500), 1, anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(2487), 1, + ACTIONS(2506), 1, anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(2512), 1, sym_metavariable, - STATE(771), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(806), 1, sym_generic_type, - STATE(1060), 1, + STATE(1095), 1, sym__type, - STATE(1207), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(2318), 1, + STATE(2315), 1, sym_scoped_identifier, - STATE(2376), 1, + STATE(2391), 1, sym_function_modifiers, - STATE(2470), 1, + STATE(2394), 1, sym_lifetime, - STATE(2479), 1, + STATE(2494), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(2491), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79037,7 +81721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79055,7 +81739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [11094] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79072,57 +81756,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1646), 1, + STATE(1404), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + 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, + [11223] = 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(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(806), 1, + sym_generic_type, + STATE(1072), 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(1575), 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(906), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79134,7 +81915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79152,7 +81933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [11352] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79169,57 +81950,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1412), 1, + STATE(2067), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79231,7 +82012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79249,74 +82030,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [11481] = 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(902), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(771), 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(1007), 1, + STATE(1390), 1, sym_generic_type, - STATE(1103), 1, + STATE(1424), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2480), 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(1575), 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(2491), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79328,7 +82109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79346,7 +82127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [11610] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79363,57 +82144,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2090), 1, + STATE(1434), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79425,7 +82206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79443,171 +82224,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [11739] = 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, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(2473), 1, - anon_sym_default, - ACTIONS(2475), 1, + ACTIONS(700), 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(1098), 1, - sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, - sym_scoped_identifier, - STATE(2376), 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, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2491), 3, - sym_self, - sym_super, - sym_crate, - STATE(1075), 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(2471), 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, - [11425] = 32, - ACTIONS(77), 1, - anon_sym_LT, 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(902), 1, anon_sym_LPAREN, - ACTIONS(2465), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(2475), 1, - anon_sym_fn, - ACTIONS(2477), 1, - anon_sym_impl, - ACTIONS(2479), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(2481), 1, - anon_sym_BANG, - ACTIONS(2483), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2485), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + ACTIONS(924), 1, sym_metavariable, - STATE(771), 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(1007), 1, + STATE(1390), 1, sym_generic_type, - STATE(1101), 1, + STATE(1431), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2480), 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(1575), 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(2491), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79619,7 +82303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2471), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79637,7 +82321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11554] = 32, + [11868] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79654,57 +82338,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2221), 1, + STATE(2039), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79716,7 +82400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79734,86 +82418,32 @@ static const uint16_t ts_small_parse_table[] = { 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(886), 1, + [11997] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1260), 20, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(890), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(894), 1, - anon_sym_default, - ACTIONS(896), 1, - anon_sym_union, - ACTIONS(900), 1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(908), 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(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(1657), 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, + ACTIONS(1262), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79831,7 +82461,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11812] = 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, + [12068] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79848,57 +82503,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2223), 1, + STATE(1933), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79910,7 +82565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79928,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, @@ -79945,57 +82600,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + ACTIONS(2562), 1, + sym_self, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2101), 1, + STATE(1418), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80007,7 +82663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80025,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, @@ -80042,57 +82698,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1674), 1, + STATE(1409), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80104,7 +82760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80122,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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(2056), 1, + STATE(1110), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80201,7 +82857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80219,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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(1675), 1, + STATE(1112), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80298,7 +82954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80316,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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(2094), 1, + STATE(1117), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80395,7 +83051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80413,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, @@ -80430,57 +83086,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2197), 1, + STATE(2062), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80492,7 +83148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80510,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, @@ -80527,57 +83183,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2037), 1, + STATE(2176), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80589,7 +83245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80607,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, @@ -80624,57 +83280,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(2137), 1, + STATE(1660), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80686,7 +83342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80704,7 +83360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12973] = 32, + [13231] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80721,57 +83377,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1854), 1, + STATE(1819), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80783,7 +83439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80801,7 +83457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13102] = 32, + [13360] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80818,57 +83474,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1856), 1, + STATE(2083), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80880,7 +83536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80898,7 +83554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13231] = 32, + [13489] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80915,57 +83571,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1676), 1, + STATE(1867), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80977,7 +83633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80995,7 +83651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13360] = 32, + [13618] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81012,57 +83668,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1723), 1, + STATE(1717), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81074,7 +83730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81092,74 +83748,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13489] = 32, + [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(886), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2482), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2484), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + ACTIONS(2492), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2496), 1, + anon_sym_impl, + ACTIONS(2498), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2500), 1, + anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2504), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2506), 1, + anon_sym_dyn, + ACTIONS(2512), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(790), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(806), 1, sym_generic_type, - STATE(1895), 1, + STATE(1142), 1, sym__type, - STATE(2301), 1, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2315), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2391), 1, + sym_function_modifiers, + STATE(2394), 1, + sym_lifetime, + STATE(2494), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2495), 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, + STATE(1593), 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(2510), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1132), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81171,7 +83827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2490), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81189,7 +83845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13618] = 32, + [13876] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81206,57 +83862,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1722), 1, + STATE(1700), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81268,7 +83924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(908), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81286,7 +83942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13747] = 32, + [14005] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81303,57 +83959,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(902), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(906), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(910), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(912), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(924), 1, sym_metavariable, - ACTIONS(2315), 1, + ACTIONS(2325), 1, sym_identifier, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - STATE(1201), 1, + STATE(1216), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1365), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1390), 1, sym_generic_type, - STATE(1637), 1, + STATE(1865), 1, sym__type, - STATE(2301), 1, + STATE(2327), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2509), 1, sym_lifetime, - STATE(2411), 1, + STATE(2577), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1432), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81365,7 +84021,110 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + 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, + [14134] = 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, + 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, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [14200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + 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, @@ -81383,86 +84142,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [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(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(1673), 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_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, - ACTIONS(906), 3, + 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, - 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, + [14266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(412), 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_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(2568), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81480,86 +84206,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14005] = 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, + 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_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(2463), 1, + sym_self, + sym_super, + sym_crate, + [14332] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2572), 17, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(2465), 1, + anon_sym_LBRACE, 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_DASH_GT, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(2487), 1, - anon_sym_dyn, - ACTIONS(2493), 1, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - STATE(771), 1, - sym_scoped_type_identifier, - STATE(1007), 1, - sym_generic_type, - STATE(1062), 1, - sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, - sym_scoped_identifier, - STATE(2376), 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, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2491), 3, - sym_self, - sym_super, - sym_crate, - STATE(1075), 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(2471), 17, + ACTIONS(2570), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81577,29 +84268,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14134] = 3, + 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, + [14398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 17, + ACTIONS(1260), 15, 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, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2554), 40, + ACTIONS(1262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81619,50 +84331,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_SQUOTE, anon_sym_async, - anon_sym_break, anon_sym_const, - anon_sym_continue, anon_sym_default, + anon_sym_fn, anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, + anon_sym_impl, anon_sym_union, anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, + 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, - [14200] = 3, + [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(880), 17, - sym_raw_string_literal, - sym_float_literal, + 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, - anon_sym_DASH_GT, + 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, - 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(1752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81680,53 +84670,42 @@ 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, - [14266] = 3, + [14838] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + 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, - 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(1466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81744,51 +84723,42 @@ 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_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [14332] = 3, + [14894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 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(2560), 40, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81806,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(1272), 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(1274), 38, + ACTIONS(1318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81867,44 +84886,374 @@ 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(2566), 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(2570), 1, - anon_sym_BANG, - ACTIONS(2572), 1, - anon_sym_COLON_COLON, - ACTIONS(2574), 1, + ACTIONS(2584), 1, anon_sym_LT2, STATE(813), 1, sym_type_arguments, - STATE(858), 1, + STATE(822), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 17, + ACTIONS(2650), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81922,7 +85271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2564), 26, + ACTIONS(2648), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -81949,23 +85298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14530] = 8, - ACTIONS(2566), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_COLON_COLON, - ACTIONS(2574), 1, - anon_sym_LT2, - STATE(813), 1, - sym_type_arguments, - STATE(858), 1, - sym_parameters, + [15502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 17, + ACTIONS(2632), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81974,15 +85314,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(2576), 26, + ACTIONS(2634), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81992,12 +85331,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_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -82007,22 +85348,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(2566), 1, - anon_sym_LPAREN, - ACTIONS(2572), 1, - anon_sym_COLON_COLON, - ACTIONS(2574), 1, - anon_sym_LT2, - STATE(813), 1, - sym_type_arguments, - STATE(858), 1, - sym_parameters, + [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, @@ -82033,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(2580), 26, + ACTIONS(402), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82057,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, @@ -82066,75 +85402,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, - [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, - anon_sym_LPAREN, - ACTIONS(2574), 1, - anon_sym_LT2, - STATE(814), 1, - sym_type_arguments, - STATE(866), 1, - sym_parameters, + [15616] = 4, + ACTIONS(2654), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 17, + ACTIONS(2624), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82143,17 +85422,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(2584), 26, + 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, @@ -82161,12 +85438,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_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -82176,79 +85455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [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, - anon_sym_BANG, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, + [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), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2590), 16, + ACTIONS(394), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82262,12 +85481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 23, + ACTIONS(392), 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, @@ -82286,68 +85511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14902] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1328), 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(1330), 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, - [14958] = 5, - ACTIONS(2602), 1, - anon_sym_BANG, - ACTIONS(2604), 1, - anon_sym_COLON_COLON, + [15732] = 5, + ACTIONS(2660), 1, + anon_sym_SQUOTE, + STATE(1140), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 17, + ACTIONS(2658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82358,14 +85530,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(2598), 28, + ACTIONS(2656), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82378,12 +85548,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, @@ -82393,22 +85563,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, - [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, + [15791] = 4, + ACTIONS(2662), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 17, + ACTIONS(2632), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82417,17 +85583,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), 26, + ACTIONS(2634), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82435,12 +85599,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_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -82450,18 +85616,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, - [15082] = 5, - ACTIONS(2614), 1, - anon_sym_BANG, - ACTIONS(2616), 1, - anon_sym_COLON_COLON, + [15848] = 4, + ACTIONS(2664), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 17, + ACTIONS(2640), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82470,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(2610), 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, @@ -82489,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, @@ -82505,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, - [15142] = 5, - ACTIONS(2622), 1, - anon_sym_BANG, - ACTIONS(2624), 1, - anon_sym_COLON_COLON, + [15905] = 4, + ACTIONS(2666), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 17, + ACTIONS(2616), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82525,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(2618), 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, @@ -82544,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, @@ -82560,22 +85722,123 @@ 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, - [15202] = 3, + [15962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1848), 9, + ACTIONS(1954), 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(1850), 38, + 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, @@ -82614,19 +85877,169 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15258] = 7, - ACTIONS(2566), 1, + [16124] = 5, + ACTIONS(2670), 1, + anon_sym_LPAREN, + STATE(1125), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2672), 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), 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, + [16182] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 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(518), 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, + [16236] = 4, + ACTIONS(2674), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 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(2648), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2574), 1, - anon_sym_LT2, - STATE(814), 1, - sym_type_arguments, - STATE(866), 1, - sym_parameters, + 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, + [16292] = 4, + ACTIONS(2676), 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, @@ -82637,15 +86050,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, @@ -82661,6 +86073,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, @@ -82670,16 +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, - [15322] = 5, - ACTIONS(2634), 1, - anon_sym_BANG, - ACTIONS(2636), 1, + [16348] = 4, + ACTIONS(2678), 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, @@ -82690,14 +86102,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, @@ -82710,12 +86120,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,22 +86135,21 @@ 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, + [16404] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 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(1560), 38, + ACTIONS(1358), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82779,19 +86188,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15438] = 7, - ACTIONS(2570), 1, - anon_sym_BANG, - ACTIONS(2638), 1, - anon_sym_LBRACE, - ACTIONS(2640), 1, + [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, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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, + [16512] = 4, + ACTIONS(2680), 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(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82807,10 +86261,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 28, + ACTIONS(566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82836,16 +86291,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15502] = 4, - ACTIONS(2642), 1, - anon_sym_LBRACE, + [16568] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 16, + ACTIONS(550), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82859,10 +86311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2636), 29, + 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, @@ -82870,7 +86323,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, @@ -82889,15 +86341,63 @@ 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(2644), 1, anon_sym_else, - STATE(1055), 1, - sym_else_clause, + [16622] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1144), 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(1146), 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, + [16676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(396), 15, + ACTIONS(2684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82913,7 +86413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(394), 29, + ACTIONS(2682), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82925,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, @@ -82943,15 +86444,11 @@ 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, + [16730] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82967,7 +86464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 29, + ACTIONS(2686), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82979,6 +86476,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,16 +86495,15 @@ 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, - anon_sym_LBRACE, + [16784] = 4, + ACTIONS(2694), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2692), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83020,10 +86517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 29, + ACTIONS(2690), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83031,7 +86529,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, @@ -83050,14 +86547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15734] = 3, + [16840] = 4, + ACTIONS(2678), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83071,7 +86569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 30, + ACTIONS(2608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83083,7 +86581,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, @@ -83102,16 +86599,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, + [16896] = 5, + ACTIONS(2580), 1, + anon_sym_BANG, + ACTIONS(2696), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 16, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83125,7 +86623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2624), 29, + ACTIONS(566), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83136,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, @@ -83155,15 +86652,13 @@ 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, + [16954] = 4, + ACTIONS(2678), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(502), 15, + ACTIONS(2646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83179,7 +86674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(500), 29, + ACTIONS(2644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83209,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(2656), 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, @@ -83232,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, @@ -83243,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, @@ -83262,7 +86756,7 @@ 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, @@ -83313,317 +86807,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16016] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1656), 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(1658), 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(1880), 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(1882), 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] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1840), 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(1842), 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, - [16178] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1872), 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(1874), 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] = 3, - 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, - 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_SEMI, - anon_sym_macro_rules_BANG, - 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, + [17120] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + ACTIONS(1436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83631,7 +86819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1438), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83670,11 +86858,116 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16394] = 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(1904), 7, + 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(1472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83682,7 +86975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1906), 38, + ACTIONS(1474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83721,11 +87014,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16448] = 3, + [17342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1808), 7, + ACTIONS(1510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83733,7 +87026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1810), 38, + ACTIONS(1512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83772,11 +87065,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16502] = 3, + [17396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + ACTIONS(1514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83784,7 +87077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1802), 38, + ACTIONS(1516), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83823,64 +87116,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16556] = 5, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, - ACTIONS(2658), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 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(2588), 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, - [16614] = 3, + [17450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1900), 7, + ACTIONS(538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83888,7 +87128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(540), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83927,11 +87167,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16668] = 3, + [17504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1796), 7, + ACTIONS(548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83939,7 +87179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1798), 38, + ACTIONS(550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83978,11 +87218,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16722] = 3, + [17558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1868), 7, + ACTIONS(518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83990,7 +87230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1870), 38, + ACTIONS(520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84029,62 +87269,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16776] = 3, + [17612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(546), 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(544), 30, + ACTIONS(1538), 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, - [16830] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1540), 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, + [17666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1188), 7, + ACTIONS(1550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84092,7 +87332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1190), 38, + ACTIONS(1552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84131,11 +87371,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16884] = 3, + [17720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + ACTIONS(1570), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84143,7 +87383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1794), 38, + ACTIONS(1572), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84182,11 +87422,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16938] = 3, + [17774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + ACTIONS(582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84194,7 +87434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84233,11 +87473,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16992] = 3, + [17828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1892), 7, + ACTIONS(1586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84245,7 +87485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1894), 38, + ACTIONS(1588), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84284,11 +87524,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17046] = 3, + [17882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + ACTIONS(1602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84296,7 +87536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1604), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84335,11 +87575,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17100] = 3, + [17936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1784), 7, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84347,7 +87587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1786), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84386,11 +87626,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17154] = 3, + [17990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1780), 7, + ACTIONS(624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84398,7 +87638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1782), 38, + ACTIONS(626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84437,11 +87677,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17208] = 3, + [18044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84449,7 +87689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84488,11 +87728,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17262] = 3, + [18098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84500,7 +87740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84539,11 +87779,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17316] = 3, + [18152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84551,7 +87791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84590,113 +87830,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17370] = 3, + [18206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2662), 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(2660), 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, - [17424] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2666), 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(2664), 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, - [17478] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1776), 7, + ACTIONS(640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84704,7 +87842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84743,11 +87881,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17532] = 3, + [18260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + ACTIONS(652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84755,7 +87893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84794,11 +87932,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17586] = 3, + [18314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84806,7 +87944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84845,11 +87983,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17640] = 3, + [18368] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + 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(1740), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84857,7 +88047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(2004), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84896,11 +88086,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17694] = 3, + [18478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84908,7 +88098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84947,11 +88137,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17748] = 3, + [18532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1924), 7, + ACTIONS(540), 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(538), 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, + [18586] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84959,7 +88200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84998,11 +88239,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17802] = 3, + [18640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1952), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85010,7 +88251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1954), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85049,11 +88290,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17856] = 3, + [18694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85061,7 +88302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85100,11 +88341,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17910] = 3, + [18748] = 3, + 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), 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(1960), 7, + ACTIONS(1614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85112,7 +88404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1962), 38, + ACTIONS(1616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85151,11 +88443,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17964] = 3, + [18856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(544), 7, + ACTIONS(1590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85163,7 +88455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(546), 38, + ACTIONS(1592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85202,11 +88494,165 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18018] = 3, + [18910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(550), 7, + 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(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), 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, + [19074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85214,7 +88660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(552), 38, + ACTIONS(1134), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85253,11 +88699,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18072] = 3, + [19128] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + ACTIONS(1128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85265,7 +88711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1130), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85304,62 +88750,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18126] = 3, + [19182] = 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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1304), 7, + ACTIONS(1120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85367,7 +88762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(1122), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85406,11 +88801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18234] = 3, + [19236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1582), 7, + ACTIONS(1116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85418,7 +88813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(1118), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85457,13 +88852,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18288] = 4, - ACTIONS(2672), 1, + [19290] = 4, + ACTIONS(2732), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(2730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85479,7 +88874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 29, + ACTIONS(2728), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85509,11 +88904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18344] = 3, + [19346] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 7, + ACTIONS(1164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85521,7 +88916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(622), 38, + ACTIONS(1166), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85560,62 +88955,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18398] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2676), 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(2674), 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, - [18452] = 3, + [19400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1828), 7, + ACTIONS(1168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85623,7 +88967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(1170), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85662,11 +89006,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18506] = 3, + [19454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1820), 7, + ACTIONS(1172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85674,7 +89018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1822), 38, + ACTIONS(1174), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85713,11 +89057,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18560] = 3, + [19508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + ACTIONS(1184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85725,7 +89069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1186), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85764,11 +89108,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18614] = 3, + [19562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + ACTIONS(1188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85776,7 +89120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85815,62 +89159,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18668] = 3, + [19616] = 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, + ACTIONS(1192), 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(1194), 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, + [19670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(652), 7, + ACTIONS(1196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85878,7 +89222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(654), 38, + ACTIONS(1198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85917,63 +89261,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18776] = 4, - ACTIONS(2682), 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, - [18832] = 3, + [19724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 7, + ACTIONS(1200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85981,7 +89273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86020,11 +89312,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18886] = 3, + [19778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1272), 7, + ACTIONS(1204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86032,7 +89324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1274), 38, + ACTIONS(1206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86071,11 +89363,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18940] = 3, + [19832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86083,7 +89375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86122,62 +89414,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18994] = 3, + [19886] = 4, + ACTIONS(2738), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1632), 7, + ACTIONS(2736), 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(2734), 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, + [19942] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(676), 7, + ACTIONS(1232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86185,7 +89478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(678), 38, + ACTIONS(1234), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86224,11 +89517,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19102] = 3, + [19996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1628), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86236,7 +89529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1630), 38, + ACTIONS(2008), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86275,11 +89568,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19156] = 3, + [20050] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1624), 7, + ACTIONS(1236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86287,7 +89580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1626), 38, + ACTIONS(1238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86326,11 +89619,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19210] = 3, + [20104] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1420), 7, + ACTIONS(1248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86338,7 +89631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1422), 38, + ACTIONS(1250), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86377,63 +89670,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19264] = 4, + [20158] = 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, - 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, - [19320] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(574), 7, + ACTIONS(1252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86441,7 +89682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(576), 38, + ACTIONS(1254), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86480,63 +89721,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19374] = 4, - ACTIONS(2694), 1, - anon_sym_DASH_GT, + [20212] = 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), 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, - [19430] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1984), 7, + ACTIONS(1256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86544,7 +89733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1986), 38, + ACTIONS(1258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86583,11 +89772,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19484] = 3, + [20266] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2000), 7, + ACTIONS(1264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86595,7 +89784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2002), 38, + ACTIONS(1266), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86634,11 +89823,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19538] = 3, + [20320] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1098), 7, + ACTIONS(1268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86646,7 +89835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1100), 38, + ACTIONS(1270), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86685,63 +89874,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19592] = 4, - ACTIONS(2682), 1, - anon_sym_COLON_COLON, + [20374] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 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(2584), 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, - [19648] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(1272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86749,7 +89886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86788,11 +89925,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19702] = 3, + [20428] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + ACTIONS(1140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86800,7 +89937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1142), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86839,11 +89976,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19756] = 3, + [20482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86851,7 +89988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86890,63 +90027,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19810] = 4, - ACTIONS(2700), 1, - anon_sym_DASH_GT, - 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, - 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, - [19866] = 3, + [20536] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86954,7 +90039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1294), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86993,11 +90078,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19920] = 3, + [20590] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87005,7 +90090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87044,11 +90129,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19974] = 3, + [20644] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87056,7 +90141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87095,11 +90180,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20028] = 3, + [20698] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87107,7 +90192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87146,11 +90231,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20082] = 3, + [20752] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87158,7 +90243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87197,11 +90282,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20136] = 3, + [20806] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + ACTIONS(1312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87209,7 +90294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87248,114 +90333,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20190] = 3, + [20860] = 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(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_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, - [20244] = 4, - ACTIONS(2706), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2704), 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(2702), 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, - [20300] = 3, + anon_sym_COLON_COLON, + 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, + [20914] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(1324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87363,7 +90396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87402,11 +90435,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20354] = 3, + [20968] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1964), 7, + ACTIONS(1328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87414,7 +90447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1966), 38, + ACTIONS(1330), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87453,11 +90486,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20408] = 3, + [21022] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1956), 7, + ACTIONS(1332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87465,7 +90498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1958), 38, + ACTIONS(1334), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87504,11 +90537,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20462] = 3, + [21076] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + ACTIONS(1336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87516,7 +90549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1338), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87555,11 +90588,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20516] = 3, + [21130] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + ACTIONS(1152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87567,7 +90600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1552), 38, + ACTIONS(1154), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87606,11 +90639,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20570] = 3, + [21184] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(2742), 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(2740), 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, + [21238] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87618,7 +90702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1342), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87657,11 +90741,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20624] = 3, + [21292] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(1156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87669,7 +90753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1158), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87708,11 +90792,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20678] = 3, + [21346] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87720,7 +90804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87759,62 +90843,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20732] = 3, + [21400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 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(2708), 30, + ACTIONS(1364), 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, - [20786] = 3, + sym_metavariable, + ACTIONS(1366), 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, + [21454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(1368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87822,7 +90906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87861,11 +90945,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20840] = 3, + [21508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(1372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87873,7 +90957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87912,11 +90996,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20894] = 3, + [21562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87924,7 +91008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87963,11 +91047,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20948] = 3, + [21616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1436), 7, + ACTIONS(1160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87975,7 +91059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1162), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88014,11 +91098,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21002] = 3, + [21670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1176), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88026,7 +91110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1178), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88065,11 +91149,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21056] = 3, + [21724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1412), 7, + ACTIONS(1384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88077,7 +91161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1414), 38, + ACTIONS(1386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88116,11 +91200,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21110] = 3, + [21778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88128,7 +91212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88167,11 +91251,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21164] = 3, + [21832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1352), 7, + ACTIONS(1392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88179,7 +91263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1354), 38, + ACTIONS(1394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88218,62 +91302,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21218] = 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, + [21886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1276), 7, + ACTIONS(1396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88281,7 +91314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1278), 38, + ACTIONS(1398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88320,11 +91353,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21326] = 3, + [21940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1336), 7, + ACTIONS(1180), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88332,7 +91365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1338), 38, + ACTIONS(1182), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88371,11 +91404,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21380] = 3, + [21994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1884), 7, + ACTIONS(1400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88383,7 +91416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1886), 38, + ACTIONS(1402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88422,11 +91455,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21434] = 3, + [22048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1312), 7, + ACTIONS(1404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88434,7 +91467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1314), 38, + ACTIONS(1406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88473,11 +91506,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21488] = 3, + [22102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88485,7 +91518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88524,11 +91557,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21542] = 3, + [22156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1408), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88536,7 +91569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1410), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88575,11 +91608,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21596] = 3, + [22210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1280), 7, + ACTIONS(1216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88587,7 +91620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1282), 38, + ACTIONS(1218), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88626,11 +91659,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21650] = 3, + [22264] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1200), 7, + ACTIONS(1412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88638,7 +91671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1202), 38, + ACTIONS(1414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88677,11 +91710,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21704] = 3, + [22318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1102), 7, + ACTIONS(1220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88689,7 +91722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1104), 38, + ACTIONS(1222), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88728,11 +91761,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21758] = 3, + [22372] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1192), 7, + ACTIONS(1416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88740,7 +91773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1194), 38, + ACTIONS(1418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88779,11 +91812,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21812] = 3, + [22426] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88791,7 +91824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88830,11 +91863,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21866] = 3, + [22480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, + ACTIONS(1424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88842,7 +91875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1108), 38, + ACTIONS(1426), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88881,11 +91914,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21920] = 3, + [22534] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88893,7 +91926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88932,11 +91965,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21974] = 3, + [22588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + ACTIONS(1440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88944,7 +91977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(1442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88983,11 +92016,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22028] = 3, + [22642] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1620), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88995,7 +92028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1622), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89034,11 +92067,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22082] = 3, + [22696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(1224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89046,7 +92079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(1226), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89085,11 +92118,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22136] = 3, + [22750] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89097,7 +92130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1116), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89136,11 +92169,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22190] = 3, + [22804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89148,7 +92181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89187,11 +92220,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22244] = 3, + [22858] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1292), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89199,7 +92232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1294), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89238,11 +92271,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22298] = 3, + [22912] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89250,7 +92283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1230), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89289,62 +92322,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22352] = 3, + [22966] = 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, + ACTIONS(1460), 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, - [22406] = 3, + sym_metavariable, + ACTIONS(1462), 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, + [23020] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89352,7 +92385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1242), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89391,11 +92424,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22460] = 3, + [23074] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89403,7 +92436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1524), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89442,63 +92475,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22514] = 4, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, + [23128] = 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, - 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, - [22570] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1134), 7, + ACTIONS(1244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89506,7 +92487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(1246), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89545,11 +92526,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22624] = 3, + [23182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1340), 7, + ACTIONS(1530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89557,7 +92538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1342), 38, + ACTIONS(1532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89596,11 +92577,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22678] = 3, + [23236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + ACTIONS(1546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89608,7 +92589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89647,62 +92628,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22732] = 3, + [23290] = 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(1276), 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(1278), 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, + [23344] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(1554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89710,7 +92691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89749,11 +92730,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22840] = 3, + [23398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1256), 7, + ACTIONS(1280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89761,7 +92742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1258), 38, + ACTIONS(1282), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89800,62 +92781,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22894] = 3, + [23452] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 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(1564), 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, - [22948] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1360), 7, + ACTIONS(1558), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89863,7 +92793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1362), 38, + ACTIONS(1560), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89902,11 +92832,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23002] = 3, + [23506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1376), 7, + ACTIONS(1320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89914,7 +92844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1378), 38, + ACTIONS(1322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89953,11 +92883,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23056] = 3, + [23560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1380), 7, + ACTIONS(1562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89965,7 +92895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1382), 38, + ACTIONS(1564), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90004,63 +92934,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23110] = 4, - 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, - 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, - [23166] = 3, + [23614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + ACTIONS(1574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90068,7 +92946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1426), 38, + ACTIONS(1576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90107,11 +92985,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23220] = 3, + [23668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1570), 7, + ACTIONS(1344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90119,7 +92997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1572), 38, + ACTIONS(1346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90158,113 +93036,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23274] = 3, + [23722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1440), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2746), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1442), 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, - [23328] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1640), 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(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(1642), 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, - [23382] = 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(1652), 7, + ACTIONS(1594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90272,7 +93099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1596), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90311,11 +93138,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23436] = 3, + [23830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90323,7 +93150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1350), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90362,11 +93189,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23490] = 3, + [23884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90374,7 +93201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1600), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90413,11 +93240,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23544] = 3, + [23938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1748), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90425,7 +93252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90464,11 +93291,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23598] = 3, + [23992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90476,7 +93303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90515,11 +93342,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23652] = 3, + [24046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1752), 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_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, + [24100] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90527,7 +93405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1624), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90566,11 +93444,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23706] = 3, + [24154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1760), 7, + ACTIONS(1626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90578,7 +93456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1762), 38, + ACTIONS(1628), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90617,11 +93495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23760] = 3, + [24208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90629,7 +93507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1632), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90668,11 +93546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23814] = 3, + [24262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90680,7 +93558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1636), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90719,63 +93597,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, + [24316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90783,7 +93609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90822,11 +93648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23978] = 3, + [24370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + ACTIONS(1674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90834,7 +93660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1862), 38, + ACTIONS(1676), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90873,11 +93699,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24032] = 3, + [24424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + ACTIONS(1678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90885,7 +93711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90924,11 +93750,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24086] = 3, + [24478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90936,7 +93762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90975,11 +93801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24140] = 3, + [24532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1094), 7, + ACTIONS(1690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90987,7 +93813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1096), 38, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91026,11 +93852,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24194] = 3, + [24586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91038,7 +93864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91077,11 +93903,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24248] = 3, + [24640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91089,7 +93915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91128,11 +93954,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24302] = 3, + [24694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91140,7 +93966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91179,11 +94005,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24356] = 3, + [24748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91191,7 +94017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1310), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91230,11 +94056,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24410] = 3, + [24802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2004), 7, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91242,7 +94068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2006), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91281,11 +94107,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24464] = 3, + [24856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 7, + ACTIONS(1710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91293,7 +94119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1998), 38, + ACTIONS(1712), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91332,11 +94158,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24518] = 3, + [24910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1988), 7, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91344,7 +94170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1990), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91383,11 +94209,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24572] = 3, + [24964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1976), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91395,7 +94221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1978), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91434,62 +94260,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24626] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2732), 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(2730), 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, - [24680] = 3, + [25018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91497,7 +94272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91536,11 +94311,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24734] = 3, + [25072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1288), 7, + ACTIONS(1380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91548,7 +94323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1290), 38, + ACTIONS(1382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91587,63 +94362,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24788] = 4, - ACTIONS(2734), 1, - anon_sym_COLON_COLON, - 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, - 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, - [24844] = 3, + [25126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91651,7 +94374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1818), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91690,11 +94413,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24898] = 3, + [25180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1636), 7, + ACTIONS(1468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91702,7 +94425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1638), 38, + ACTIONS(1470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91741,11 +94464,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24952] = 3, + [25234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91753,7 +94476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1774), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91792,11 +94515,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25006] = 3, + [25288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91804,7 +94527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91843,11 +94566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25060] = 3, + [25342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(524), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91855,7 +94578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(526), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91894,11 +94617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25114] = 3, + [25396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1756), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91906,7 +94629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91945,62 +94668,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25168] = 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, + [25450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1644), 7, + ACTIONS(1766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92008,7 +94680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1768), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92047,11 +94719,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25276] = 3, + [25504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92059,7 +94731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92098,63 +94770,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25330] = 4, - ACTIONS(2744), 1, - anon_sym_DASH_GT, + [25558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 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(2740), 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, - [25386] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1372), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92162,7 +94782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1374), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92201,63 +94821,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25440] = 4, - ACTIONS(2750), 1, - anon_sym_DASH_GT, + [25612] = 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(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92265,7 +94833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92304,11 +94872,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25550] = 3, + [25666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92316,7 +94884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92355,11 +94923,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25604] = 3, + [25720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92367,7 +94935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92406,11 +94974,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25658] = 3, + [25774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1844), 7, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92418,7 +94986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1846), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92457,11 +95025,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25712] = 3, + [25828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92469,7 +95037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92508,11 +95076,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25766] = 3, + [25882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1196), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92520,7 +95088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1198), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92559,11 +95127,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25820] = 3, + [25936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1980), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92571,7 +95139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1982), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92610,11 +95178,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25874] = 3, + [25990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92622,7 +95190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92661,11 +95229,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25928] = 3, + [26044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1972), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92673,7 +95241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1974), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92712,11 +95280,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25982] = 3, + [26098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92724,7 +95292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92763,11 +95331,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26036] = 3, + [26152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(1848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92775,7 +95343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92814,11 +95382,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26090] = 3, + [26206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92826,7 +95394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92865,63 +95433,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26144] = 4, - ACTIONS(2756), 1, - anon_sym_DASH_GT, + [26260] = 3, 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, - [26200] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92929,7 +95445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1878), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92968,11 +95484,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26254] = 3, + [26314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92980,7 +95496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93019,11 +95535,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26308] = 3, + [26368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1388), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93031,7 +95547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1390), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93070,11 +95586,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26362] = 3, + [26422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1384), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93082,7 +95598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1386), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93121,11 +95637,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26416] = 3, + [26476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1368), 7, + ACTIONS(1526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93133,7 +95649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1370), 38, + ACTIONS(1528), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93172,11 +95688,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26470] = 3, + [26530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1364), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93184,7 +95700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1366), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93223,11 +95739,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26524] = 3, + [26584] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1356), 7, + ACTIONS(1534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93235,7 +95751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1358), 38, + ACTIONS(1536), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93274,11 +95790,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26578] = 3, + [26638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1332), 7, + 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), 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, + [26692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93286,7 +95853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1334), 38, + ACTIONS(1544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93325,11 +95892,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26632] = 3, + [26746] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1324), 7, + ACTIONS(1566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93337,7 +95904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1326), 38, + ACTIONS(1568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93376,11 +95943,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26686] = 3, + [26800] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 7, + ACTIONS(1108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93388,7 +95955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1110), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93427,11 +95994,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26740] = 3, + [26854] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1320), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93439,7 +96006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1322), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93478,11 +96045,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26794] = 3, + [26908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1316), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93490,7 +96057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1318), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93529,11 +96096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26848] = 3, + [26962] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1284), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93541,7 +96108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1286), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93580,11 +96147,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26902] = 3, + [27016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1268), 7, + ACTIONS(1578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93592,7 +96159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1270), 38, + ACTIONS(1580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93631,11 +96198,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26956] = 3, + [27070] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1264), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93643,7 +96210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1266), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93682,11 +96249,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27010] = 3, + [27124] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1252), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93694,7 +96261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1254), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93733,11 +96300,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27064] = 3, + [27178] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + ACTIONS(1582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93745,7 +96312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93784,62 +96351,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27118] = 3, + [27232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + ACTIONS(2758), 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(2756), 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(1246), 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, - [27172] = 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, + [27286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + ACTIONS(1618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93847,7 +96414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1620), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93886,11 +96453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27226] = 3, + [27340] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(1638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93898,7 +96465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1640), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93937,11 +96504,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27280] = 3, + [27394] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1142), 7, + ACTIONS(2762), 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(2760), 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, + [27448] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93949,7 +96567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93988,11 +96606,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27334] = 3, + [27502] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94000,7 +96618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1648), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94039,11 +96657,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27388] = 3, + [27556] = 4, + ACTIONS(2768), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + 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(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94051,7 +96721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1952), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94090,11 +96760,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27442] = 3, + [27666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1928), 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_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, + [27720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94102,7 +96823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94141,11 +96862,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27496] = 3, + [27774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94153,7 +96874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1964), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94192,11 +96913,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27550] = 3, + [27828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + 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(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94204,7 +96976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1922), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94243,11 +97015,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27604] = 3, + [27936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1864), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94255,7 +97027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1866), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94294,11 +97066,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27658] = 3, + [27990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 17, + ACTIONS(2780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94309,14 +97081,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(2610), 28, + ACTIONS(2778), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94328,13 +97098,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, @@ -94344,12 +97115,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, - [27712] = 3, + [28044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1216), 7, + ACTIONS(1104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94357,7 +97129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(1106), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94396,11 +97168,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27766] = 3, + [28098] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 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, @@ -94408,7 +97232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(2016), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94447,11 +97271,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27820] = 3, + [28208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94459,7 +97283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1206), 38, + ACTIONS(2012), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94498,63 +97322,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27874] = 4, - ACTIONS(2682), 1, - anon_sym_COLON_COLON, - 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, - 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, - [27930] = 3, + [28262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1876), 7, + ACTIONS(1650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94562,7 +97334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1878), 38, + ACTIONS(1652), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94601,11 +97373,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27984] = 3, + [28316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1888), 7, + ACTIONS(1654), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94613,7 +97385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1890), 38, + ACTIONS(1656), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94652,11 +97424,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28038] = 3, + [28370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1184), 7, + ACTIONS(1658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94664,7 +97436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1186), 38, + ACTIONS(1660), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94703,11 +97475,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28092] = 3, + [28424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94715,7 +97487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(2000), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94754,62 +97526,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28146] = 3, + [28478] = 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(1994), 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(1996), 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, + [28532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94817,7 +97589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94856,11 +97628,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28254] = 3, + [28586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1968), 7, + ACTIONS(1662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94868,7 +97640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1970), 38, + ACTIONS(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94907,11 +97679,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28308] = 3, + [28640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1992), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94919,7 +97691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1994), 38, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94958,11 +97730,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28362] = 3, + [28694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1542), 7, + ACTIONS(1682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94970,7 +97742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1544), 38, + ACTIONS(1684), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95009,11 +97781,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28416] = 3, + [28748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95021,7 +97793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95060,117 +97832,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, + [28802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95178,7 +97844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95217,62 +97883,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, + [28856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(1758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95280,7 +97895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95319,62 +97934,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28748] = 3, - 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, - 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, - [28802] = 3, + [28910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1296), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95382,7 +97946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1298), 38, + ACTIONS(1968), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95421,11 +97985,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28856] = 3, + [28964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1260), 7, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95433,7 +97997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1262), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95472,11 +98036,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28910] = 3, + [29018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95484,7 +98048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95523,11 +98087,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28964] = 3, + [29072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95535,7 +98099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95574,11 +98138,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29018] = 3, + [29126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95586,7 +98150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95625,11 +98189,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29072] = 3, + [29180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95637,7 +98201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1936), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95676,11 +98240,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29126] = 3, + [29234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1392), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95688,7 +98252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1394), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95727,11 +98291,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29180] = 3, + [29288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1396), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95739,7 +98303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1398), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95778,11 +98342,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29234] = 3, + [29342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1400), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95790,7 +98354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1402), 38, + ACTIONS(1882), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95829,11 +98393,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29288] = 3, + [29396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95841,7 +98405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95880,11 +98444,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29342] = 3, + [29450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1404), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95892,7 +98456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1406), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95931,11 +98495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29396] = 3, + [29504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1416), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95943,7 +98507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1418), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95982,11 +98546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29450] = 3, + [29558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95994,7 +98558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1434), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96033,11 +98597,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29504] = 3, + [29612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96045,7 +98609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96084,11 +98648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29558] = 3, + [29666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96096,7 +98660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96135,11 +98699,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29612] = 3, + [29720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96147,109 +98711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 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, - [29666] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1496), 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(1498), 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, - [29720] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1708), 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(1710), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96292,7 +98754,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96300,7 +98762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1842), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96343,7 +98805,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96351,7 +98813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1838), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96394,7 +98856,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96402,7 +98864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96441,13 +98903,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(2786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96463,10 +98923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 28, + ACTIONS(2784), 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 +98953,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(2790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96512,7 +98973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2405), 29, + ACTIONS(2788), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96542,11 +99003,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(2397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96562,7 +99023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 29, + ACTIONS(2399), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96592,11 +99053,11 @@ 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] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 15, + ACTIONS(2794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96612,7 +99073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2776), 29, + ACTIONS(2792), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96642,61 +99103,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30150] = 3, + [30148] = 4, + ACTIONS(2800), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(646), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2798), 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(644), 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, + 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, [30203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(642), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96712,7 +99174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2780), 29, + ACTIONS(640), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96746,7 +99208,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, + ACTIONS(2804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96762,7 +99224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(628), 29, + ACTIONS(2802), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96796,7 +99258,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(2808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96812,7 +99274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 29, + ACTIONS(2806), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96846,7 +99308,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(642), 15, + ACTIONS(658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96862,7 +99324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(640), 29, + ACTIONS(656), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96892,61 +99354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30415] = 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), 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, - [30468] = 3, + [30415] = 4, + ACTIONS(2602), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(2596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96962,11 +99376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 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, @@ -96992,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, - [30521] = 3, + [30470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 15, + ACTIONS(2812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97012,7 +99425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2788), 29, + ACTIONS(2810), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97042,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, - [30574] = 3, + [30523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 15, + ACTIONS(622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97062,7 +99475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2792), 29, + ACTIONS(620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97092,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, - [30627] = 3, + [30576] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 15, + ACTIONS(2816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97112,7 +99525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2796), 29, + ACTIONS(2814), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97142,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, - [30680] = 3, + [30629] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 15, + ACTIONS(2820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97162,7 +99575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2800), 29, + ACTIONS(2818), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97192,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, - [30733] = 3, + [30682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97212,7 +99625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2804), 29, + ACTIONS(2712), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97242,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, - [30786] = 3, + [30735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(678), 15, + ACTIONS(2824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97262,7 +99675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(676), 29, + ACTIONS(2822), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97292,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, - [30839] = 3, + [30788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 15, + ACTIONS(2828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97312,7 +99725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2808), 29, + ACTIONS(2826), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97342,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, - [30892] = 3, + [30841] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 15, + ACTIONS(2417), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97362,7 +99775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2808), 29, + ACTIONS(2419), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97392,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, - [30945] = 3, + [30894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2768), 15, + ACTIONS(322), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97412,7 +99825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 29, + ACTIONS(320), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97442,61 +99855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30998] = 3, + [30947] = 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_metavariable, - ACTIONS(2812), 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, - [31051] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2818), 15, + ACTIONS(2832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97512,7 +99875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2816), 29, + ACTIONS(2830), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97542,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, - [31104] = 3, + [31000] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(618), 15, + ACTIONS(630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97562,7 +99925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(616), 29, + ACTIONS(628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97592,11 +99955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31157] = 3, + [31053] = 4, + ACTIONS(2834), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2822), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97612,11 +99977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2820), 29, + ACTIONS(566), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -97642,11 +100006,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, + [31108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 15, + ACTIONS(2838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97662,7 +100026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2824), 29, + ACTIONS(2836), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97692,11 +100056,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, + [31161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(634), 15, + ACTIONS(2842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97712,7 +100076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(632), 29, + ACTIONS(2840), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97742,61 +100106,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31316] = 3, + [31214] = 4, + ACTIONS(2848), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2846), 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(2828), 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, - [31369] = 3, + 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(670), 15, + ACTIONS(626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97812,7 +100177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 29, + ACTIONS(624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97842,61 +100207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31422] = 3, + [31322] = 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, - 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(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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2391), 15, + ACTIONS(2852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97912,7 +100227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2393), 29, + ACTIONS(2850), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97942,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, - [31528] = 3, + [31375] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 15, + ACTIONS(2373), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97962,7 +100277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(2375), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97992,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, - [31581] = 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(2838), 15, + 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(2874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98012,7 +100395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2836), 29, + ACTIONS(2872), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98042,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, - [31634] = 3, + [31570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2842), 15, + ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98062,7 +100445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2840), 29, + ACTIONS(676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98092,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, - [31687] = 3, + [31623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2846), 15, + ACTIONS(2878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98112,7 +100495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2844), 29, + ACTIONS(2876), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98142,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, - [31740] = 3, + [31676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2850), 15, + ACTIONS(2882), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98162,7 +100545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2848), 29, + ACTIONS(2880), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98192,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, - [31793] = 3, + [31729] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2854), 15, + ACTIONS(2886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98212,7 +100595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2852), 29, + ACTIONS(2884), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98242,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, - [31846] = 3, + [31782] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(2890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98262,7 +100645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 29, + ACTIONS(2888), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98292,111 +100675,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31899] = 3, + [31835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2858), 12, + ACTIONS(634), 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(632), 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, + [31888] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2894), 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(2892), 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, + [31941] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2898), 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(2896), 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, + [31994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(2902), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98412,7 +100845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(2900), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98442,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, - [32058] = 3, + [32047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(2421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98462,7 +100895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(672), 29, + ACTIONS(2423), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98492,11 +100925,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, + [32100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(626), 15, + ACTIONS(2906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98512,7 +100945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(624), 29, + ACTIONS(2904), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98542,11 +100975,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, + [32153] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(622), 15, + ACTIONS(2910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98562,7 +100995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(620), 29, + ACTIONS(2908), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98592,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, - [32217] = 3, + [32206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 15, + ACTIONS(2914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98612,7 +101045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(612), 29, + ACTIONS(2912), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98642,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, - [32270] = 3, + [32259] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 15, + ACTIONS(2918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98662,7 +101095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2864), 29, + ACTIONS(2916), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98692,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, - [32323] = 3, + [32312] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, + ACTIONS(2922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98712,7 +101145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(664), 29, + ACTIONS(2920), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98742,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, - [32376] = 3, + [32365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 15, + ACTIONS(592), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98762,7 +101195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(608), 29, + ACTIONS(590), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98792,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, - [32429] = 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(650), 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, @@ -98812,7 +101313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(648), 29, + ACTIONS(586), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98842,107 +101343,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32482] = 3, + [32560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2870), 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(2868), 29, + ACTIONS(2928), 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, - [32535] = 21, - ACTIONS(77), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, 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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2874), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - 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(2926), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98960,11 +101378,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, + [32613] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 15, + ACTIONS(2646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98980,7 +101413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2890), 29, + ACTIONS(2644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99010,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, - [32677] = 3, + [32666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 15, + ACTIONS(2932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99030,7 +101463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2894), 29, + ACTIONS(2930), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99060,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, - [32730] = 3, + [32719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2900), 15, + ACTIONS(2936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99080,7 +101513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2898), 29, + ACTIONS(2934), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99110,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, - [32783] = 3, + [32772] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2904), 15, + ACTIONS(2940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99130,7 +101563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2902), 29, + ACTIONS(2938), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99160,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, - [32836] = 3, + [32825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 15, + ACTIONS(2944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99180,7 +101613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2906), 29, + ACTIONS(2942), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99210,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, - [32889] = 3, + [32878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2912), 15, + ACTIONS(2948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99230,7 +101663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2910), 29, + ACTIONS(2946), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99260,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, - [32942] = 3, + [32931] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2916), 15, + ACTIONS(2952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99280,7 +101713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2914), 29, + ACTIONS(2950), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99310,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, - [32995] = 3, + [32984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2920), 15, + ACTIONS(2956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99330,7 +101763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2918), 29, + ACTIONS(2954), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99360,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, - [33048] = 3, + [33037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 15, + ACTIONS(596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99380,7 +101813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2922), 29, + ACTIONS(594), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99410,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, - [33101] = 3, + [33090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2928), 15, + ACTIONS(2960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99430,7 +101863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2926), 29, + ACTIONS(2958), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99460,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, - [33154] = 3, + [33143] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(322), 15, + ACTIONS(600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99480,7 +101913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(320), 29, + ACTIONS(598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99510,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, - [33207] = 3, + [33196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(2964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99530,7 +101963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 29, + ACTIONS(2962), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99560,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, - [33260] = 3, + [33249] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 15, + ACTIONS(584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99580,7 +102013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 29, + ACTIONS(582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99610,79 +102043,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, - 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, + [33302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2934), 15, + ACTIONS(2956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99698,7 +102063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2932), 29, + ACTIONS(2954), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99728,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, - [33455] = 3, + [33355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2938), 15, + ACTIONS(2968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99748,7 +102113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2936), 29, + ACTIONS(2966), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99778,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, - [33508] = 3, + [33408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2347), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99798,7 +102163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2349), 29, + ACTIONS(636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99828,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, - [33561] = 3, + [33461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2942), 15, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99848,7 +102213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2940), 29, + ACTIONS(2608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99878,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, - [33614] = 3, + [33514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(606), 15, + ACTIONS(2972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99898,7 +102263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(604), 29, + ACTIONS(2970), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99928,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, - [33667] = 3, + [33567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2946), 15, + ACTIONS(670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99948,7 +102313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2944), 29, + ACTIONS(668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99978,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, - [33720] = 3, + [33620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2419), 15, + ACTIONS(2976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99998,7 +102363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2421), 29, + ACTIONS(2974), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100028,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, - [33773] = 3, + [33673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2950), 15, + ACTIONS(2980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100048,7 +102413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2948), 29, + ACTIONS(2978), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100078,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, - [33826] = 3, + [33726] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 15, + ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100098,7 +102463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2952), 29, + ACTIONS(664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100128,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, - [33879] = 3, + [33779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100148,7 +102513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2982), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100178,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, - [33932] = 3, + [33832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2958), 15, + ACTIONS(2988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100198,7 +102563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2956), 29, + ACTIONS(2986), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100228,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, - [33985] = 3, + [33885] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2962), 15, + ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100248,7 +102613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2960), 29, + ACTIONS(648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100278,111 +102643,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34038] = 3, + [33938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 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(2964), 29, + ACTIONS(2992), 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, - [34091] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2970), 15, - anon_sym_PLUS, 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, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2968), 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, - [34144] = 3, + 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(2974), 15, + ACTIONS(2650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100398,7 +102713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2972), 29, + ACTIONS(2648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100428,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, - [34197] = 3, + [34044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, + ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100448,7 +102763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(582), 29, + ACTIONS(574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100478,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, - [34250] = 3, + [34097] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 15, + ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100498,7 +102813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2976), 29, + ACTIONS(644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100528,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, - [34303] = 3, + [34150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2982), 15, + ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100548,7 +102863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2980), 29, + ACTIONS(660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100578,62 +102893,161 @@ 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, + [34203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2672), 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, + 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, + [34256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2986), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(674), 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(672), 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_POUND, + 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, + [34309] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2996), 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(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, - [34411] = 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2994), 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, + [34362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2992), 15, + ACTIONS(3000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100649,7 +103063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2990), 29, + ACTIONS(2998), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100679,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, - [34464] = 3, + [34415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 15, + ACTIONS(3004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100699,7 +103113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2994), 29, + ACTIONS(3002), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100729,13 +103143,11 @@ 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, - anon_sym_COLON_COLON, + [34468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, + ACTIONS(3008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100751,10 +103163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 28, + ACTIONS(3006), 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 +103193,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, + [34521] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3000), 15, + ACTIONS(3012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100800,7 +103213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2998), 29, + ACTIONS(3010), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100830,11 +103243,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, + [34574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3004), 15, + ACTIONS(3016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100850,7 +103263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3002), 29, + ACTIONS(3014), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100880,11 +103293,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, + [34627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3008), 15, + ACTIONS(3020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100900,7 +103313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3006), 29, + ACTIONS(3018), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100930,11 +103343,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34731] = 3, + [34680] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(576), 15, + ACTIONS(3024), 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(3022), 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, + [34733] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3028), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100950,7 +103413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(574), 29, + ACTIONS(3026), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100980,11 +103443,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34784] = 3, + [34786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3032), 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(3030), 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, + [34839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3012), 12, + ACTIONS(3036), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -100997,7 +103510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3010), 32, + ACTIONS(3034), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101030,11 +103543,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34837] = 3, + [34892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3016), 15, + ACTIONS(3040), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101050,7 +103563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3014), 29, + ACTIONS(3038), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101080,11 +103593,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, + [34945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(3044), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101100,7 +103613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 29, + ACTIONS(3042), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101130,11 +103643,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, + [34998] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3020), 15, + ACTIONS(3048), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101150,7 +103663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3018), 29, + ACTIONS(3046), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101180,66 +103693,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34996] = 3, + [35051] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3024), 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(3022), 29, + ACTIONS(3052), 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, - [35049] = 5, - ACTIONS(3026), 1, + 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(3050), 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, + [35104] = 5, + ACTIONS(3054), 1, anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - ACTIONS(2507), 9, + ACTIONS(2475), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -101249,7 +103762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2505), 32, + ACTIONS(2473), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101282,11 +103795,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35106] = 3, + [35161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3031), 15, + ACTIONS(654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101302,7 +103815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3029), 29, + ACTIONS(652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101332,62 +103845,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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3035), 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(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, [35214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3041), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101403,7 +103865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3039), 29, + ACTIONS(570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101437,96 +103899,96 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(560), 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(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, + 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(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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, [35320] = 17, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3059), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3047), 19, + ACTIONS(3057), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101546,50 +104008,39 @@ 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, + [35400] = 12, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 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, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 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, + ACTIONS(3091), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101599,6 +104050,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, @@ -101609,62 +104066,59 @@ 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, - anon_sym_LBRACK, + [35470] = 17, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 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_DOT, + ACTIONS(3095), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3083), 7, + ACTIONS(3093), 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(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101675,11 +104129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35566] = 3, + [35550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2986), 14, + ACTIONS(2798), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -101694,7 +104148,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2984), 29, + ACTIONS(2796), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101724,75 +104178,26 @@ static const uint16_t ts_small_parse_table[] = { 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, + [35602] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3073), 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(3087), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(3071), 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, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -101800,16 +104205,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(3097), 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,26 +104231,26 @@ 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, - ACTIONS(3063), 1, - anon_sym_DOT_DOT, - ACTIONS(3077), 1, - anon_sym_DOT, + [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(3061), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3097), 13, + 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, @@ -101853,16 +104258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3095), 25, + 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, @@ -101879,116 +104284,99 @@ 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, - 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(3085), 1, - anon_sym_QMARK, - ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, + [35722] = 3, 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, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, - 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(3099), 7, - anon_sym_SEMI, + ACTIONS(2846), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - 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, - [35876] = 17, - ACTIONS(3049), 1, 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, + [35774] = 17, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(3105), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3101), 19, + ACTIONS(3103), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102008,27 +104396,27 @@ 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, + [35854] = 9, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 8, + ACTIONS(3091), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102037,7 +104425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3105), 25, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102063,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, - [36020] = 7, - ACTIONS(3049), 1, + [35918] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3111), 13, + ACTIONS(3109), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102090,7 +104478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 25, + ACTIONS(3107), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102116,22 +104504,25 @@ 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, + [35978] = 8, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3115), 13, - anon_sym_PLUS, + ACTIONS(3063), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3091), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102141,9 +104532,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(3113), 25, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102169,45 +104558,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36140] = 17, + [36040] = 17, ACTIONS(288), 1, anon_sym_EQ, - ACTIONS(3049), 1, - anon_sym_LBRACK, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -102232,38 +104621,34 @@ 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, - anon_sym_LBRACK, + [36120] = 7, ACTIONS(3059), 1, - anon_sym_AMP, - ACTIONS(3063), 1, + anon_sym_LBRACK, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3071), 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(3091), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3107), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3105), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102289,35 +104674,103 @@ 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, + [36180] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3063), 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(3061), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 10, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + 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, + 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, + [36260] = 13, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - anon_sym_DASH, + ACTIONS(3073), 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(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(3105), 25, + ACTIONS(3063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3091), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102343,34 +104796,103 @@ 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, + [36332] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3063), 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(3061), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 13, + 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(3115), 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, + [36418] = 10, + 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(3085), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3063), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3091), 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(3105), 25, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102396,50 +104918,50 @@ 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, - anon_sym_LBRACK, + [36484] = 17, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3119), 1, + ACTIONS(3127), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3117), 19, + ACTIONS(3125), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102459,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, - [36490] = 13, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [36564] = 16, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3069), 1, + ACTIONS(3075), 1, + anon_sym_AMP_AMP, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3091), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 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(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, @@ -102502,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, @@ -102518,37 +105043,34 @@ 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, + [36642] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3071), 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(3131), 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), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3129), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102574,50 +105096,46 @@ 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, + [36702] = 15, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3065), 1, - anon_sym_AMP_AMP, - ACTIONS(3067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3123), 1, + ACTIONS(3091), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3121), 19, + ACTIONS(3089), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102627,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, @@ -102637,54 +105157,62 @@ 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, - anon_sym_LBRACK, + [36778] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3071), 1, - anon_sym_CARET, + 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(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3061), 2, + ACTIONS(3067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3105), 25, + 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_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, @@ -102695,46 +105223,38 @@ 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, - anon_sym_LBRACK, + [36864] = 11, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3063), 1, + ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3069), 1, - anon_sym_PIPE, - ACTIONS(3071), 1, - anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3107), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3061), 2, + ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 3, + ACTIONS(3063), 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), 21, + 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, @@ -102746,6 +105266,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102756,58 +105280,47 @@ 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, - 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, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3107), 1, - anon_sym_EQ, + [36932] = 6, + ACTIONS(2600), 1, + anon_sym_BANG, + ACTIONS(2602), 1, + anon_sym_COLON_COLON, + ACTIONS(3135), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(2596), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3057), 2, + anon_sym_STAR, + anon_sym_as, + 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(3105), 20, + anon_sym_DOT, + ACTIONS(2594), 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, + 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 +105331,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, + [36989] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2970), 10, anon_sym_LPAREN, - ACTIONS(2878), 1, + anon_sym_LBRACK, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(2884), 1, - anon_sym_for, - ACTIONS(2886), 1, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, 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, - 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(2972), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102883,120 +105364,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37017] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(700), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(702), 1, anon_sym_for, - ACTIONS(714), 1, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, anon_sym_extern, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2888), 1, - sym_metavariable, - ACTIONS(3125), 1, + anon_sym_dyn, + sym_mutable_specifier, sym_identifier, - ACTIONS(3127), 1, - anon_sym_default, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1349), 1, - sym_scoped_type_identifier, - STATE(1380), 1, - sym_generic_type, - STATE(1396), 1, - sym_function_type, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2411), 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, - [37104] = 20, + [37040] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2319), 1, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(2872), 1, + ACTIONS(2854), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2858), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2860), 1, anon_sym_STAR, - ACTIONS(2884), 1, + ACTIONS(2866), 1, anon_sym_for, - ACTIONS(2886), 1, + ACTIONS(2868), 1, anon_sym_AMP, - ACTIONS(2888), 1, + ACTIONS(2870), 1, sym_metavariable, - STATE(1855), 1, + STATE(1792), 1, sym_scoped_type_identifier, - STATE(1923), 1, - sym_generic_type, - STATE(1958), 1, + STATE(1818), 1, sym_where_predicate, - STATE(2370), 1, + STATE(2131), 1, + sym_generic_type, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2550), 1, + STATE(2491), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2882), 2, + ACTIONS(2864), 2, anon_sym_default, anon_sym_union, - ACTIONS(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - STATE(2316), 5, + STATE(2209), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2880), 17, + ACTIONS(2862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103014,105 +105444,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, + [37125] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2475), 1, + ACTIONS(2494), 1, anon_sym_fn, - ACTIONS(2483), 1, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3141), 1, anon_sym_default, - ACTIONS(3137), 1, + ACTIONS(3143), 1, sym_metavariable, - STATE(766), 1, + STATE(789), 1, sym_scoped_type_identifier, - STATE(854), 1, + STATE(817), 1, sym_generic_type, - STATE(1107), 1, + STATE(1106), 1, sym_function_type, - STATE(1207), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(2376), 1, + STATE(2391), 1, sym_function_modifiers, - STATE(2401), 1, + STATE(2416), 1, sym_scoped_identifier, - STATE(2479), 1, + STATE(2494), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2495), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(2491), 3, + ACTIONS(2510), 3, sym_self, sym_super, sym_crate, - ACTIONS(3133), 18, + ACTIONS(3139), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103131,22 +105510,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37333] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1272), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, + [37212] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2494), 1, + anon_sym_fn, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3141), 1, + anon_sym_default, + ACTIONS(3143), 1, sym_metavariable, - ACTIONS(1274), 32, + ACTIONS(3145), 1, + sym_identifier, + STATE(784), 1, + sym_scoped_type_identifier, + STATE(815), 1, + sym_generic_type, + STATE(1122), 1, + sym_function_type, + STATE(1218), 1, + sym_for_lifetimes, + STATE(2391), 1, + sym_function_modifiers, + 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(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, + ACTIONS(3139), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103164,22 +105575,8 @@ 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_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37384] = 21, + [37299] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -103188,45 +105585,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2888), 1, + ACTIONS(2870), 1, sym_metavariable, - ACTIONS(3127), 1, - anon_sym_default, - ACTIONS(3139), 1, + ACTIONS(3147), 1, sym_identifier, - STATE(1201), 1, + ACTIONS(3149), 1, + anon_sym_default, + STATE(1216), 1, sym_for_lifetimes, - STATE(1348), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1381), 1, + STATE(1403), 1, sym_generic_type, - STATE(1399), 1, + STATE(1406), 1, sym_function_type, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2411), 1, - sym_function_modifiers, - STATE(2550), 1, + STATE(2491), 1, sym_scoped_identifier, + STATE(2577), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - ACTIONS(2882), 18, + ACTIONS(2864), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103245,22 +105642,54 @@ static const uint16_t ts_small_parse_table[] = { 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, + [37386] = 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, - ACTIONS(2974), 32, + 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(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, @@ -103278,55 +105707,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_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, - [37522] = 17, + [37471] = 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(3151), 1, sym_identifier, - ACTIONS(3143), 1, + ACTIONS(3153), 1, anon_sym_RPAREN, - ACTIONS(3147), 1, + ACTIONS(3157), 1, anon_sym_COMMA, - ACTIONS(3151), 1, + ACTIONS(3161), 1, sym_metavariable, - STATE(1597), 1, + STATE(1730), 1, sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 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(1074), 2, + STATE(1096), 2, sym_string_literal, sym_boolean_literal, - STATE(1913), 2, + STATE(1984), 2, sym_meta_item, sym__literal, - ACTIONS(3149), 3, + ACTIONS(3159), 3, sym_self, sym_super, sym_crate, @@ -103335,7 +105749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3145), 19, + ACTIONS(3155), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103355,54 +105769,54 @@ static const uint16_t ts_small_parse_table[] = { 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(2475), 1, - anon_sym_fn, - ACTIONS(2483), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(3135), 1, - anon_sym_default, - ACTIONS(3137), 1, + ACTIONS(2870), 1, sym_metavariable, - ACTIONS(3153), 1, + ACTIONS(3149), 1, + anon_sym_default, + ACTIONS(3163), 1, sym_identifier, - STATE(775), 1, + STATE(1216), 1, + sym_for_lifetimes, + STATE(1360), 1, sym_scoped_type_identifier, - STATE(839), 1, + STATE(1393), 1, sym_generic_type, - STATE(1118), 1, + STATE(1422), 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(2385), 1, sym_bracketed_type, - STATE(2480), 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(1575), 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(2491), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - ACTIONS(3133), 18, + ACTIONS(2864), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103421,47 +105835,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37688] = 16, - 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, - ACTIONS(3155), 1, - anon_sym_RPAREN, - STATE(1597), 1, - sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, - sym_bracketed_type, + [37637] = 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(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, @@ -103479,40 +105868,53 @@ 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, - [37764] = 16, + 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(966), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3157), 1, + ACTIONS(3165), 1, sym_identifier, - ACTIONS(3163), 1, + ACTIONS(3171), 1, sym_metavariable, - STATE(1442), 1, + STATE(1437), 1, sym_scoped_identifier, - STATE(1451), 1, + STATE(1468), 1, sym__literal_pattern, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2362), 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(3161), 3, + ACTIONS(3169), 3, sym_self, sym_super, sym_crate, - STATE(1421), 3, + STATE(1410), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -103521,7 +105923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3159), 19, + ACTIONS(3167), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103541,17 +105943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37840] = 6, - ACTIONS(2570), 1, + [37764] = 6, + ACTIONS(2580), 1, anon_sym_BANG, - ACTIONS(3165), 1, + ACTIONS(3173), 1, anon_sym_COLON_COLON, - STATE(1117), 1, + STATE(1108), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103567,7 +105969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 23, + ACTIONS(566), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103591,47 +105993,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37896] = 16, + [37820] = 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(3167), 1, + ACTIONS(3151), 1, sym_identifier, - ACTIONS(3173), 1, + ACTIONS(3161), 1, sym_metavariable, - STATE(1445), 1, + ACTIONS(3175), 1, + anon_sym_RPAREN, + STATE(1730), 1, sym_scoped_identifier, - STATE(1462), 1, - sym__literal_pattern, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2362), 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(738), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3171), 3, + STATE(1096), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2213), 2, + sym_meta_item, + sym__literal, + ACTIONS(3159), 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(3169), 19, + ACTIONS(3155), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103639,99 +106041,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u32, anon_sym_i32, anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - [37972] = 5, - ACTIONS(2762), 1, - anon_sym_COLON_COLON, - ACTIONS(3093), 1, - anon_sym_BANG, - 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, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [37896] = 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, - sym_identifier, ACTIONS(3151), 1, + sym_identifier, + ACTIONS(3161), 1, sym_metavariable, - ACTIONS(3175), 1, + ACTIONS(3177), 1, anon_sym_RPAREN, - STATE(1597), 1, + STATE(1730), 1, sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 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(1074), 2, + STATE(1096), 2, sym_string_literal, sym_boolean_literal, STATE(2213), 2, sym_meta_item, sym__literal, - ACTIONS(3149), 3, + ACTIONS(3159), 3, sym_self, sym_super, sym_crate, @@ -103740,7 +106093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3145), 19, + ACTIONS(3155), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103760,60 +106113,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38102] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2602), 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(2604), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + [37972] = 5, + 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, - [38151] = 3, + ACTIONS(3101), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103827,13 +106137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 24, + ACTIONS(566), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -103852,45 +106162,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38200] = 15, + [38026] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, + 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(3141), 1, + ACTIONS(3179), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3185), 1, sym_metavariable, - STATE(1597), 1, + STATE(1457), 1, sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(1466), 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(95), 2, + ACTIONS(738), 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, + ACTIONS(3183), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, + 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(3145), 19, + ACTIONS(3181), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103910,15 +106222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38273] = 5, - ACTIONS(2570), 1, + [38102] = 5, + ACTIONS(2580), 1, anon_sym_BANG, - ACTIONS(3177), 1, + ACTIONS(3187), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103934,7 +106246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 23, + ACTIONS(566), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103958,11 +106270,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, + [38155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 9, + ACTIONS(3191), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -103972,7 +106284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3179), 31, + ACTIONS(3189), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104004,22 +106316,111 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38375] = 4, - ACTIONS(3185), 1, - anon_sym_LPAREN, + [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(3187), 8, - anon_sym_LBRACK, + 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_SQUOTE, - anon_sym_BANG, + 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, + [38293] = 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(3151), 1, + sym_identifier, + ACTIONS(3161), 1, sym_metavariable, - ACTIONS(3183), 31, + STATE(1730), 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(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1096), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2213), 2, + sym_meta_item, + sym__literal, + ACTIONS(3159), 3, + sym_self, + sym_super, + sym_crate, + 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, @@ -104037,83 +106438,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, - [38426] = 5, - ACTIONS(2658), 1, - anon_sym_BANG, - ACTIONS(3189), 1, + [38366] = 4, + ACTIONS(3205), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 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(2588), 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, - [38479] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3193), 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(3191), 31, + ACTIONS(3201), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104145,22 +106487,21 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38528] = 4, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, + [38417] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3187), 8, + ACTIONS(3209), 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(3183), 31, + ACTIONS(3207), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104192,11 +106533,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38579] = 3, + [38466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 16, + ACTIONS(2624), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -104213,7 +106554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2624), 24, + ACTIONS(2626), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104238,11 +106579,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, + [38515] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 16, + ACTIONS(2616), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -104259,7 +106600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2636), 24, + ACTIONS(2618), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104284,62 +106625,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, + [38564] = 23, + ACTIONS(552), 1, anon_sym_RBRACK, - ACTIONS(3049), 1, - anon_sym_LBRACK, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3197), 1, - anon_sym_SEMI, ACTIONS(3199), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(2064), 1, + 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(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -104350,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, - [38766] = 3, + [38653] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2858), 9, + ACTIONS(3032), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104364,7 +106705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2856), 31, + ACTIONS(3030), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104396,77 +106737,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(3205), 1, - anon_sym_SEMI, - ACTIONS(3207), 1, - anon_sym_COMMA, - STATE(2014), 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, - [38904] = 3, + [38702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 9, + ACTIONS(2992), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104476,7 +106751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2832), 31, + ACTIONS(2990), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104508,12 +106783,107 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38953] = 3, + [38751] = 5, + ACTIONS(2704), 1, + anon_sym_BANG, + ACTIONS(3215), 1, + anon_sym_COLON_COLON, + 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), 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, + [38804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3211), 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), 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, + [38853] = 4, + ACTIONS(3217), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3203), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -104522,7 +106892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3209), 31, + ACTIONS(3201), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104554,60 +106924,42 @@ static const uint16_t ts_small_parse_table[] = { 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, + [38904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(2640), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3057), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - 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(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_DOT, + ACTIONS(2642), 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(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104618,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, - [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, + [38953] = 3, 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, + 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, @@ -104677,14 +107002,91 @@ 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, - [39166] = 4, - ACTIONS(2726), 1, + 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, + 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(3223), 1, + anon_sym_RPAREN, + ACTIONS(3225), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym_arguments_repeat1, + 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, + [39088] = 4, + ACTIONS(3227), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104700,7 +107102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2684), 23, + ACTIONS(566), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104724,13 +107126,13 @@ 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, + [39138] = 4, + ACTIONS(2714), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104746,7 +107148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 23, + ACTIONS(2712), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104770,60 +107172,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, - anon_sym_LBRACK, + [39188] = 22, + ACTIONS(386), 1, + anon_sym_RPAREN, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3219), 1, - anon_sym_RPAREN, - ACTIONS(3221), 1, + ACTIONS(3229), 1, anon_sym_COMMA, - STATE(2052), 1, + STATE(1918), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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,59 +107236,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39352] = 4, - ACTIONS(2686), 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, - 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), 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, - [39402] = 4, - ACTIONS(3223), 1, + 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(562), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104902,7 +107318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 23, + ACTIONS(2712), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104926,48 +107342,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, + [39402] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(900), 1, + ACTIONS(916), 1, anon_sym_COLON_COLON, - ACTIONS(2888), 1, + ACTIONS(2870), 1, sym_metavariable, - ACTIONS(3127), 1, + ACTIONS(3149), 1, anon_sym_default, - ACTIONS(3225), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3227), 1, + ACTIONS(3237), 1, anon_sym_fn, - STATE(1797), 1, + STATE(1830), 1, sym_scoped_type_identifier, - STATE(2370), 1, + STATE(2385), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2386), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2418), 1, sym_function_modifiers, - STATE(2425), 1, + STATE(2440), 1, sym_generic_type, - STATE(2550), 1, + STATE(2491), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 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(906), 3, + ACTIONS(922), 3, sym_self, sym_super, sym_crate, - ACTIONS(2882), 18, + ACTIONS(2864), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104986,58 +107402,42 @@ 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, - 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(1088), 1, - sym_block, + [39480] = 4, + ACTIONS(3215), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(2596), 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_DOT, + ACTIONS(2594), 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(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105048,58 +107448,49 @@ 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, + [39530] = 12, + ACTIONS(3059), 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, + anon_sym_DOT, ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_DOT_DOT, ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(239), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + 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, - ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105110,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, - [39696] = 21, - ACTIONS(586), 1, + [39595] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(244), 1, + STATE(1077), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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, @@ -105172,34 +107563,38 @@ 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, + [39678] = 11, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3243), 1, + anon_sym_AMP, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3239), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 13, - anon_sym_PLUS, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3241), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3091), 5, 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(3105), 20, + ACTIONS(3089), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105220,57 +107615,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39834] = 20, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [39741] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3263), 2, - anon_sym_RBRACK, + ACTIONS(3271), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -105281,58 +107676,53 @@ 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, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [39822] = 16, + ACTIONS(3059), 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_DOT, + ACTIONS(3091), 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, + anon_sym_AMP, ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_DOT_DOT, ACTIONS(3249), 1, anon_sym_CARET, - STATE(216), 1, - sym_block, + ACTIONS(3261), 1, + anon_sym_AMP_AMP, + ACTIONS(3265), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 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, @@ -105343,58 +107733,103 @@ 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, + [39895] = 15, + ACTIONS(3059), 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_DOT, + ACTIONS(3091), 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, + anon_sym_AMP, ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_DOT_DOT, ACTIONS(3249), 1, anon_sym_CARET, - STATE(231), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + 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(3267), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39966] = 10, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3087), 1, + anon_sym_DOT, + 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(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 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(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105405,58 +107840,108 @@ 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, - anon_sym_LBRACK, + [40027] = 13, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3243), 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, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3085), 1, + ACTIONS(3265), 1, + anon_sym_PIPE, + 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(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(3089), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_QMARK, - ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3089), 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, + [40094] = 17, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3113), 1, anon_sym_EQ, - ACTIONS(3203), 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_SEMI, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 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, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 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(3073), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 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, @@ -105467,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, - [40164] = 21, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [40169] = 21, + ACTIONS(398), 1, + anon_sym_RPAREN, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3267), 1, - anon_sym_RBRACE, - ACTIONS(3269), 1, + ACTIONS(3273), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -105529,58 +108014,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, - ACTIONS(15), 1, + [40252] = 21, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(167), 1, + STATE(237), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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 +108076,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, + [40335] = 8, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3097), 13, - anon_sym_PLUS, + ACTIONS(3241), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3091), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105616,9 +108104,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(3089), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105639,113 +108125,57 @@ 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, - 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, - anon_sym_LBRACK, + [40392] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3289), 2, - anon_sym_RBRACE, + ACTIONS(3275), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -105756,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, - [40537] = 21, - ACTIONS(284), 1, + [40473] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(1049), 1, + STATE(159), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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 +108248,58 @@ 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, - anon_sym_LBRACK, + [40556] = 21, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3277), 1, anon_sym_SEMI, + ACTIONS(3279), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +108310,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40703] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [40639] = 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(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 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(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3199), 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(46), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3197), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3281), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3083), 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, @@ -105942,54 +108371,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, + [40720] = 21, + ACTIONS(278), 1, + anon_sym_RBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3261), 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(3199), 1, anon_sym_DOT_DOT, + ACTIONS(3277), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3083), 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 +108433,119 @@ 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, + [40803] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, + anon_sym_AMP, + 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(3263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3265), 1, + anon_sym_PIPE, 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(3115), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + 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(3113), 20, - anon_sym_LPAREN, + 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40884] = 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(174), 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(3241), 3, + anon_sym_STAR, + anon_sym_SLASH, + 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, @@ -106048,58 +108556,57 @@ 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, - anon_sym_LBRACK, + [40967] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3283), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -106110,58 +108617,58 @@ 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, + [41048] = 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(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3199), 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(1072), 1, - sym_block, + ACTIONS(3277), 1, + anon_sym_SEMI, + ACTIONS(3285), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 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(3251), 4, + ACTIONS(3083), 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 +108679,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41082] = 21, + [41131] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(99), 1, + STATE(49), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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, @@ -106234,50 +108741,50 @@ 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, + [41214] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3237), 1, - anon_sym_AMP, ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_DOT_DOT, ACTIONS(3249), 1, anon_sym_CARET, ACTIONS(3261), 1, - anon_sym_DOT_DOT, + 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(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 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(3251), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3047), 14, + ACTIONS(3057), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106292,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, - [41240] = 21, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [41289] = 21, + ACTIONS(390), 1, + anon_sym_RPAREN, + 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(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3199), 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(3273), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 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(3251), 4, + ACTIONS(3083), 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, @@ -106354,57 +108861,57 @@ 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, - anon_sym_LBRACK, + [41372] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3293), 2, - anon_sym_RBRACE, + ACTIONS(3287), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -106415,58 +108922,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, + [41453] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(1092), 1, - sym_match_block, + STATE(1104), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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 +108984,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, + [41536] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3261), 1, + 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, + ACTIONS(3289), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3083), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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 +109046,57 @@ 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, + [41619] = 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(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 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(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3199), 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(1051), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3197), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3291), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3083), 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, @@ -106600,57 +109107,113 @@ 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, - anon_sym_LBRACK, + [41700] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3293), 1, + sym_identifier, + ACTIONS(3295), 1, + anon_sym_LBRACE, + 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(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3297), 2, + ACTIONS(3311), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -106661,53 +109224,58 @@ 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, + [41852] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3107), 1, - anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3261), 1, + 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(238), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3105), 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, @@ -106718,58 +109286,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, + [41935] = 21, + ACTIONS(260), 1, anon_sym_RBRACE, - ACTIONS(3049), 1, - anon_sym_LBRACK, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3277), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +109348,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, + [42018] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3247), 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(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3131), 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(3129), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106830,58 +109396,58 @@ 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, + [42073] = 21, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(232), 1, + STATE(226), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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, @@ -106892,58 +109458,58 @@ 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, + [42156] = 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(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3199), 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(3313), 1, + anon_sym_RBRACE, + ACTIONS(3315), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 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(3251), 4, + ACTIONS(3083), 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, @@ -106954,54 +109520,58 @@ static const uint16_t ts_small_parse_table[] = { 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, + [42239] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, - anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3261), 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(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(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3083), 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(3123), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107012,52 +109582,54 @@ 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, + [42322] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3107), 1, - anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3243), 1, anon_sym_AMP, ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_DOT_DOT, ACTIONS(3249), 1, anon_sym_CARET, ACTIONS(3261), 1, - anon_sym_DOT_DOT, + 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(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 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(3251), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3105), 16, + ACTIONS(282), 14, 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, @@ -107068,47 +109640,120 @@ 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, + [42397] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3261), 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(792), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42480] = 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(3105), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3087), 1, + anon_sym_DOT, + ACTIONS(3117), 1, anon_sym_QMARK, + ACTIONS(3119), 1, anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3121), 1, + anon_sym_EQ, + 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(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, @@ -107119,20 +109764,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, + [42563] = 7, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3261), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3111), 13, + ACTIONS(3091), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107146,7 +109791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 20, + ACTIONS(3089), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107167,58 +109812,119 @@ 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, + [42618] = 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(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3273), 1, + anon_sym_COMMA, + ACTIONS(3323), 1, + anon_sym_RPAREN, + 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, + [42701] = 20, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_AMP, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3081), 1, anon_sym_CARET, - STATE(1085), 1, - sym_block, + 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(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3197), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3325), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3083), 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,50 +109935,58 @@ 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, + [42782] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE, ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3261), 1, + 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, + ACTIONS(3327), 1, + anon_sym_LBRACE, + STATE(1087), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3107), 3, - anon_sym_EQ, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 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(3105), 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, @@ -107283,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, - [42525] = 21, - ACTIONS(270), 1, - anon_sym_RBRACE, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [42865] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, 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_LBRACK, + ACTIONS(3087), 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(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3203), 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_SEMI, + anon_sym_PIPE, + STATE(242), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3267), 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, @@ -107345,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, - [42608] = 21, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [42948] = 21, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, - ACTIONS(3299), 1, + ACTIONS(3329), 1, anon_sym_RBRACE, + ACTIONS(3331), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +110121,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, + [43031] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(215), 1, + STATE(151), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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,58 +110183,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, + [43114] = 21, + ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(113), 1, + STATE(254), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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, @@ -107531,50 +110245,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42857] = 17, - ACTIONS(3049), 1, + [43197] = 17, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3123), 1, + ACTIONS(3095), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP, ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_DOT_DOT, ACTIONS(3249), 1, anon_sym_CARET, ACTIONS(3261), 1, - anon_sym_DOT_DOT, + 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(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3253), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 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(3251), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3121), 14, + ACTIONS(3093), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107589,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, - [42932] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [43272] = 21, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(785), 1, - sym_block, + ACTIONS(3333), 1, + anon_sym_LBRACE, + STATE(253), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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 +110365,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, + [43355] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, + ACTIONS(3117), 1, + anon_sym_QMARK, ACTIONS(3119), 1, - anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, + anon_sym_as, ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3261), 1, + 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(1065), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107709,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, - [43090] = 21, - ACTIONS(276), 1, - anon_sym_RBRACE, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [43438] = 7, 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, + anon_sym_LBRACK, ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3203), 1, + anon_sym_DOT, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3109), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3057), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, 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, + 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(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107771,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, - [43173] = 21, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [43493] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, 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_LBRACK, + ACTIONS(3087), 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(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3203), 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_SEMI, - ACTIONS(3301), 1, - anon_sym_RBRACE, + anon_sym_PIPE, + STATE(100), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3267), 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, @@ -107833,58 +110537,44 @@ 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, + [43576] = 7, + ACTIONS(3059), 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, + anon_sym_DOT, ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(1124), 1, - sym_block, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 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(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(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107895,58 +110585,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, + [43631] = 21, + ACTIONS(107), 1, + anon_sym_RBRACE, + 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(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3199), 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(3303), 1, - anon_sym_LBRACE, - STATE(154), 1, - sym_match_block, + ACTIONS(3277), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 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(3251), 4, + ACTIONS(3083), 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, @@ -107957,58 +110647,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, + [43714] = 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(3085), 1, + ACTIONS(3117), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3119), 1, anon_sym_as, - ACTIONS(3233), 1, + ACTIONS(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3199), 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(220), 1, - sym_block, + ACTIONS(3277), 1, + anon_sym_SEMI, + ACTIONS(3335), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 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(3251), 4, + ACTIONS(3083), 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,49 +110709,58 @@ 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, + [43797] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3237), 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(3261), 1, + 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(1130), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3105), 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, @@ -108072,48 +110771,58 @@ 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, + [43880] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3237), 1, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3261), 1, + 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(223), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3105), 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, @@ -108124,45 +110833,58 @@ 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, + [43963] = 21, + ACTIONS(105), 1, + anon_sym_RBRACE, + 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(3261), 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(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3107), 10, + ACTIONS(3061), 2, anon_sym_PLUS, - 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(3105), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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, @@ -108173,58 +110895,57 @@ 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, - anon_sym_LBRACK, + [44046] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, - ACTIONS(3305), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3337), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +110956,58 @@ 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, + [44127] = 21, + ACTIONS(272), 1, anon_sym_RBRACE, - ACTIONS(3049), 1, - anon_sym_LBRACK, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3277), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -108297,58 +111018,54 @@ 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, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [44210] = 17, + ACTIONS(3059), 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_DOT, + ACTIONS(3105), 1, anon_sym_EQ, - ACTIONS(3237), 1, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(168), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3255), 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, @@ -108359,57 +111076,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, - anon_sym_LBRACK, + [44285] = 21, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(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(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3307), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +111138,58 @@ 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, - anon_sym_LBRACK, + [44368] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, 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_LBRACK, + ACTIONS(3087), 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(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 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(72), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3267), 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, @@ -108482,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, - [44103] = 21, - ACTIONS(3049), 1, - anon_sym_LBRACK, + [44451] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, 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_LBRACK, + ACTIONS(3087), 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(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3309), 1, - anon_sym_RPAREN, - ACTIONS(3311), 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(256), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3267), 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, @@ -108544,58 +111262,58 @@ 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, - anon_sym_LBRACK, + [44534] = 21, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3277), 1, anon_sym_SEMI, - ACTIONS(3313), 1, + ACTIONS(3341), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -108606,58 +111324,57 @@ 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, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [44617] = 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(3081), 1, + anon_sym_CARET, + ACTIONS(3087), 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(3121), 1, anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3199), 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(130), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3197), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3343), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3083), 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, @@ -108668,58 +111385,54 @@ 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, - anon_sym_LBRACK, + [44698] = 17, 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, + anon_sym_LBRACK, ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, + anon_sym_DOT, + ACTIONS(3127), 1, anon_sym_EQ, - ACTIONS(3203), 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_SEMI, - ACTIONS(3315), 1, - anon_sym_RBRACE, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 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, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 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(3073), 4, + ACTIONS(3267), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3091), 10, + ACTIONS(3125), 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, @@ -108730,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, - [44435] = 21, - ACTIONS(586), 1, + [44773] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(238), 1, + STATE(1124), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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 +111505,58 @@ 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, - anon_sym_LBRACK, + [44856] = 21, + ACTIONS(602), 1, + anon_sym_LBRACE, 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_LBRACK, + ACTIONS(3087), 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(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3203), 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(233), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3317), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3267), 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, @@ -108853,58 +111567,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, - anon_sym_LBRACK, + [44939] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, 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_LBRACK, + ACTIONS(3087), 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(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3203), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3319), 1, - anon_sym_RBRACE, - ACTIONS(3321), 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(45), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3267), 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 +111629,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, - anon_sym_LBRACK, + [45022] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, 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_LBRACK, + ACTIONS(3087), 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(3243), 1, + anon_sym_AMP, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, anon_sym_EQ, - ACTIONS(3203), 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_SEMI, - ACTIONS(3323), 1, - anon_sym_RBRACE, + anon_sym_PIPE, + STATE(121), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3267), 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 +111691,58 @@ 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, + [45105] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 1, anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3237), 1, - anon_sym_AMP, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3119), 1, + anon_sym_as, ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3261), 1, + 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(1156), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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(3269), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109035,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, - [44840] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, + [45188] = 20, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(50), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3133), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, + ACTIONS(3251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3231), 3, + ACTIONS(3255), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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, @@ -109097,57 +111814,46 @@ 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, - anon_sym_LBRACK, + [45269] = 9, 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, + anon_sym_LBRACK, ACTIONS(3087), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_EQ, - ACTIONS(3203), 1, + anon_sym_DOT, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3239), 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, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3325), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3091), 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(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(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109158,57 +111864,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, - anon_sym_LBRACK, + [45328] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(3345), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +111925,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, - ACTIONS(15), 1, + [45409] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3077), 1, + ACTIONS(3087), 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, + ACTIONS(3243), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3253), 1, + anon_sym_EQ, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3261), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3263), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3265), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - STATE(150), 1, + STATE(794), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 2, + ACTIONS(3239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3255), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3239), 2, + ACTIONS(3257), 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(3241), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3267), 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 +111987,58 @@ 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, - anon_sym_LBRACK, + [45492] = 21, + ACTIONS(274), 1, + anon_sym_RBRACE, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, + ACTIONS(3277), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3329), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -109342,57 +112049,57 @@ 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, + [45575] = 20, + ACTIONS(3059), 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(3069), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3247), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3261), 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(3199), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3229), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3235), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3253), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3259), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 3, + ACTIONS(3347), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3251), 4, + ACTIONS(3083), 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 +112110,56 @@ 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, - anon_sym_LBRACK, + [45656] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, + ACTIONS(3349), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3331), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112170,56 @@ 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, - anon_sym_LBRACK, + [45736] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, - anon_sym_COMMA, - ACTIONS(3333), 1, - anon_sym_RPAREN, + ACTIONS(3351), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -109526,56 +112230,56 @@ 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, - anon_sym_LBRACK, + [45816] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3335), 1, - anon_sym_SEMI, + ACTIONS(3353), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -109586,56 +112290,56 @@ 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, - anon_sym_LBRACK, + [45896] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3337), 1, - anon_sym_COMMA, + ACTIONS(3355), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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, @@ -109646,56 +112350,56 @@ 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, - anon_sym_LBRACK, + [45976] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3339), 1, + ACTIONS(3357), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112410,56 @@ 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, - anon_sym_LBRACK, + [46056] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3341), 1, + ACTIONS(3359), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112470,56 @@ 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, - anon_sym_LBRACK, + [46136] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3343), 1, + ACTIONS(3361), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112530,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, - anon_sym_LBRACK, + [46216] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3345), 1, - anon_sym_COMMA, + ACTIONS(3363), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112590,56 @@ 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, - 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, - 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, - 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, - anon_sym_LBRACK, + [46296] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, - anon_sym_COMMA, + ACTIONS(3365), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112650,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, - anon_sym_LBRACK, + [46376] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3349), 1, + ACTIONS(3367), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112710,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, - anon_sym_LBRACK, + [46456] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3351), 1, + ACTIONS(3369), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112770,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, - anon_sym_LBRACK, + [46536] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3353), 1, - anon_sym_SEMI, + ACTIONS(3371), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112830,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, - anon_sym_LBRACK, + [46616] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, - anon_sym_RBRACK, + ACTIONS(3373), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112890,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, - anon_sym_LBRACK, + [46696] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, - anon_sym_SEMI, + ACTIONS(3375), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +112950,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, - anon_sym_LBRACK, + [46776] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, + ACTIONS(3377), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113010,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, - anon_sym_LBRACK, + [46856] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_SEMI, + ACTIONS(3379), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113070,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, - anon_sym_LBRACK, + [46936] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3381), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113130,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, - anon_sym_LBRACK, + [47016] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, - anon_sym_EQ_GT, + ACTIONS(3383), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113190,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, - anon_sym_LBRACK, + [47096] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, - anon_sym_RBRACK, + ACTIONS(3385), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113250,110 @@ 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, - anon_sym_LBRACK, + [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(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(3273), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113364,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, - anon_sym_LBRACK, + [47324] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, + ACTIONS(3389), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113424,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, - anon_sym_LBRACK, + [47404] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3391), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113484,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, - anon_sym_LBRACK, + [47484] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, + ACTIONS(3277), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113544,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, - anon_sym_LBRACK, + [47564] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, - anon_sym_RBRACK, + ACTIONS(3393), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113604,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, - anon_sym_LBRACK, + [47644] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, + ACTIONS(3395), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113664,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, - anon_sym_LBRACK, + [47724] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_SEMI, + ACTIONS(3397), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113724,110 @@ 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, - anon_sym_LBRACK, + [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(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, - anon_sym_SEMI, + ACTIONS(3401), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113838,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, - anon_sym_LBRACK, + [47952] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3383), 1, - anon_sym_SEMI, + ACTIONS(3403), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113898,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, - anon_sym_LBRACK, + [48032] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, - anon_sym_SEMI, + ACTIONS(3405), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +113958,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, - anon_sym_LBRACK, + [48112] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3387), 1, - anon_sym_RBRACK, + ACTIONS(3407), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +114018,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, - anon_sym_LBRACK, + [48192] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, + ACTIONS(3409), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +114078,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, - anon_sym_LBRACK, + [48272] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, + ACTIONS(3411), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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 +114138,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, - anon_sym_LBRACK, + [48352] = 20, ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3075), 1, anon_sym_AMP_AMP, - ACTIONS(3067), 1, + ACTIONS(3077), 1, anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3071), 1, + ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3077), 1, + ACTIONS(3087), 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(3199), 1, anon_sym_DOT_DOT, - ACTIONS(3393), 1, - anon_sym_SEMI, + ACTIONS(3413), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 2, + ACTIONS(3061), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3057), 2, + ACTIONS(3067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3075), 2, + ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3197), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3053), 3, + ACTIONS(3063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 4, + ACTIONS(3083), 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,403 +114198,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48042] = 14, - 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, - ACTIONS(3395), 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, - 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(2358), 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, - [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, - 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, - 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(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, - 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(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, + [48432] = 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(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(3415), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3403), 3, + 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, + [48512] = 13, + 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(3401), 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, - [48515] = 3, + 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(3407), 3, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(3405), 28, + 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, @@ -111854,42 +114308,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, + [48577] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3299), 1, + anon_sym_STAR, + ACTIONS(3305), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, sym_metavariable, - STATE(1597), 1, + STATE(1767), 1, sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2382), 1, - sym_meta_item, - STATE(2476), 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(3149), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + STATE(2559), 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, @@ -111909,31 +114362,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48610] = 11, + [48642] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3299), 1, + anon_sym_STAR, + ACTIONS(3305), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, sym_metavariable, - STATE(1597), 1, + STATE(1767), 1, sym_scoped_identifier, - STATE(2336), 1, - sym_meta_item, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 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(3149), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + STATE(2407), 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, @@ -111953,31 +114414,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48665] = 11, + [48707] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3299), 1, + anon_sym_STAR, + ACTIONS(3305), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, sym_metavariable, - STATE(1597), 1, + STATE(1767), 1, sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2564), 1, - sym_meta_item, + STATE(2405), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3149), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + STATE(2395), 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, @@ -111997,31 +114466,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48720] = 11, + [48772] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3141), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3151), 1, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3299), 1, + anon_sym_STAR, + ACTIONS(3305), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, sym_metavariable, - STATE(1597), 1, + STATE(1767), 1, sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2427), 1, - sym_meta_item, - STATE(2476), 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(3149), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - ACTIONS(3145), 19, + STATE(2480), 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, @@ -112041,31 +114518,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, + [48837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3149), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3145), 19, + ACTIONS(3419), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(3417), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112083,33 +114544,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, + [48877] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3423), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(3421), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112127,33 +114581,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, + [48917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3427), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(3425), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112171,31 +114618,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, + [48957] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3409), 1, + ACTIONS(3429), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3435), 1, sym_metavariable, - STATE(2322), 1, + STATE(2214), 1, sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 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(3413), 3, + ACTIONS(3433), 3, sym_self, sym_super, sym_crate, - ACTIONS(3411), 19, + ACTIONS(3431), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112215,29 +114671,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48992] = 10, + [49009] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(888), 1, anon_sym_COLON_COLON, - ACTIONS(3417), 1, + ACTIONS(3437), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3443), 1, sym_metavariable, - STATE(2173), 1, + STATE(2257), 1, sym_scoped_identifier, - STATE(2357), 1, - sym_generic_type_with_turbofish, - STATE(2476), 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(3421), 3, + ACTIONS(3441), 3, sym_self, sym_super, sym_crate, - ACTIONS(3419), 19, + ACTIONS(3439), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112257,13 +114713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49044] = 3, - ACTIONS(2347), 1, + [49061] = 3, + ACTIONS(2397), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2349), 20, + ACTIONS(2399), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112284,13 +114740,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, + [49091] = 3, + ACTIONS(2373), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2421), 20, + ACTIONS(2375), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112311,79 +114767,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49104] = 9, - ACTIONS(2568), 1, - anon_sym_COLON, - ACTIONS(3425), 1, + [49121] = 10, + ACTIONS(3447), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3429), 1, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3453), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, + ACTIONS(3457), 1, anon_sym_LT2, - STATE(1364), 1, - sym_type_arguments, + ACTIONS(3459), 1, + anon_sym_AT, STATE(1382), 1, - sym_parameters, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 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, - [49144] = 10, - ACTIONS(3431), 1, + [49163] = 9, + ACTIONS(2578), 1, + anon_sym_COLON, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3435), 1, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_LBRACE, - ACTIONS(3441), 1, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_AT, - STATE(1364), 1, + STATE(1382), 1, sym_type_arguments, + STATE(1402), 1, + sym_parameters, 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, + 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, - [49186] = 4, - ACTIONS(2632), 1, + [49203] = 4, + 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, @@ -112399,16 +114855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49215] = 4, - ACTIONS(2600), 1, + [49232] = 4, + ACTIONS(2622), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 2, + ACTIONS(2626), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2598), 15, + ACTIONS(2620), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112424,75 +114880,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49244] = 8, - ACTIONS(2578), 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, + [49261] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 12, + ACTIONS(2628), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2632), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2634), 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_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49281] = 8, - ACTIONS(2582), 1, + [49290] = 4, + ACTIONS(2614), 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(2580), 12, + ACTIONS(2618), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2612), 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, - [49318] = 4, + [49319] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 2, + ACTIONS(2612), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2622), 2, + ACTIONS(2616), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2624), 14, + ACTIONS(2618), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112507,42 +114955,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49347] = 4, + [49348] = 8, + ACTIONS(2588), 1, + anon_sym_COLON, + 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(1402), 1, + sym_parameters, 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, + ACTIONS(2586), 12, 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_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_PIPE, - [49376] = 4, + [49385] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, + ACTIONS(2620), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2614), 2, + ACTIONS(2624), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2616), 14, + ACTIONS(2626), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112557,16 +115009,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49405] = 4, - ACTIONS(2620), 1, + [49414] = 4, + ACTIONS(2638), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 2, + ACTIONS(2642), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2618), 15, + ACTIONS(2636), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112582,17 +115034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49434] = 4, + [49443] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + ACTIONS(2636), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2602), 2, + ACTIONS(2640), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2604), 14, + ACTIONS(2642), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112607,44 +115059,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49463] = 4, - ACTIONS(2612), 1, + [49472] = 8, + ACTIONS(2592), 1, anon_sym_COLON, + 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(1402), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2610), 15, + ACTIONS(2590), 12, 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, + [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(2624), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2626), 15, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3431), 1, + 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, + [49589] = 6, + ACTIONS(3457), 1, anon_sym_LT2, - STATE(1358), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1381), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 13, + ACTIONS(2608), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112658,19 +115174,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49524] = 6, - ACTIONS(3425), 1, + [49621] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2618), 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, + [49647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2640), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2642), 15, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3431), 1, + 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, + [49673] = 6, + ACTIONS(3457), 1, anon_sym_LT2, - STATE(1358), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1381), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 13, + ACTIONS(2644), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112684,93 +115246,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49556] = 17, - ACTIONS(3449), 1, - anon_sym_const, - ACTIONS(3451), 1, - anon_sym_enum, - ACTIONS(3453), 1, - anon_sym_fn, - ACTIONS(3455), 1, - anon_sym_mod, - ACTIONS(3457), 1, - anon_sym_static, - ACTIONS(3459), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_trait, - ACTIONS(3463), 1, - anon_sym_type, - ACTIONS(3465), 1, - anon_sym_union, - ACTIONS(3467), 1, - anon_sym_unsafe, - ACTIONS(3469), 1, - anon_sym_use, - ACTIONS(3471), 1, - anon_sym_extern, - STATE(1528), 1, - sym_extern_modifier, - STATE(1575), 1, - aux_sym_function_modifiers_repeat1, - STATE(2397), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3447), 2, - anon_sym_async, - anon_sym_default, - [49610] = 17, - ACTIONS(3473), 1, + [49705] = 17, + ACTIONS(3493), 1, anon_sym_const, - ACTIONS(3475), 1, + ACTIONS(3495), 1, anon_sym_enum, - ACTIONS(3477), 1, + ACTIONS(3497), 1, anon_sym_fn, - ACTIONS(3479), 1, + ACTIONS(3499), 1, anon_sym_mod, - ACTIONS(3481), 1, + ACTIONS(3501), 1, anon_sym_static, - ACTIONS(3483), 1, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(3485), 1, + ACTIONS(3505), 1, anon_sym_trait, - ACTIONS(3487), 1, + ACTIONS(3507), 1, anon_sym_type, - ACTIONS(3489), 1, + ACTIONS(3509), 1, anon_sym_union, - ACTIONS(3491), 1, + ACTIONS(3511), 1, anon_sym_unsafe, - ACTIONS(3493), 1, + ACTIONS(3513), 1, anon_sym_use, - ACTIONS(3495), 1, + ACTIONS(3515), 1, anon_sym_extern, - STATE(1513), 1, + STATE(1520), 1, sym_extern_modifier, - STATE(1575), 1, + STATE(1593), 1, aux_sym_function_modifiers_repeat1, - STATE(2556), 1, + STATE(2571), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3467), 2, anon_sym_async, anon_sym_default, - [49664] = 6, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, + [49759] = 6, + ACTIONS(3457), 1, anon_sym_LT2, - STATE(1358), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1381), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 13, + ACTIONS(2648), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112784,11 +115309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49696] = 2, + [49791] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(2628), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112805,53 +115330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49719] = 3, - ACTIONS(3497), 1, + [49814] = 3, + ACTIONS(3517), 1, anon_sym_LPAREN, 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, - 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, - [49766] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3191), 15, + ACTIONS(3201), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112867,13 +115352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49788] = 3, - ACTIONS(2680), 1, + [49839] = 3, + ACTIONS(2762), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 14, + ACTIONS(2760), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112888,13 +115373,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49812] = 3, - ACTIONS(2666), 1, + [49863] = 3, + ACTIONS(2746), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 14, + ACTIONS(2744), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112909,55 +115394,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49836] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2634), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2636), 13, - anon_sym_SEMI, + [49887] = 13, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3459), 1, + anon_sym_AT, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3519), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3521), 1, anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, + ACTIONS(3524), 1, anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [49860] = 3, + STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2604), 13, + ACTIONS(2574), 2, 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_PLUS, + ACTIONS(3445), 2, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [49884] = 3, - ACTIONS(3499), 1, - anon_sym_COLON_COLON, + 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(3187), 14, + ACTIONS(3219), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112972,107 +115444,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49908] = 3, - ACTIONS(2738), 1, - anon_sym_COLON, + sym_identifier, + [49953] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3189), 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, + [49975] = 14, + ACTIONS(2574), 1, 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, + ACTIONS(3445), 1, anon_sym_PIPE, - [49932] = 13, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3437), 1, + ACTIONS(3449), 1, anon_sym_LBRACE, - ACTIONS(3445), 1, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3459), 1, anon_sym_AT, - ACTIONS(3501), 1, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3526), 1, anon_sym_LPAREN, - ACTIONS(3503), 1, - anon_sym_RBRACK, - ACTIONS(3506), 1, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - STATE(1364), 1, - sym_type_arguments, STATE(1382), 1, + sym_type_arguments, + STATE(1402), 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, + ACTIONS(3455), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49976] = 3, - ACTIONS(2662), 1, - anon_sym_COLON, + 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(2660), 14, + 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_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [50000] = 3, + [50051] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2624), 13, + ACTIONS(2970), 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_COLON, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, + sym_mutable_specifier, anon_sym_PIPE, - [50024] = 3, - ACTIONS(2774), 1, - anon_sym_COLON_COLON, + sym_self, + [50073] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3187), 14, + ACTIONS(3207), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -113087,43 +115560,45 @@ 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, + sym_identifier, + [50095] = 13, + ACTIONS(3445), 1, anon_sym_PIPE, - ACTIONS(3437), 1, + ACTIONS(3449), 1, anon_sym_LBRACE, - ACTIONS(3439), 1, + ACTIONS(3451), 1, anon_sym_COLON, - ACTIONS(3445), 1, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3459), 1, anon_sym_AT, - ACTIONS(3508), 1, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3532), 1, anon_sym_LPAREN, - ACTIONS(3510), 1, + ACTIONS(3534), 1, anon_sym_COLON_COLON, - STATE(1364), 1, - sym_type_arguments, STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3503), 2, + ACTIONS(2574), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [50094] = 2, + [50139] = 3, + ACTIONS(3536), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3179), 15, + ACTIONS(3203), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -113138,36 +115613,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [50116] = 6, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3512), 1, + [50163] = 3, + ACTIONS(2834), 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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3209), 15, + ACTIONS(3203), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -113182,45 +115634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, 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, - 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, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [50212] = 3, - ACTIONS(2710), 1, + [50187] = 3, + ACTIONS(2758), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 14, + ACTIONS(2756), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113235,125 +115655,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50236] = 5, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3520), 2, + [50211] = 3, + ACTIONS(2688), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3518), 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, - [50263] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 14, + ACTIONS(2686), 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_DASH_GT, anon_sym_GT, - anon_sym_PIPE, - [50284] = 4, - ACTIONS(2608), 1, - anon_sym_COLON, - ACTIONS(3526), 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, - [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, + [50235] = 3, + ACTIONS(2684), 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, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 14, + ACTIONS(2682), 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_DASH_GT, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [50375] = 3, - ACTIONS(3536), 1, + [50259] = 3, + ACTIONS(3538), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 13, + ACTIONS(2722), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113367,15 +115717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50398] = 4, - ACTIONS(2608), 1, + [50282] = 4, + ACTIONS(2650), 1, anon_sym_COLON, - ACTIONS(3538), 1, + ACTIONS(3540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 12, + ACTIONS(2648), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113388,55 +115738,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50423] = 4, - ACTIONS(2628), 1, - anon_sym_COLON, - ACTIONS(3526), 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_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50448] = 4, - ACTIONS(2586), 1, anon_sym_COLON, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2584), 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_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50473] = 3, - ACTIONS(3540), 1, + [50328] = 3, + ACTIONS(3542), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 13, + ACTIONS(2706), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113450,19 +115777,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50496] = 3, - ACTIONS(3542), 1, - anon_sym_DASH_GT, + [50351] = 4, + ACTIONS(2650), 1, + anon_sym_COLON, + ACTIONS(3205), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 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, @@ -113470,13 +115798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50519] = 3, + [50376] = 3, ACTIONS(3544), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 13, + ACTIONS(2690), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113490,11 +115818,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50542] = 2, + [50399] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 14, + ACTIONS(2718), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113509,69 +115837,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50563] = 3, - ACTIONS(3546), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2668), 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, - [50586] = 3, - ACTIONS(2403), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2405), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + [50420] = 4, + ACTIONS(2650), 1, 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, - [50609] = 2, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 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, - [50630] = 4, + [50445] = 4, ACTIONS(3550), 1, anon_sym_pat, - STATE(567), 1, + STATE(587), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, @@ -113589,97 +115879,40 @@ 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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2740), 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, - [50678] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2674), 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, + [50470] = 3, + ACTIONS(2417), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [50699] = 3, - ACTIONS(3554), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 13, + ACTIONS(2419), 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, - [50722] = 4, - ACTIONS(2608), 1, + [50493] = 4, + ACTIONS(2610), 1, anon_sym_COLON, - ACTIONS(3195), 1, + ACTIONS(3546), 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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2800), 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, @@ -113687,11 +115920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50767] = 2, + [50518] = 3, + ACTIONS(3552), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2910), 13, + ACTIONS(2728), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113705,11 +115940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50787] = 2, + [50541] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 13, + ACTIONS(2740), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113721,13 +115956,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, - [50807] = 2, + [50562] = 3, + ACTIONS(3554), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2936), 13, + ACTIONS(2764), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113741,11 +115979,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50827] = 2, + [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(2574), 2, + anon_sym_PLUS, + anon_sym_as, + [50630] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 13, + ACTIONS(2752), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113757,13 +116026,36 @@ 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, - [50847] = 2, + [50651] = 5, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 13, + ACTIONS(3566), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3564), 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, + [50678] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2774), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113775,13 +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, - [50867] = 2, + [50699] = 3, + ACTIONS(3572), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2890), 13, + ACTIONS(2734), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113795,11 +116090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50887] = 2, + [50722] = 3, + ACTIONS(3574), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2906), 13, + ACTIONS(2698), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113813,17 +116110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50907] = 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(2980), 13, + 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, @@ -113831,30 +116131,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50927] = 3, + [50770] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(3010), 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(2616), 11, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [50790] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2938), 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, - [50949] = 2, + [50810] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(574), 13, + ACTIONS(2644), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113868,11 +116185,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50969] = 2, + [50830] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2940), 13, + ACTIONS(2788), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113886,11 +116203,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50989] = 2, + [50850] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2788), 13, + ACTIONS(582), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113904,11 +116221,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51009] = 2, + [50870] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2868), 13, + ACTIONS(2916), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113922,11 +116239,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51029] = 2, + [50890] = 3, + ACTIONS(3578), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 13, + ACTIONS(3576), 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, + [50912] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2998), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113940,11 +116276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51049] = 2, + [50932] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 13, + ACTIONS(2930), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113958,11 +116294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51069] = 2, + [50952] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 13, + ACTIONS(2920), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113976,30 +116312,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51089] = 3, - ACTIONS(3558), 1, + [50972] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2954), 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, + [50992] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3556), 12, + ACTIONS(640), 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, + [51012] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2796), 13, + ACTIONS(2892), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114013,11 +116366,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51131] = 2, + [51032] = 4, + ACTIONS(3451), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3445), 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, + [51056] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(676), 13, + ACTIONS(2912), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114031,11 +116404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51151] = 2, + [51076] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(652), 13, + ACTIONS(2904), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114049,11 +116422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51171] = 2, + [51096] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 13, + ACTIONS(2908), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114067,11 +116440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51191] = 2, + [51116] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 13, + ACTIONS(2954), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114085,11 +116458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51211] = 2, + [51136] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2948), 13, + ACTIONS(2608), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114103,11 +116476,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51231] = 2, + [51156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 13, + ACTIONS(2632), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2634), 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, + [51178] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2942), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114121,11 +116513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51251] = 2, + [51198] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2914), 13, + ACTIONS(624), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114139,11 +116531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51271] = 2, + [51218] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2932), 13, + ACTIONS(652), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114157,13 +116549,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51291] = 3, - ACTIONS(3562), 1, + [51238] = 3, + ACTIONS(3582), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3560), 12, + ACTIONS(3580), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114176,11 +116568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51313] = 2, + [51260] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2840), 13, + ACTIONS(2822), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114194,31 +116586,29 @@ 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, + [51280] = 2, 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, + 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_in, + anon_sym_GT, anon_sym_PIPE, - [51357] = 2, + [51300] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2922), 13, + ACTIONS(2966), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114232,350 +116622,367 @@ 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, + [51320] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 5, + ACTIONS(2962), 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_LT2, - ACTIONS(2624), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [51402] = 3, - ACTIONS(526), 1, - anon_sym_EQ, + [51340] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(524), 11, + 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_GT, - anon_sym_in, anon_sym_PIPE, - [51423] = 5, - ACTIONS(2634), 1, - anon_sym_COLON, - ACTIONS(3567), 1, - anon_sym_LPAREN, + [51360] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 5, + ACTIONS(2900), 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_LT2, - ACTIONS(2636), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [51448] = 10, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, + [51380] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2950), 13, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, - ACTIONS(3445), 1, - anon_sym_AT, - ACTIONS(3570), 1, - anon_sym_BANG, - STATE(1364), 1, - sym_type_arguments, + 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, + [51400] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3584), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2620), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2626), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3433), 3, - anon_sym_EQ_GT, - anon_sym_if, anon_sym_PIPE, - [51483] = 5, - ACTIONS(2614), 1, + [51423] = 5, + ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(3572), 1, + ACTIONS(3587), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 5, + ACTIONS(2612), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2616), 5, + ACTIONS(2618), 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, + [51448] = 4, + ACTIONS(3594), 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, + [51471] = 5, + ACTIONS(2624), 1, anon_sym_COLON, - ACTIONS(3575), 1, + ACTIONS(3584), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 5, + ACTIONS(2620), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2604), 5, + ACTIONS(2626), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51533] = 4, + [51496] = 5, + ACTIONS(2632), 1, + anon_sym_COLON, + ACTIONS(3596), 1, + anon_sym_LPAREN, 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(2628), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2604), 6, + ACTIONS(2634), 5, anon_sym_BANG, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51556] = 4, + [51521] = 5, + ACTIONS(2640), 1, + anon_sym_COLON, + ACTIONS(3599), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3572), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2610), 4, - anon_sym_SEMI, + ACTIONS(2636), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2616), 6, + ACTIONS(2642), 5, anon_sym_BANG, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51579] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3567), 2, + [51546] = 10, + ACTIONS(3447), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2630), 4, - anon_sym_SEMI, + ACTIONS(3449), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3453), 1, + anon_sym_COLON_COLON, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(2636), 6, + ACTIONS(3459), 1, + anon_sym_AT, + ACTIONS(3602), 1, anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + 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_EQ_GT, + anon_sym_if, anon_sym_PIPE, - [51602] = 4, + [51581] = 3, + ACTIONS(540), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3564), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2618), 4, + ACTIONS(538), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2624), 6, - anon_sym_BANG, + 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_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [51625] = 5, - ACTIONS(2602), 1, + [51602] = 5, + ACTIONS(2616), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 3, + ACTIONS(2612), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3575), 3, + ACTIONS(3587), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - 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, - [51650] = 3, - ACTIONS(546), 1, - anon_sym_EQ, + [51627] = 4, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(544), 11, + ACTIONS(3606), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3604), 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, - [51671] = 3, - ACTIONS(552), 1, - anon_sym_EQ, + [51650] = 4, + ACTIONS(3614), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(550), 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, - [51692] = 5, - ACTIONS(2614), 1, + [51673] = 5, + ACTIONS(2624), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 3, + ACTIONS(2620), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3572), 3, + ACTIONS(3584), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2616), 5, + ACTIONS(2626), 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, + [51698] = 5, + ACTIONS(2632), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 3, + ACTIONS(2628), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3567), 3, + ACTIONS(3596), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2636), 5, + ACTIONS(2634), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51742] = 4, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3580), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3578), 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, - [51765] = 5, - ACTIONS(2622), 1, + [51723] = 5, + ACTIONS(2640), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 3, + ACTIONS(2636), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3564), 3, + ACTIONS(3599), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2624), 5, + ACTIONS(2642), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51790] = 4, - ACTIONS(3588), 1, + [51748] = 4, + ACTIONS(3608), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3586), 2, + ACTIONS(3618), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3584), 9, + ACTIONS(3616), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114585,16 +116992,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51813] = 4, - ACTIONS(3499), 1, + [51771] = 4, + ACTIONS(3614), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3586), 2, + ACTIONS(3592), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3584), 9, + ACTIONS(3590), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114604,16 +117011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51836] = 4, - ACTIONS(3590), 1, + [51794] = 4, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3586), 2, + ACTIONS(3612), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3584), 9, + ACTIONS(3610), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114623,16 +117030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51859] = 4, - ACTIONS(3588), 1, + [51817] = 4, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, + ACTIONS(3592), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3592), 9, + ACTIONS(3590), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114642,54 +117049,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51882] = 4, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, + [51840] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 2, - anon_sym_COLON, + 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(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, + [51863] = 3, + ACTIONS(520), 1, anon_sym_EQ, - ACTIONS(3596), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(518), 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, - [51905] = 4, - ACTIONS(3499), 1, - anon_sym_COLON_COLON, + [51884] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, - anon_sym_COLON, + 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(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, + [51907] = 3, + ACTIONS(550), 1, anon_sym_EQ, - ACTIONS(3592), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(548), 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, [51928] = 4, - ACTIONS(3590), 1, + ACTIONS(3594), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, + ACTIONS(3612), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3592), 9, + ACTIONS(3610), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114699,36 +117142,32 @@ static const uint16_t ts_small_parse_table[] = { 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, + [51951] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(3599), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2636), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [51983] = 3, - ACTIONS(3604), 1, + anon_sym_LT2, + 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, + [51974] = 3, + ACTIONS(3622), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 10, + ACTIONS(3620), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114739,13 +117178,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52003] = 3, - ACTIONS(3586), 1, + [51994] = 3, + ACTIONS(3626), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 10, + ACTIONS(3624), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114756,36 +117195,52 @@ 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, + [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(2564), 4, + ACTIONS(3628), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52055] = 3, - ACTIONS(3610), 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(3636), 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, + [52064] = 3, + ACTIONS(3640), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 10, + ACTIONS(3638), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114796,59 +117251,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52075] = 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(3612), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, + [52084] = 3, + ACTIONS(3644), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(3642), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52107] = 9, - ACTIONS(3425), 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(3427), 1, + ACTIONS(3463), 1, anon_sym_BANG, - ACTIONS(3429), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3614), 1, + ACTIONS(3646), 1, anon_sym_for, - STATE(1364), 1, - sym_type_arguments, STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(2574), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52139] = 3, - ACTIONS(3618), 1, + [52136] = 3, + ACTIONS(3612), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 10, + ACTIONS(3610), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114859,13 +117308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52159] = 3, - ACTIONS(3622), 1, + [52156] = 3, + ACTIONS(3650), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 10, + ACTIONS(3648), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114876,13 +117325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52179] = 3, - ACTIONS(3626), 1, + [52176] = 3, + ACTIONS(3592), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 10, + ACTIONS(3590), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114893,13 +117342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52199] = 3, - ACTIONS(3630), 1, + [52196] = 3, + ACTIONS(3654), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 10, + ACTIONS(3652), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114910,13 +117359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52219] = 3, - ACTIONS(3634), 1, + [52216] = 3, + ACTIONS(3658), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3632), 10, + ACTIONS(3656), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114927,36 +117376,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52239] = 9, - ACTIONS(3425), 1, + [52236] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3463), 1, anon_sym_BANG, - ACTIONS(3429), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3636), 1, + ACTIONS(3660), 1, anon_sym_for, - STATE(1364), 1, - sym_type_arguments, STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(2574), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52271] = 3, - ACTIONS(3594), 1, + [52268] = 3, + ACTIONS(3664), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3592), 10, + ACTIONS(3662), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114967,13 +117416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52291] = 3, - ACTIONS(3640), 1, + [52288] = 3, + ACTIONS(3668), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3638), 10, + ACTIONS(3666), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114984,13 +117433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52311] = 3, - ACTIONS(3644), 1, + [52308] = 3, + ACTIONS(3672), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 10, + ACTIONS(3670), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115001,36 +117450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52331] = 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(3646), 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, - [52363] = 3, - ACTIONS(3650), 1, + [52328] = 3, + ACTIONS(3676), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3648), 10, + ACTIONS(3674), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115041,33 +117467,13 @@ 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, - anon_sym_BANG, - ACTIONS(3656), 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, - [52409] = 3, - ACTIONS(3660), 1, + [52348] = 3, + ACTIONS(3680), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 10, + ACTIONS(3678), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115078,13 +117484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52429] = 3, - ACTIONS(3664), 1, + [52368] = 3, + ACTIONS(3684), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3662), 10, + ACTIONS(3682), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115095,13 +117501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52449] = 3, - ACTIONS(3668), 1, + [52388] = 3, + ACTIONS(600), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3666), 10, + ACTIONS(598), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115112,13 +117518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52469] = 3, - ACTIONS(3672), 1, + [52408] = 3, + ACTIONS(3688), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3670), 10, + ACTIONS(3686), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115129,32 +117535,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52489] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3676), 1, - sym_crate, - STATE(1574), 1, - sym_string_literal, + [52428] = 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(3690), 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(3674), 8, + ACTIONS(2574), 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, - [52513] = 3, - ACTIONS(3439), 1, + anon_sym_PLUS, + anon_sym_where, + [52460] = 3, + ACTIONS(3694), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 10, + ACTIONS(3692), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115165,50 +117575,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52533] = 3, - ACTIONS(3680), 1, - anon_sym_EQ, + [52480] = 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(3696), 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(3678), 10, + ACTIONS(2574), 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, - [52553] = 6, - ACTIONS(3652), 1, - anon_sym_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [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(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, + 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, - [52579] = 3, - ACTIONS(3686), 1, + [52536] = 3, + ACTIONS(3702), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 10, + ACTIONS(3700), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115219,51 +117634,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52599] = 3, - ACTIONS(3690), 1, - anon_sym_EQ, + [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(3688), 10, + ACTIONS(2574), 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, - [52619] = 3, - ACTIONS(580), 1, - anon_sym_EQ, + 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(578), 10, + ACTIONS(2574), 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, + [52620] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3692), 1, + ACTIONS(3708), 1, sym_crate, STATE(1574), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 8, + ACTIONS(3628), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -115272,13 +117699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52663] = 3, - ACTIONS(3696), 1, + [52644] = 3, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3694), 10, + ACTIONS(3710), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115289,13 +117716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52683] = 3, - ACTIONS(3700), 1, + [52664] = 3, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 10, + ACTIONS(3714), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115306,13 +117733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52703] = 3, - ACTIONS(3704), 1, + [52684] = 3, + ACTIONS(3720), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3702), 10, + ACTIONS(3718), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115323,17 +117750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52723] = 5, + [52704] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3706), 1, + ACTIONS(3722), 1, sym_crate, STATE(1574), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 8, + ACTIONS(3628), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -115342,13 +117769,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52747] = 3, - ACTIONS(3710), 1, + [52728] = 3, + ACTIONS(3726), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 10, + ACTIONS(3724), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115359,55 +117786,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52767] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3712), 1, - sym_crate, - STATE(1574), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3674), 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, - [52791] = 9, - ACTIONS(3425), 1, + [52748] = 9, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3463), 1, anon_sym_BANG, - ACTIONS(3429), 1, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3714), 1, + ACTIONS(3728), 1, anon_sym_for, - STATE(1364), 1, - sym_type_arguments, STATE(1382), 1, + sym_type_arguments, + STATE(1402), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(2574), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52823] = 3, - ACTIONS(3718), 1, + [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(3716), 10, + ACTIONS(3732), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115418,13 +117846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52843] = 3, - ACTIONS(3722), 1, + [52826] = 3, + ACTIONS(3451), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3720), 10, + ACTIONS(3445), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115435,13 +117863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52863] = 3, - ACTIONS(3726), 1, + [52846] = 3, + ACTIONS(3738), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3724), 10, + ACTIONS(3736), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115452,13 +117880,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52883] = 3, - ACTIONS(3730), 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(3728), 10, + ACTIONS(3742), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115469,13 +117920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52903] = 3, - ACTIONS(3734), 1, + [52918] = 3, + ACTIONS(3748), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3732), 10, + ACTIONS(3746), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115486,13 +117937,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52923] = 3, - ACTIONS(3738), 1, + [52938] = 3, + ACTIONS(3752), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3736), 10, + ACTIONS(3750), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115503,288 +117954,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52943] = 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(3740), 1, - anon_sym_for, - STATE(1364), 1, - sym_type_arguments, - STATE(1382), 1, - sym_parameters, + [52958] = 3, + ACTIONS(3756), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 4, + ACTIONS(3754), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52975] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3744), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3746), 1, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - ACTIONS(3748), 1, - sym_crate, - STATE(2066), 1, - sym_enum_variant, - STATE(2436), 1, - sym_visibility_modifier, + anon_sym_in, + anon_sym_PIPE, + [52978] = 3, + ACTIONS(3760), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1586), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53008] = 5, - ACTIONS(3654), 1, + ACTIONS(3758), 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] = 5, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3750), 1, + ACTIONS(3730), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3570), 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(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53056] = 5, - ACTIONS(3654), 1, + [53021] = 5, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3656), 1, + ACTIONS(3762), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53079] = 10, + [53044] = 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(3764), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3766), 1, anon_sym_RBRACE, - ACTIONS(3758), 1, + ACTIONS(3768), 1, anon_sym_COMMA, - STATE(2104), 1, - sym_field_declaration, - STATE(2378), 1, + 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, - STATE(1570), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53112] = 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(3760), 1, - anon_sym_EQ, - STATE(1382), 1, - sym_parameters, - STATE(1754), 1, - sym_type_arguments, + [53077] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3772), 1, + anon_sym_RBRACE, + ACTIONS(3774), 1, + anon_sym_COMMA, + STATE(1921), 1, + sym_enum_variant, + STATE(2532), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 3, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [53143] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, + STATE(1568), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53110] = 7, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3762), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, anon_sym_LBRACE, - STATE(1358), 1, + STATE(1381), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 5, + ACTIONS(2648), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [53170] = 10, + [53137] = 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(3770), 1, sym_crate, - ACTIONS(3764), 1, + ACTIONS(3778), 1, + sym_identifier, + ACTIONS(3780), 1, anon_sym_RBRACE, - ACTIONS(3766), 1, + ACTIONS(3782), 1, anon_sym_COMMA, - STATE(1910), 1, - sym_enum_variant, - STATE(2436), 1, + STATE(1901), 1, + sym_field_declaration, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1556), 2, + STATE(1578), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53203] = 5, - ACTIONS(3654), 1, + [53170] = 8, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3784), 1, + sym_identifier, + ACTIONS(3786), 1, + 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(1812), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2102), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53199] = 5, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3682), 1, + ACTIONS(3636), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, + ACTIONS(2598), 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, + [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(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, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(1915), 1, - sym__literal, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53247] = 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(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(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, - [53276] = 8, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3770), 1, - sym_identifier, - ACTIONS(3772), 1, - anon_sym_RBRACE, - ACTIONS(3774), 1, + ACTIONS(2574), 3, + anon_sym_PLUS, 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, + anon_sym_GT, + [53278] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3754), 1, - sym_identifier, ACTIONS(3778), 1, + sym_identifier, + ACTIONS(3796), 1, anon_sym_RBRACE, - ACTIONS(3780), 1, + ACTIONS(3798), 1, anon_sym_COMMA, - STATE(2081), 1, + STATE(2119), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, @@ -115792,1442 +118216,1553 @@ static const uint16_t ts_small_parse_table[] = { STATE(1557), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53338] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3782), 1, - anon_sym_RBRACE, - STATE(2222), 1, - sym_enum_variant, - STATE(2436), 1, - sym_visibility_modifier, + [53311] = 10, + ACTIONS(3800), 1, + anon_sym_SEMI, + ACTIONS(3802), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + 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, - STATE(1566), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53368] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3754), 1, - sym_identifier, - ACTIONS(3784), 1, - anon_sym_RBRACE, - STATE(2203), 1, - sym_field_declaration, - STATE(2378), 1, - sym_visibility_modifier, + [53343] = 7, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3810), 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(1562), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53398] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3754), 1, + ACTIONS(2648), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53369] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3812), 1, sym_identifier, - ACTIONS(3786), 1, - anon_sym_RBRACE, - STATE(2203), 1, - sym_field_declaration, - STATE(2378), 1, - sym_visibility_modifier, + STATE(104), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53428] = 9, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3788), 1, - sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3814), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3792), 1, - anon_sym_GT, - ACTIONS(3794), 1, - sym_metavariable, - STATE(1871), 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, - [53458] = 10, - ACTIONS(3796), 1, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53391] = 5, + ACTIONS(3816), 1, anon_sym_SEMI, - ACTIONS(3798), 1, - anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(261), 1, - sym_field_declaration_list, - STATE(1606), 1, - sym_type_parameters, - STATE(2067), 1, - sym_ordered_field_declaration_list, - STATE(2293), 1, - sym_where_clause, + STATE(312), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53490] = 9, + ACTIONS(2598), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53413] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3806), 1, + ACTIONS(3778), 1, + sym_identifier, + ACTIONS(3820), 1, anon_sym_RBRACE, - STATE(2222), 1, - sym_enum_variant, - STATE(2436), 1, + STATE(2225), 1, + sym_field_declaration, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53520] = 5, - ACTIONS(3808), 1, + [53443] = 5, + ACTIONS(3822), 1, anon_sym_SEMI, - ACTIONS(3810), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(1013), 1, + STATE(842), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53542] = 9, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3788), 1, + [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(3790), 1, - anon_sym_const, - ACTIONS(3794), 1, - sym_metavariable, - ACTIONS(3812), 1, - anon_sym_GT, - STATE(1865), 1, - sym_lifetime, - STATE(1919), 1, - sym_constrained_type_parameter, + 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, - STATE(2267), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53572] = 7, - ACTIONS(2323), 1, + 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(3770), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3776), 1, - anon_sym_DOT_DOT, - ACTIONS(3814), 1, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3828), 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(1857), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2240), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53598] = 9, - ACTIONS(2319), 1, + [53525] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3794), 1, - sym_metavariable, - ACTIONS(3816), 1, + ACTIONS(3834), 1, anon_sym_GT, - STATE(1865), 1, + ACTIONS(3836), 1, + sym_metavariable, + STATE(1821), 1, sym_lifetime, - STATE(1919), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [53628] = 7, - ACTIONS(3425), 1, + [53555] = 10, + ACTIONS(3802), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3818), 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, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(3838), 1, anon_sym_SEMI, + ACTIONS(3840), 1, 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, - ACTIONS(3820), 1, - anon_sym_RBRACE, + 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(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, - anon_sym_BANG, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_COLON, - ACTIONS(3822), 1, - anon_sym_COLON_COLON, + [53587] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3830), 1, + sym_identifier, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3836), 1, + sym_metavariable, + ACTIONS(3842), 1, + anon_sym_GT, + STATE(1881), 1, + sym_lifetime, + STATE(2071), 1, + sym_constrained_type_parameter, 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_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [53706] = 9, + STATE(2206), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53617] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3824), 1, + ACTIONS(3844), 1, anon_sym_RBRACE, - STATE(2222), 1, + STATE(2325), 1, sym_enum_variant, - STATE(2436), 1, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53736] = 10, - ACTIONS(3798), 1, + [53647] = 7, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 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(3846), 1, + anon_sym_for, + STATE(1381), 1, + sym_type_arguments, + STATE(1386), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53768] = 9, + ACTIONS(2648), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53673] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3830), 1, + ACTIONS(3848), 1, anon_sym_RBRACE, - STATE(2203), 1, + STATE(2225), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53798] = 9, - ACTIONS(2319), 1, + [53703] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(3832), 1, + ACTIONS(3850), 1, anon_sym_GT, - STATE(1865), 1, + STATE(1821), 1, sym_lifetime, - STATE(1919), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2206), 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, + [53733] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3830), 1, + sym_identifier, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3836), 1, + sym_metavariable, + ACTIONS(3852), 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, - ACTIONS(2606), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53854] = 9, + STATE(2206), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53763] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3754), 1, + 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, + 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(3764), 1, sym_identifier, - ACTIONS(3836), 1, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3856), 1, anon_sym_RBRACE, - STATE(2203), 1, - sym_field_declaration, - STATE(2378), 1, + STATE(2325), 1, + sym_enum_variant, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53884] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, + [53823] = 7, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3838), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3858), 1, anon_sym_for, - STATE(1358), 1, + STATE(1381), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53910] = 9, - ACTIONS(2319), 1, + [53849] = 7, + ACTIONS(3447), 1, + anon_sym_LPAREN, + 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, + 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(3788), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(3840), 1, + ACTIONS(3862), 1, anon_sym_GT, - STATE(1865), 1, + STATE(1821), 1, sym_lifetime, - STATE(1919), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [53940] = 5, - ACTIONS(3842), 1, - anon_sym_SEMI, - ACTIONS(3844), 1, + [53905] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3764), 1, + sym_identifier, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3864), 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(1569), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53935] = 5, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(466), 1, + ACTIONS(3866), 1, + anon_sym_SEMI, + STATE(468), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53962] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, + [53957] = 7, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3846), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, anon_sym_for, - STATE(1358), 1, + STATE(1381), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53988] = 9, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3788), 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, + [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, - STATE(2267), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54018] = 9, + 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(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, - sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3850), 1, + ACTIONS(3778), 1, + sym_identifier, + ACTIONS(3872), 1, anon_sym_RBRACE, - STATE(2222), 1, - sym_enum_variant, - STATE(2436), 1, + STATE(2225), 1, + sym_field_declaration, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54048] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3754), 1, + [54035] = 9, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3852), 1, - anon_sym_RBRACE, - STATE(2203), 1, - sym_field_declaration, - STATE(2378), 1, - sym_visibility_modifier, + 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(1562), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54078] = 5, - ACTIONS(3810), 1, + STATE(2206), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54065] = 7, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3876), 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, - ACTIONS(3854), 1, + anon_sym_PLUS, + anon_sym_where, + [54091] = 5, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3878), 1, anon_sym_SEMI, - STATE(1039), 1, + STATE(808), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54100] = 9, - ACTIONS(2319), 1, + [54113] = 7, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3461), 1, + anon_sym_LPAREN, + 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, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54139] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(3856), 1, + ACTIONS(3882), 1, anon_sym_GT, - STATE(1865), 1, + STATE(1821), 1, sym_lifetime, - STATE(1919), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [54130] = 9, - ACTIONS(2319), 1, + [54169] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(3858), 1, + ACTIONS(3884), 1, anon_sym_GT, - STATE(1865), 1, + STATE(1821), 1, sym_lifetime, - STATE(1919), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2206), 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, + [54199] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_crate, + ACTIONS(3778), 1, + sym_identifier, + ACTIONS(3886), 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, - [54192] = 9, - ACTIONS(2319), 1, + STATE(1588), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54229] = 9, + ACTIONS(2329), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(3790), 1, + ACTIONS(3832), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(3862), 1, + ACTIONS(3888), 1, anon_sym_GT, - STATE(1865), 1, + STATE(1821), 1, sym_lifetime, - STATE(1919), 1, + STATE(2071), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2267), 2, + STATE(2206), 2, sym_const_parameter, sym_optional_type_parameter, - [54222] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, + [54259] = 7, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3864), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3890), 1, anon_sym_for, - STATE(1358), 1, + STATE(1381), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54248] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, + [54285] = 7, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3784), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_DOT_DOT, + ACTIONS(3892), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + 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, + [54311] = 7, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(3866), 1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3894), 1, anon_sym_for, - STATE(1358), 1, + STATE(1381), 1, sym_type_arguments, - STATE(1383), 1, + STATE(1386), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54274] = 5, - ACTIONS(15), 1, + [54337] = 10, + ACTIONS(3802), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(3868), 1, - anon_sym_move, - STATE(95), 1, - sym_block, + 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, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54296] = 9, + [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(3784), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_DOT_DOT, + ACTIONS(3900), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + 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, + [54427] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3870), 1, + ACTIONS(3902), 1, anon_sym_RBRACE, - STATE(2222), 1, + STATE(2325), 1, sym_enum_variant, - STATE(2436), 1, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54326] = 9, + [54457] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3872), 1, + ACTIONS(3904), 1, anon_sym_RBRACE, - STATE(2203), 1, + STATE(2225), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54356] = 7, - ACTIONS(3425), 1, + [54487] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_crate, + 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(1153), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [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, + 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(3906), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54556] = 8, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3910), 1, + sym_identifier, + ACTIONS(3912), 1, + sym_metavariable, + STATE(1693), 1, + sym_lifetime, + STATE(1857), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1980), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54583] = 8, + ACTIONS(3914), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3874), 1, - anon_sym_for, - STATE(1358), 1, - sym_type_arguments, - STATE(1383), 1, - sym_parameters, + ACTIONS(3919), 1, + anon_sym_LBRACE, + ACTIONS(3922), 1, + 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, - ACTIONS(2606), 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(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(3878), 6, + ACTIONS(3628), 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, + [54629] = 9, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3880), 1, - anon_sym_SEMI, - STATE(904), 1, - sym_field_declaration_list, - STATE(1617), 1, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(3927), 1, + anon_sym_LT, + STATE(1025), 1, + sym_declaration_list, + STATE(1673), 1, sym_type_parameters, - STATE(2123), 1, - sym_ordered_field_declaration_list, - STATE(2156), 1, + STATE(1805), 1, + sym_trait_bounds, + STATE(2204), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54436] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3882), 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, - [54462] = 5, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(3884), 1, - anon_sym_SEMI, - STATE(409), 1, - sym_declaration_list, + [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(2592), 6, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54484] = 9, + [54677] = 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(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, + [54706] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3886), 1, - anon_sym_RBRACE, - STATE(2222), 1, + STATE(2155), 1, sym_enum_variant, - STATE(2436), 1, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54514] = 6, - ACTIONS(3427), 1, - anon_sym_BANG, - ACTIONS(3435), 1, + [54733] = 6, + ACTIONS(3447), 1, anon_sym_LPAREN, - ACTIONS(3888), 1, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3929), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3433), 3, + ACTIONS(3445), 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, + [54756] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(3764), 1, + sym_identifier, + 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, - ACTIONS(3893), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [54564] = 4, - ACTIONS(888), 1, + STATE(1153), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [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, + STATE(1153), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54810] = 9, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(1478), 1, - sym_block, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(3927), 1, + anon_sym_LT, + STATE(378), 1, + sym_declaration_list, + STATE(1711), 1, + sym_type_parameters, + STATE(1874), 1, + sym_trait_bounds, + STATE(2294), 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, - [54583] = 6, - ACTIONS(3518), 1, - anon_sym_PIPE, - ACTIONS(3520), 1, + [54839] = 9, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, + ACTIONS(3927), 1, + anon_sym_LT, + STATE(492), 1, + sym_declaration_list, + STATE(1701), 1, + sym_type_parameters, + STATE(1886), 1, + sym_trait_bounds, + STATE(2281), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [54606] = 4, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - STATE(1574), 1, - sym_string_literal, + [54868] = 9, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(3927), 1, + anon_sym_LT, + STATE(301), 1, + sym_declaration_list, + STATE(1707), 1, + sym_type_parameters, + STATE(1869), 1, + sym_trait_bounds, + STATE(2335), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, + [54897] = 5, + ACTIONS(3934), 1, anon_sym_fn, - anon_sym_unsafe, + ACTIONS(3936), 1, 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, + 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(3905), 6, + ACTIONS(3939), 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, + [54933] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3764), 1, sym_identifier, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - STATE(2023), 1, + STATE(2325), 1, sym_enum_variant, - STATE(2436), 1, + STATE(2532), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, + STATE(1569), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54698] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_crate, - ACTIONS(3754), 1, - sym_identifier, - STATE(1891), 1, - sym_field_declaration, - STATE(2378), 1, - sym_visibility_modifier, + [54960] = 6, + ACTIONS(3762), 1, + anon_sym_COLON_COLON, + ACTIONS(3941), 1, + anon_sym_RBRACK, 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, + ACTIONS(2648), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3564), 2, anon_sym_COMMA, - ACTIONS(3916), 1, - anon_sym_ref, - ACTIONS(3918), 1, - sym_mutable_specifier, + 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(3830), 1, + sym_identifier, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3836), 1, + sym_metavariable, + STATE(1821), 1, + sym_lifetime, + STATE(2071), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2009), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54752] = 6, - ACTIONS(2323), 1, + STATE(2206), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55010] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2333), 1, anon_sym_POUND, ACTIONS(3770), 1, + sym_crate, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3776), 1, - anon_sym_DOT_DOT, + STATE(2150), 1, + sym_field_declaration, + STATE(2376), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1857), 2, + STATE(1153), 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, + [55037] = 4, + ACTIONS(3946), 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(3944), 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, + [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_COMMA, + ACTIONS(3955), 1, + anon_sym_ref, + ACTIONS(3957), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54823] = 8, + STATE(1940), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55083] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3778), 1, sym_identifier, - STATE(2168), 1, + STATE(2225), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, + STATE(1588), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54850] = 4, - ACTIONS(3928), 1, - anon_sym_PLUS, - STATE(1583), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3920), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54869] = 4, - ACTIONS(3930), 1, - anon_sym_PLUS, - STATE(1583), 1, - aux_sym_trait_bounds_repeat1, + [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(3920), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54888] = 9, - ACTIONS(3802), 1, + 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(3844), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(3926), 1, + ACTIONS(3927), 1, anon_sym_LT, - STATE(378), 1, + STATE(931), 1, sym_declaration_list, - STATE(1652), 1, + STATE(1650), 1, sym_type_parameters, - STATE(1791), 1, + STATE(1799), 1, sym_trait_bounds, - STATE(2207), 1, + STATE(2188), 1, sym_where_clause, 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, + [55158] = 8, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3949), 1, sym_identifier, - ACTIONS(3748), 1, - sym_crate, - STATE(2154), 1, - sym_enum_variant, - STATE(2436), 1, - sym_visibility_modifier, + 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, - STATE(1140), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54944] = 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(821), 1, - sym_declaration_list, - STATE(1669), 1, - sym_type_parameters, - STATE(1829), 1, - sym_trait_bounds, - STATE(2189), 1, - sym_where_clause, + STATE(2139), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55185] = 4, + ACTIONS(3908), 1, + anon_sym_PLUS, + STATE(1559), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54973] = 4, - ACTIONS(2720), 1, + ACTIONS(3965), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55204] = 6, + ACTIONS(3447), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, anon_sym_COLON_COLON, - ACTIONS(3932), 1, + ACTIONS(3602), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, + 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(3832), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54992] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(3742), 1, + ACTIONS(3910), 1, sym_identifier, - ACTIONS(3748), 1, - sym_crate, - STATE(2222), 1, - sym_enum_variant, - STATE(2436), 1, - sym_visibility_modifier, + ACTIONS(3912), 1, + sym_metavariable, + STATE(1774), 1, + sym_lifetime, + STATE(1857), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1566), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55019] = 8, + STATE(1980), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55254] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2323), 1, + ACTIONS(2333), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3770), 1, sym_crate, - ACTIONS(3754), 1, + ACTIONS(3778), 1, sym_identifier, - STATE(2103), 1, + STATE(2168), 1, sym_field_declaration, - STATE(2378), 1, + STATE(2376), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1140), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55046] = 6, - ACTIONS(3750), 1, + [55281] = 4, + ACTIONS(2674), 1, anon_sym_COLON_COLON, - ACTIONS(3934), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3518), 2, - 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, - anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(3926), 1, - anon_sym_LT, - STATE(316), 1, - sym_declaration_list, - STATE(1715), 1, - sym_type_parameters, - STATE(1845), 1, - sym_trait_bounds, - STATE(2303), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55098] = 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(897), 1, - sym_declaration_list, - STATE(1644), 1, - sym_type_parameters, - STATE(1795), 1, - sym_trait_bounds, - STATE(2214), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55127] = 2, + ACTIONS(3967), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3937), 8, - 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, - [55142] = 5, - ACTIONS(3941), 1, - anon_sym_fn, - ACTIONS(3943), 1, - anon_sym_extern, + [55300] = 8, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(3832), 1, + anon_sym_const, + ACTIONS(3969), 1, + sym_identifier, + 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, - STATE(1576), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3939), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [55163] = 5, - ACTIONS(3948), 1, - anon_sym_fn, - ACTIONS(3950), 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(1576), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3945), 4, + ACTIONS(2598), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [55184] = 8, - 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(3953), 1, - anon_sym_RBRACE, - ACTIONS(3955), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1983), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55211] = 6, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3512), 1, + anon_sym_extern, + [55346] = 6, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_COLON, + ACTIONS(3730), 1, anon_sym_COLON_COLON, - ACTIONS(3570), 1, - anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3570), 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, + ACTIONS(2648), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [55369] = 5, + ACTIONS(3977), 1, + anon_sym_fn, + ACTIONS(3979), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1573), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3975), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [55390] = 7, + ACTIONS(2648), 1, anon_sym_PLUS, - ACTIONS(3518), 1, + ACTIONS(3564), 1, anon_sym_PIPE, - ACTIONS(3520), 1, + ACTIONS(3566), 1, anon_sym_COLON, - ACTIONS(3656), 1, + ACTIONS(3636), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3934), 2, + ACTIONS(3941), 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(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2119), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55286] = 4, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3961), 1, - anon_sym_BANG, + [55415] = 4, + ACTIONS(904), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2598), 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, + [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(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55324] = 4, - ACTIONS(3922), 1, + ACTIONS(3965), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55453] = 4, + ACTIONS(3983), 1, anon_sym_PLUS, - STATE(1555), 1, + STATE(1559), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -117239,6694 +119774,6661 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55343] = 9, - ACTIONS(3802), 1, + [55472] = 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, - ACTIONS(3844), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55486] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3944), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(3926), 1, - anon_sym_LT, - STATE(468), 1, - sym_declaration_list, - STATE(1716), 1, - sym_type_parameters, - STATE(1841), 1, - sym_trait_bounds, - STATE(2234), 1, - sym_where_clause, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55500] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55372] = 8, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3944), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55514] = 3, + ACTIONS(3985), 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, 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(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(3451), 1, + anon_sym_COLON, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(3987), 1, + anon_sym_COLON_COLON, 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(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55554] = 2, 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, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_const, - ACTIONS(3957), 1, - sym_identifier, - ACTIONS(3959), 1, - sym_metavariable, - STATE(1747), 1, - sym_lifetime, - STATE(1862), 1, - sym_constrained_type_parameter, + ACTIONS(3989), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55568] = 3, + ACTIONS(3991), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2119), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55480] = 4, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, + 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(2592), 6, + ACTIONS(3814), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55499] = 7, + [55600] = 7, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3910), 1, + ACTIONS(3949), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3955), 1, anon_sym_ref, - ACTIONS(3918), 1, + ACTIONS(3957), 1, sym_mutable_specifier, - ACTIONS(3967), 1, + ACTIONS(3995), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2211), 2, + STATE(2322), 2, sym_field_pattern, sym_remaining_field_pattern, - [55523] = 8, - ACTIONS(3969), 1, + [55624] = 6, + ACTIONS(3802), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(3973), 1, - anon_sym_RBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - STATE(1550), 1, - aux_sym_macro_definition_repeat1, - STATE(2160), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + ACTIONS(3999), 1, + anon_sym_EQ, 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, + 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, - STATE(1591), 1, - aux_sym_macro_definition_repeat1, - STATE(2202), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55575] = 8, - ACTIONS(3969), 1, + STATE(2322), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55670] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(3979), 1, + ACTIONS(4007), 1, anon_sym_RBRACE, - STATE(1611), 1, + ACTIONS(4009), 1, + anon_sym_LBRACK, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2305), 1, + STATE(2167), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, 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, + [55696] = 3, + ACTIONS(4011), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55627] = 8, - ACTIONS(3969), 1, + ACTIONS(3814), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55712] = 3, + ACTIONS(3540), 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, + [55728] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(3983), 1, + ACTIONS(4013), 1, anon_sym_RBRACE, - STATE(1605), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2299), 1, + STATE(2165), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, 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, + [55754] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3985), 2, - anon_sym_RBRACE, + ACTIONS(4015), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(1998), 2, + 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, - [55675] = 6, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3993), 1, - anon_sym_EQ, - ACTIONS(3995), 1, - anon_sym_COLON_COLON, - STATE(2124), 1, - sym_meta_arguments, + STATE(2282), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3991), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55697] = 8, - ACTIONS(3969), 1, + [55794] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(3997), 1, + ACTIONS(4019), 1, anon_sym_RPAREN, - STATE(1604), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2292), 1, + STATE(2273), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55723] = 8, - ACTIONS(3969), 1, + [55820] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(3999), 1, + ACTIONS(4021), 1, anon_sym_RPAREN, - STATE(1550), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2264), 1, + STATE(2275), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55749] = 8, - ACTIONS(3969), 1, + [55846] = 3, + ACTIONS(2674), 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, + [55862] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4001), 1, + ACTIONS(4023), 1, anon_sym_RPAREN, - STATE(1550), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2266), 1, + STATE(2338), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55775] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4003), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55789] = 3, - ACTIONS(4005), 1, - sym_identifier, + [55888] = 3, + ACTIONS(4025), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3878), 6, + ACTIONS(2598), 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(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2211), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55829] = 8, - ACTIONS(3969), 1, + [55904] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, ACTIONS(4009), 1, - anon_sym_RPAREN, - STATE(1550), 1, + anon_sym_LBRACK, + ACTIONS(4027), 1, + anon_sym_RBRACE, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2283), 1, + STATE(2334), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55855] = 8, - ACTIONS(3969), 1, + [55930] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4011), 1, - anon_sym_RBRACE, - STATE(1550), 1, + ACTIONS(4029), 1, + anon_sym_RPAREN, + STATE(1615), 1, aux_sym_macro_definition_repeat1, - STATE(2281), 1, + STATE(2295), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55881] = 8, - ACTIONS(3798), 1, + [55956] = 8, + ACTIONS(3802), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4013), 1, + ACTIONS(4031), 1, anon_sym_SEMI, - STATE(456), 1, + STATE(897), 1, sym_field_declaration_list, - STATE(1932), 1, + STATE(2121), 1, sym_ordered_field_declaration_list, - STATE(2237), 1, + STATE(2205), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55907] = 8, - ACTIONS(3969), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(4015), 1, - anon_sym_RPAREN, - STATE(1550), 1, - aux_sym_macro_definition_repeat1, - STATE(2277), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55933] = 8, - ACTIONS(3969), 1, + [55982] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4017), 1, + ACTIONS(4033), 1, anon_sym_RPAREN, - STATE(1600), 1, + STATE(1616), 1, aux_sym_macro_definition_repeat1, - STATE(2291), 1, + STATE(2296), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55959] = 3, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, + [56008] = 3, + ACTIONS(4035), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(3814), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55975] = 8, - ACTIONS(3969), 1, + [56024] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4019), 1, + ACTIONS(4037), 1, anon_sym_RBRACE, - STATE(1550), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2162), 1, + STATE(2343), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56001] = 8, - ACTIONS(3969), 1, + [56050] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4039), 1, anon_sym_RBRACE, - STATE(1550), 1, + STATE(1609), 1, aux_sym_macro_definition_repeat1, - STATE(2274), 1, + STATE(2235), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 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, + [56076] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_COLON, - ACTIONS(4023), 1, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, + anon_sym_LBRACK, + ACTIONS(4041), 1, + anon_sym_RBRACE, + STATE(1612), 1, + aux_sym_macro_definition_repeat1, + STATE(2243), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [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_EQ, + STATE(2372), 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, + [56128] = 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, - [56067] = 8, - ACTIONS(3969), 1, + ACTIONS(3944), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [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(3971), 1, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, + anon_sym_LBRACK, + ACTIONS(4053), 1, + anon_sym_RPAREN, + STATE(1561), 1, + aux_sym_macro_definition_repeat1, + STATE(2324), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56182] = 8, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4027), 1, + ACTIONS(4055), 1, anon_sym_RBRACE, - STATE(1610), 1, + STATE(1620), 1, aux_sym_macro_definition_repeat1, - STATE(2200), 1, + STATE(2260), 1, sym_macro_rule, - STATE(2408), 1, + STATE(2437), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56093] = 6, - ACTIONS(3798), 1, + [56208] = 6, + ACTIONS(3802), 1, anon_sym_LPAREN, - ACTIONS(3828), 1, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(4031), 1, + ACTIONS(4059), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4029), 2, + ACTIONS(4057), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2036), 2, + STATE(2028), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [56115] = 8, - ACTIONS(3798), 1, + [56230] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(4005), 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(4009), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, + anon_sym_RPAREN, + STATE(1631), 1, + aux_sym_macro_definition_repeat1, + STATE(2299), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56141] = 8, - ACTIONS(3798), 1, + [56256] = 8, + ACTIONS(4043), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3828), 1, + ACTIONS(4045), 1, anon_sym_LBRACE, - ACTIONS(4035), 1, - anon_sym_SEMI, - STATE(795), 1, - sym_field_declaration_list, - STATE(2071), 1, - sym_ordered_field_declaration_list, - STATE(2186), 1, - sym_where_clause, + 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, - [56167] = 8, - ACTIONS(3969), 1, + [56282] = 8, + ACTIONS(4043), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4045), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(4037), 1, - anon_sym_RPAREN, - STATE(1599), 1, - aux_sym_macro_definition_repeat1, - STATE(2289), 1, - sym_macro_rule, - STATE(2408), 1, - sym_token_tree_pattern, + 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, - [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, + [56308] = 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(4071), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3991), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [56215] = 7, + STATE(2322), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56332] = 7, ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3910), 1, + ACTIONS(3949), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3955), 1, anon_sym_ref, - ACTIONS(3918), 1, + ACTIONS(3957), 1, sym_mutable_specifier, - ACTIONS(4041), 1, + ACTIONS(4073), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2211), 2, + STATE(2322), 2, sym_field_pattern, sym_remaining_field_pattern, - [56239] = 6, - ACTIONS(3989), 1, + [56356] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3993), 1, - anon_sym_EQ, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - STATE(2124), 1, - sym_meta_arguments, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, + anon_sym_LBRACK, + ACTIONS(4075), 1, + anon_sym_RBRACE, + STATE(1625), 1, + aux_sym_macro_definition_repeat1, + STATE(2280), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, 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, + [56382] = 8, ACTIONS(3802), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3828), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4045), 1, + ACTIONS(4077), 1, anon_sym_SEMI, - STATE(937), 1, + STATE(486), 1, sym_field_declaration_list, - STATE(2106), 1, + STATE(1898), 1, sym_ordered_field_declaration_list, - STATE(2167), 1, + STATE(2268), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56287] = 2, + [56408] = 8, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, + anon_sym_LBRACK, + ACTIONS(4079), 1, + anon_sym_RPAREN, + STATE(1618), 1, + aux_sym_macro_definition_repeat1, + STATE(2266), 1, + sym_macro_rule, + STATE(2437), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 7, - anon_sym_SEMI, + [56434] = 8, + ACTIONS(3802), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3806), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56301] = 2, + ACTIONS(4081), 1, + anon_sym_SEMI, + STATE(1031), 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(3905), 7, - anon_sym_SEMI, + [56460] = 8, + ACTIONS(4043), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56315] = 3, ACTIONS(4047), 1, - anon_sym_trait, + anon_sym_LBRACK, + ACTIONS(4063), 1, + anon_sym_RBRACK, + ACTIONS(4065), 1, + anon_sym_EQ, + ACTIONS(4083), 1, + anon_sym_COLON_COLON, + STATE(2388), 1, + sym_delim_token_tree, 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, - [56331] = 2, + [56486] = 4, + ACTIONS(4085), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 7, + ACTIONS(3750), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2752), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_DASH_GT, + [56503] = 7, + ACTIONS(3806), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56345] = 2, + 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(4049), 7, - anon_sym_SEMI, + [56526] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, anon_sym_LBRACE, + ACTIONS(4094), 1, + anon_sym_SEMI, + ACTIONS(4096), 1, anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56359] = 3, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, + STATE(1027), 1, + sym_declaration_list, + STATE(2157), 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, - [56375] = 2, + [56549] = 7, + ACTIONS(3804), 1, + anon_sym_LBRACE, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3808), 1, + anon_sym_LT, + STATE(834), 1, + sym_field_declaration_list, + STATE(1826), 1, + sym_type_parameters, + STATE(2258), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 7, - anon_sym_SEMI, + [56572] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56389] = 3, - ACTIONS(4051), 1, - anon_sym_trait, + ACTIONS(4098), 1, + anon_sym_SEMI, + STATE(1050), 1, + sym_declaration_list, + STATE(2128), 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, - anon_sym_DOT_DOT, - ACTIONS(3910), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_ref, - ACTIONS(3918), 1, - sym_mutable_specifier, - ACTIONS(4053), 1, - anon_sym_RBRACE, + [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, - STATE(2211), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56429] = 3, - ACTIONS(4055), 1, - sym_identifier, + [56618] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1045), 1, + sym_declaration_list, + STATE(1802), 1, + sym_trait_bounds, + STATE(2191), 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, - [56445] = 3, - ACTIONS(4057), 1, - sym_identifier, + [56641] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4104), 1, + anon_sym_SEMI, + ACTIONS(4106), 1, + anon_sym_LBRACE, + 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, - ACTIONS(3878), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56461] = 6, - ACTIONS(3582), 1, + [56664] = 5, + ACTIONS(4112), 1, + anon_sym_COLON, + ACTIONS(4114), 1, anon_sym_COLON_COLON, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(4061), 1, - anon_sym_EQ, - STATE(2117), 1, - sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4059), 3, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4110), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [56483] = 2, + [56683] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4116), 1, + anon_sym_SEMI, + STATE(820), 1, + sym_declaration_list, + STATE(2037), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 7, - anon_sym_SEMI, + [56706] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56497] = 5, - ACTIONS(4065), 1, + ACTIONS(4118), 1, + anon_sym_SEMI, + STATE(400), 1, + sym_declaration_list, + STATE(2111), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56729] = 7, + ACTIONS(3925), 1, anon_sym_COLON, - ACTIONS(4067), 1, - anon_sym_COLON_COLON, + 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, 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, + [56752] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4069), 1, - anon_sym_SEMI, - ACTIONS(4071), 1, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - STATE(836), 1, - sym_block, - STATE(2050), 1, + 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, - [56539] = 7, - ACTIONS(3802), 1, + [56775] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3804), 1, + ACTIONS(3808), 1, anon_sym_LT, - ACTIONS(4075), 1, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(803), 1, + STATE(811), 1, sym_enum_variant_list, - STATE(1778), 1, + STATE(1838), 1, sym_type_parameters, - STATE(2230), 1, + STATE(2285), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56562] = 4, - ACTIONS(4067), 1, + [56798] = 4, + ACTIONS(3546), 1, anon_sym_COLON_COLON, + ACTIONS(3868), 1, + anon_sym_for, 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, - [56579] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(2648), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4077), 1, - anon_sym_SEMI, - STATE(309), 1, - sym_declaration_list, - STATE(2125), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56602] = 4, - ACTIONS(3526), 1, + anon_sym_where, + [56815] = 4, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(3838), 1, + ACTIONS(3894), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, 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, - anon_sym_COLON, - STATE(2038), 1, - sym_trait_bounds, - STATE(2044), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56642] = 7, - ACTIONS(3802), 1, + [56832] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4079), 1, - anon_sym_SEMI, - ACTIONS(4081), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4083), 1, - anon_sym_DASH_GT, - STATE(335), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4126), 1, + anon_sym_SEMI, + STATE(341), 1, sym_block, - STATE(1971), 1, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56665] = 7, - ACTIONS(3802), 1, + [56855] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(926), 1, - sym_declaration_list, - STATE(1853), 1, - sym_trait_bounds, - STATE(2251), 1, + ACTIONS(4128), 1, + anon_sym_SEMI, + STATE(1014), 1, + sym_block, + STATE(2108), 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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56711] = 7, - ACTIONS(3802), 1, + [56878] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4089), 1, + ACTIONS(4130), 1, anon_sym_SEMI, - STATE(981), 1, - sym_declaration_list, - STATE(1973), 1, + STATE(387), 1, + sym_block, + STATE(1998), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56734] = 7, - ACTIONS(3802), 1, + [56901] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4132), 1, anon_sym_SEMI, - STATE(972), 1, + STATE(1001), 1, sym_declaration_list, - STATE(2091), 1, + STATE(2096), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56757] = 7, - ACTIONS(3802), 1, + [56924] = 4, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, + ACTIONS(3846), 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(3810), 1, + [56941] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4093), 1, + ACTIONS(4134), 1, anon_sym_SEMI, - STATE(917), 1, + STATE(999), 1, sym_declaration_list, - STATE(2115), 1, + STATE(2090), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56780] = 7, - ACTIONS(3802), 1, + [56964] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4095), 1, + ACTIONS(4136), 1, anon_sym_SEMI, - STATE(289), 1, + ACTIONS(4138), 1, + anon_sym_DASH_GT, + STATE(998), 1, sym_block, - STATE(2145), 1, + STATE(2149), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56803] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3874), 1, - anon_sym_for, + [56987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56820] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(3670), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2718), 4, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(4097), 1, - anon_sym_SEMI, - STATE(480), 1, - sym_declaration_list, - STATE(2057), 1, - sym_where_clause, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56843] = 7, - ACTIONS(3802), 1, + 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, - ACTIONS(3844), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(342), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4140), 1, + anon_sym_SEMI, + STATE(981), 1, sym_declaration_list, - STATE(1831), 1, - sym_trait_bounds, - STATE(2312), 1, + STATE(2084), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56866] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3882), 1, - anon_sym_for, + [57040] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2752), 2, anon_sym_PLUS, + 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, - [56883] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(4075), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(911), 1, - sym_enum_variant_list, - STATE(1870), 1, - sym_type_parameters, - STATE(2155), 1, + 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, - [56906] = 7, - ACTIONS(3802), 1, + [57080] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4144), 1, anon_sym_SEMI, - ACTIONS(4101), 1, + ACTIONS(4146), 1, anon_sym_DASH_GT, - STATE(277), 1, + STATE(970), 1, sym_block, - STATE(2142), 1, + STATE(2073), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56929] = 7, - ACTIONS(3802), 1, + [57103] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(902), 1, - sym_field_declaration_list, - STATE(1872), 1, - sym_type_parameters, - STATE(2157), 1, + ACTIONS(3925), 1, + anon_sym_COLON, + 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, - [56952] = 7, - ACTIONS(3802), 1, + [57126] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, + ACTIONS(4148), 1, anon_sym_SEMI, - STATE(424), 1, + ACTIONS(4150), 1, + anon_sym_DASH_GT, + STATE(332), 1, sym_block, - STATE(1890), 1, + STATE(2022), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56975] = 7, - ACTIONS(3802), 1, + [57149] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4105), 1, + ACTIONS(4152), 1, anon_sym_SEMI, - STATE(951), 1, + ACTIONS(4154), 1, + anon_sym_DASH_GT, + STATE(953), 1, sym_block, - STATE(1989), 1, + STATE(2068), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56998] = 7, - ACTIONS(3802), 1, + [57172] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(4156), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4107), 1, - anon_sym_SEMI, - STATE(301), 1, - sym_declaration_list, - STATE(1999), 1, + STATE(276), 1, + sym_enum_variant_list, + STATE(1877), 1, + sym_type_parameters, + STATE(2316), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57021] = 7, - ACTIONS(3802), 1, + [57195] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4109), 1, + ACTIONS(4158), 1, anon_sym_SEMI, - STATE(983), 1, + STATE(465), 1, sym_declaration_list, - STATE(1969), 1, + STATE(1941), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57044] = 7, - ACTIONS(3802), 1, + [57218] = 7, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4160), 1, + sym_identifier, + ACTIONS(4162), 1, + anon_sym_STAR, + STATE(1968), 1, + sym_use_list, + STATE(2525), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [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, + [57264] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4111), 1, + ACTIONS(4164), 1, anon_sym_SEMI, - STATE(991), 1, - sym_block, - STATE(1967), 1, + STATE(267), 1, + sym_declaration_list, + STATE(2036), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57067] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4071), 1, + [57287] = 7, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(4113), 1, - anon_sym_SEMI, - ACTIONS(4115), 1, - anon_sym_DASH_GT, - STATE(1006), 1, - sym_block, - STATE(1963), 1, - sym_where_clause, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4160), 1, + sym_identifier, + ACTIONS(4162), 1, + anon_sym_STAR, + STATE(1968), 1, + sym_use_list, + STATE(2537), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57090] = 7, - ACTIONS(3802), 1, + [57310] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4166), 1, anon_sym_SEMI, - ACTIONS(4119), 1, - anon_sym_DASH_GT, - STATE(1008), 1, + STATE(946), 1, sym_block, - STATE(2077), 1, + STATE(2060), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57113] = 7, - ACTIONS(3802), 1, + [57333] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4121), 1, + ACTIONS(4168), 1, anon_sym_SEMI, - STATE(320), 1, + STATE(924), 1, sym_declaration_list, - STATE(2095), 1, + STATE(2056), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57136] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3642), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2712), 4, - anon_sym_RPAREN, + [57356] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [57151] = 5, - ACTIONS(4125), 1, - anon_sym_COLON, - ACTIONS(4127), 1, - anon_sym_COLON_COLON, + ACTIONS(4170), 1, + anon_sym_SEMI, + STATE(921), 1, + sym_declaration_list, + STATE(2055), 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(4123), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57170] = 7, - ACTIONS(3802), 1, + [57379] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4129), 1, + ACTIONS(4172), 1, anon_sym_SEMI, - ACTIONS(4131), 1, - anon_sym_DASH_GT, - STATE(942), 1, + STATE(911), 1, sym_block, - STATE(2003), 1, + STATE(2050), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57193] = 7, - ACTIONS(3530), 1, - anon_sym_EQ, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(4133), 1, - anon_sym_COMMA, - ACTIONS(4135), 1, - anon_sym_GT, - STATE(2038), 1, - sym_trait_bounds, - STATE(2086), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57216] = 7, - ACTIONS(3802), 1, + [57402] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4106), 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, + ACTIONS(4174), 1, + anon_sym_SEMI, + 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, - [57239] = 4, - ACTIONS(3526), 1, + [57425] = 4, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(3834), 1, + ACTIONS(3890), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57256] = 7, - ACTIONS(3802), 1, + [57442] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4137), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4178), 1, anon_sym_SEMI, - ACTIONS(4139), 1, - anon_sym_DASH_GT, - STATE(879), 1, + STATE(313), 1, sym_block, - STATE(2109), 1, + STATE(1900), 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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2211), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57300] = 7, - ACTIONS(3802), 1, + [57465] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3808), 1, + anon_sym_LT, + ACTIONS(3840), 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, + 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, - [57323] = 7, - ACTIONS(3802), 1, + [57488] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4143), 1, + ACTIONS(4180), 1, anon_sym_SEMI, - STATE(464), 1, + ACTIONS(4182), 1, + anon_sym_DASH_GT, + STATE(474), 1, sym_block, - STATE(2060), 1, + STATE(1953), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57346] = 7, - ACTIONS(3802), 1, + [57511] = 4, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, + ACTIONS(3876), 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(4073), 1, + [57528] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4145), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - STATE(334), 1, + STATE(883), 1, sym_block, - STATE(2114), 1, + STATE(2042), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57369] = 7, - ACTIONS(3802), 1, + [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, + [57574] = 4, + ACTIONS(4190), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3670), 2, + anon_sym_COMMA, + 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(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_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [57608] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4147), 1, + ACTIONS(4193), 1, anon_sym_SEMI, - STATE(845), 1, + STATE(1009), 1, sym_declaration_list, - STATE(2136), 1, + STATE(2151), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57392] = 7, - ACTIONS(3802), 1, + [57631] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4149), 1, + ACTIONS(4195), 1, anon_sym_SEMI, - ACTIONS(4151), 1, + ACTIONS(4197), 1, anon_sym_DASH_GT, - STATE(910), 1, + STATE(406), 1, sym_block, - STATE(2011), 1, + STATE(2115), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57415] = 7, - ACTIONS(3802), 1, + [57654] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4153), 1, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4199), 1, anon_sym_SEMI, - STATE(892), 1, - sym_declaration_list, - STATE(2018), 1, + STATE(872), 1, + sym_block, + STATE(2035), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57438] = 7, - ACTIONS(3802), 1, + [57677] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4155), 1, + ACTIONS(4201), 1, anon_sym_SEMI, - STATE(883), 1, + STATE(272), 1, sym_declaration_list, - STATE(2027), 1, + STATE(1905), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57461] = 7, - ACTIONS(3802), 1, + [57700] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4157), 1, + ACTIONS(4203), 1, anon_sym_SEMI, - STATE(314), 1, + STATE(352), 1, sym_declaration_list, - STATE(2031), 1, + STATE(2100), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57484] = 7, - ACTIONS(3802), 1, + [57723] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3818), 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, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57507] = 7, - ACTIONS(2453), 1, - anon_sym_PLUS, - ACTIONS(3924), 1, + ACTIONS(3925), 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, + STATE(408), 1, + sym_declaration_list, + STATE(1823), 1, sym_trait_bounds, + STATE(2195), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57530] = 7, - ACTIONS(3802), 1, + [57746] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4165), 1, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4205), 1, anon_sym_SEMI, - STATE(276), 1, - sym_declaration_list, - STATE(2032), 1, + STATE(866), 1, + sym_block, + STATE(2030), 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, + [57769] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4169), 1, + ACTIONS(4207), 1, anon_sym_SEMI, - STATE(371), 1, + STATE(300), 1, sym_declaration_list, - STATE(1899), 1, + STATE(1950), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57593] = 5, - ACTIONS(4065), 1, - anon_sym_COLON, - ACTIONS(4167), 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(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, + ACTIONS(2648), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(4171), 1, + [57809] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4090), 1, anon_sym_LBRACE, - STATE(273), 1, - sym_enum_variant_list, - STATE(1866), 1, - sym_type_parameters, - STATE(2148), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57635] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2712), 2, + ACTIONS(4096), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3642), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4173), 2, - 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, + ACTIONS(4209), 1, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [57669] = 4, - ACTIONS(4173), 1, - anon_sym_RBRACK, + STATE(298), 1, + sym_block, + STATE(1908), 1, + sym_where_clause, 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, + [57832] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4179), 1, + ACTIONS(4211), 1, anon_sym_SEMI, - STATE(796), 1, + STATE(349), 1, sym_declaration_list, - STATE(2100), 1, + STATE(2082), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57709] = 7, - ACTIONS(3802), 1, + [57855] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3925), 1, anon_sym_COLON, - STATE(966), 1, + STATE(463), 1, sym_declaration_list, - STATE(1852), 1, + STATE(1849), 1, sym_trait_bounds, - STATE(2176), 1, + STATE(2230), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57732] = 7, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3802), 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, - sym_where_clause, + [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, - [57755] = 4, - ACTIONS(3526), 1, + STATE(2322), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [57899] = 4, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(3846), 1, + ACTIONS(3858), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57772] = 7, - ACTIONS(3802), 1, + [57916] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4181), 1, + ACTIONS(4213), 1, anon_sym_SEMI, - STATE(384), 1, + ACTIONS(4215), 1, + anon_sym_DASH_GT, + STATE(852), 1, + sym_block, + STATE(2092), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57939] = 7, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(285), 1, sym_declaration_list, - STATE(1897), 1, + STATE(1879), 1, + sym_trait_bounds, + STATE(2305), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57795] = 7, - ACTIONS(3802), 1, + [57962] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(4171), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(265), 1, - sym_enum_variant_list, - STATE(1833), 1, - sym_type_parameters, - STATE(2295), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4217), 1, + anon_sym_SEMI, + STATE(453), 1, + sym_declaration_list, + STATE(2094), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57818] = 7, - ACTIONS(3802), 1, + [57985] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4183), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4219), 1, anon_sym_SEMI, - ACTIONS(4185), 1, - anon_sym_DASH_GT, - STATE(801), 1, - sym_block, - STATE(2092), 1, + STATE(857), 1, + sym_declaration_list, + STATE(2106), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57841] = 7, - ACTIONS(3802), 1, + [58008] = 7, + ACTIONS(2465), 1, + anon_sym_PLUS, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(4221), 1, + anon_sym_COMMA, + ACTIONS(4223), 1, + anon_sym_GT, + STATE(1903), 1, + sym_trait_bounds, + STATE(1924), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58031] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3824), 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, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(909), 1, + sym_declaration_list, + STATE(1803), 1, + sym_trait_bounds, + STATE(2197), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57864] = 6, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - anon_sym_COMMA, - ACTIONS(4163), 1, - anon_sym_GT, - STATE(2045), 1, - aux_sym_type_parameters_repeat1, + [58054] = 7, + ACTIONS(3806), 1, + anon_sym_where, + 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, - ACTIONS(2606), 2, - anon_sym_PLUS, - anon_sym_as, - [57885] = 7, - ACTIONS(3802), 1, + [58077] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(952), 1, - sym_field_declaration_list, - STATE(1793), 1, - sym_type_parameters, - STATE(2182), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4225), 1, + anon_sym_SEMI, + STATE(350), 1, + sym_declaration_list, + STATE(2093), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57908] = 7, - ACTIONS(3802), 1, + [58100] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4191), 1, + ACTIONS(4227), 1, anon_sym_SEMI, - STATE(349), 1, + STATE(929), 1, sym_declaration_list, STATE(2130), 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, + [58123] = 4, + ACTIONS(4229), 1, + anon_sym_COLON_COLON, 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(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2648), 3, anon_sym_SEMI, - ACTIONS(4199), 1, - anon_sym_DASH_GT, - STATE(311), 1, - sym_block, - STATE(2040), 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, - [57977] = 7, - ACTIONS(3802), 1, + ACTIONS(2648), 2, + anon_sym_PLUS, + anon_sym_as, + [58161] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4201), 1, + ACTIONS(4231), 1, anon_sym_SEMI, - ACTIONS(4203), 1, + ACTIONS(4233), 1, anon_sym_DASH_GT, - STATE(445), 1, + STATE(423), 1, sym_block, - STATE(1926), 1, + STATE(2146), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58000] = 4, - ACTIONS(3526), 1, + [58184] = 5, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 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, + 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, - [58017] = 7, - ACTIONS(3273), 1, + ACTIONS(3818), 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(4096), 1, + anon_sym_PLUS, + ACTIONS(4241), 1, + anon_sym_SEMI, + STATE(439), 1, + sym_declaration_list, + STATE(2104), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58040] = 7, - ACTIONS(3800), 1, - anon_sym_LBRACE, - ACTIONS(3802), 1, + [58226] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3804), 1, + ACTIONS(3808), 1, anon_sym_LT, - STATE(386), 1, - sym_field_declaration_list, - STATE(1851), 1, + ACTIONS(4124), 1, + anon_sym_LBRACE, + STATE(938), 1, + sym_enum_variant_list, + STATE(1798), 1, sym_type_parameters, - STATE(2220), 1, + STATE(2182), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58063] = 7, - ACTIONS(3802), 1, + [58249] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4209), 1, + ACTIONS(4243), 1, anon_sym_SEMI, - STATE(431), 1, + ACTIONS(4245), 1, + anon_sym_DASH_GT, + STATE(377), 1, sym_block, - STATE(2069), 1, + STATE(1981), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58086] = 4, - ACTIONS(3526), 1, + [58272] = 7, + ACTIONS(3558), 1, + anon_sym_EQ, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(4247), 1, + anon_sym_COMMA, + ACTIONS(4249), 1, + anon_sym_GT, + STATE(1946), 1, + sym_trait_bounds, + STATE(2101), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58295] = 4, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(3818), 1, + ACTIONS(3880), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(2648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58103] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3620), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2758), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [58118] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4211), 1, - anon_sym_SEMI, - STATE(861), 1, - sym_declaration_list, - STATE(2022), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58141] = 7, - ACTIONS(3802), 1, + [58312] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4213), 1, + ACTIONS(4251), 1, anon_sym_SEMI, - STATE(393), 1, + STATE(434), 1, sym_declaration_list, - STATE(2019), 1, + STATE(2133), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58164] = 7, - ACTIONS(3802), 1, + [58335] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4215), 1, + ACTIONS(4253), 1, anon_sym_SEMI, - STATE(985), 1, + STATE(477), 1, sym_block, - STATE(1948), 1, + STATE(1970), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58187] = 4, - ACTIONS(4217), 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(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, - anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(4257), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58379] = 7, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(439), 1, - sym_declaration_list, - STATE(1868), 1, - sym_trait_bounds, - STATE(2256), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58227] = 7, - ACTIONS(3802), 1, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 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(3808), 1, + anon_sym_LT, + STATE(969), 1, + sym_field_declaration_list, + STATE(1797), 1, + sym_type_parameters, + STATE(2178), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58250] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4219), 1, - anon_sym_SEMI, - STATE(1036), 1, - sym_block, - STATE(1954), 1, - sym_where_clause, + [58402] = 5, + ACTIONS(4112), 1, + anon_sym_COLON, + ACTIONS(4261), 1, + anon_sym_COLON_COLON, 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(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4110), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58421] = 4, + ACTIONS(4261), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58296] = 4, + 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(2758), 2, + ACTIONS(2718), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3620), 2, + ACTIONS(3670), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4176), 2, + ACTIONS(4190), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58313] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, - anon_sym_SEMI, - ACTIONS(4223), 1, - anon_sym_DASH_GT, - STATE(303), 1, - sym_block, - STATE(2048), 1, - sym_where_clause, + [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, - [58336] = 7, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(3926), 1, - anon_sym_LT, - ACTIONS(4225), 1, - anon_sym_SEMI, - ACTIONS(4227), 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, - STATE(1798), 1, - sym_type_parameters, - STATE(2513), 1, - sym_trait_bounds, + STATE(2169), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58359] = 7, - ACTIONS(3802), 1, + ACTIONS(4257), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58497] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4229), 1, + ACTIONS(4263), 1, anon_sym_SEMI, - STATE(852), 1, - sym_declaration_list, - STATE(2042), 1, + STATE(288), 1, + sym_block, + STATE(1913), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58382] = 7, - ACTIONS(3802), 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(4265), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58541] = 7, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4231), 1, + ACTIONS(4269), 1, anon_sym_SEMI, - STATE(856), 1, + STATE(396), 1, sym_declaration_list, - STATE(2041), 1, + STATE(2098), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58405] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3866), 1, - anon_sym_for, + [58564] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(4271), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58422] = 7, - ACTIONS(3802), 1, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4233), 1, - anon_sym_SEMI, - STATE(429), 1, - sym_declaration_list, - STATE(1898), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [58576] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58445] = 7, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4235), 1, + ACTIONS(4273), 5, anon_sym_SEMI, - STATE(408), 1, - sym_block, - STATE(2087), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58468] = 7, - ACTIONS(3802), 1, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4237), 1, - anon_sym_SEMI, - STATE(1020), 1, - sym_block, - STATE(1949), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [58588] = 4, + ACTIONS(4261), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58491] = 4, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4243), 1, - anon_sym_COLON_COLON, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4275), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58604] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4239), 3, + ACTIONS(3052), 5, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58507] = 5, - ACTIONS(3652), 1, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3656), 1, + anon_sym_where, + anon_sym_EQ, + [58616] = 4, + ACTIONS(4261), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3455), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58525] = 5, - ACTIONS(798), 1, + ACTIONS(4235), 2, anon_sym_RPAREN, - ACTIONS(4245), 1, anon_sym_COMMA, - STATE(2053), 1, - aux_sym_parameters_repeat1, + [58632] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58543] = 2, + ACTIONS(4277), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58644] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4247), 5, + ACTIONS(4279), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58555] = 2, + [58656] = 3, + ACTIONS(4281), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2682), 4, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_COLON_COLON, + [58670] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4249), 5, + ACTIONS(4283), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58567] = 2, + [58682] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4251), 5, + ACTIONS(4285), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58579] = 2, + [58694] = 4, + ACTIONS(4289), 1, + anon_sym_as, + ACTIONS(4291), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4253), 5, + ACTIONS(4287), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58591] = 2, + [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, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58728] = 5, + ACTIONS(4293), 1, + anon_sym_RPAREN, + ACTIONS(4296), 1, + anon_sym_COMMA, + STATE(1938), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58746] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4255), 5, + ACTIONS(4299), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58603] = 4, - ACTIONS(4257), 1, + [58758] = 4, + ACTIONS(4301), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2980), 2, + ACTIONS(2998), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3608), 2, + ACTIONS(3682), 2, anon_sym_COMMA, anon_sym_PIPE, - [58619] = 4, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(4260), 1, - anon_sym_if, + [58774] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(233), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58635] = 2, + ACTIONS(4304), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58786] = 5, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(4306), 1, + anon_sym_COMMA, + STATE(1958), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58804] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 5, + ACTIONS(2928), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58647] = 2, + [58816] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2814), 5, + ACTIONS(2992), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58659] = 4, - ACTIONS(4167), 1, + [58828] = 4, + ACTIONS(4114), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3455), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4262), 2, + ACTIONS(4235), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58675] = 5, - ACTIONS(4264), 1, - anon_sym_RPAREN, - ACTIONS(4267), 1, - anon_sym_COMMA, - STATE(2001), 1, - aux_sym_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, - anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3528), 1, - anon_sym_COLON, - STATE(1364), 1, - sym_type_arguments, - STATE(2007), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58713] = 5, - ACTIONS(3530), 1, + [58844] = 5, + ACTIONS(3558), 1, anon_sym_EQ, - ACTIONS(3924), 1, + ACTIONS(3925), 1, anon_sym_COLON, - STATE(2038), 1, + STATE(1946), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4270), 2, + ACTIONS(4308), 2, anon_sym_COMMA, anon_sym_GT, - [58731] = 2, + [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, - ACTIONS(4272), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58743] = 2, + [58882] = 4, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(4310), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + 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_where, - anon_sym_EQ, - [58755] = 2, + STATE(1382), 1, + sym_type_arguments, + STATE(1911), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58918] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3012), 5, + ACTIONS(3024), 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, + [58930] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58787] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4274), 5, + ACTIONS(4312), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58799] = 2, + [58942] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4276), 5, + ACTIONS(4314), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58811] = 5, - ACTIONS(3652), 1, - anon_sym_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3682), 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(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58829] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4278), 5, + ACTIONS(4287), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58841] = 5, - ACTIONS(4280), 1, - anon_sym_RPAREN, - ACTIONS(4282), 1, anon_sym_COMMA, - STATE(2001), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3433), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58859] = 6, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, + [58970] = 4, + ACTIONS(4289), 1, + anon_sym_as, + ACTIONS(4318), 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(4287), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [58986] = 6, + ACTIONS(3925), 1, + anon_sym_COLON, + 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(2660), 4, - anon_sym_PLUS, + [59006] = 5, + ACTIONS(4324), 1, + anon_sym_RPAREN, + ACTIONS(4326), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [58893] = 4, - ACTIONS(2980), 1, - anon_sym_PLUS, + STATE(2144), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 2, + ACTIONS(3445), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4257), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58909] = 4, - ACTIONS(284), 1, + [59024] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4286), 1, + ACTIONS(4328), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1091), 3, + STATE(101), 3, sym_if_expression, sym_if_let_expression, sym_block, - [58925] = 4, - ACTIONS(4067), 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(4262), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58941] = 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(4123), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58957] = 6, - ACTIONS(4288), 1, - anon_sym_RPAREN, - ACTIONS(4290), 1, - anon_sym_COLON, - ACTIONS(4292), 1, - anon_sym_COMMA, - ACTIONS(4294), 1, - anon_sym_PIPE, - STATE(1970), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58977] = 2, + [59040] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2862), 5, + ACTIONS(3032), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58989] = 2, + [59052] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2858), 5, + ACTIONS(3036), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [59001] = 5, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, + [59064] = 6, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(4221), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_parameters_repeat1, + ACTIONS(4223), 1, + anon_sym_GT, + STATE(1903), 1, + sym_trait_bounds, + STATE(1924), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, + [59084] = 5, + ACTIONS(3632), 1, anon_sym_COLON, - anon_sym_PIPE, - [59019] = 4, - ACTIONS(4067), 1, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3730), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59035] = 3, + [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(3608), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2980), 3, + ACTIONS(4330), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [59118] = 5, + ACTIONS(4336), 1, anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4338), 1, anon_sym_COMMA, - [59049] = 2, + STATE(1938), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4298), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59061] = 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(4300), 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, + [59156] = 4, + ACTIONS(4114), 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, - [59089] = 5, - ACTIONS(4308), 1, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4275), 2, anon_sym_RPAREN, - ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2144), 1, - aux_sym_parameters_repeat1, + [59172] = 4, + ACTIONS(2998), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, + ACTIONS(3682), 2, anon_sym_COLON, anon_sym_PIPE, - [59107] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3893), 5, - anon_sym_LPAREN, + ACTIONS(4301), 2, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [59119] = 4, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, + 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, - ACTIONS(4239), 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, + [59208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59155] = 6, - ACTIONS(3924), 1, + ACTIONS(3682), 2, anon_sym_COLON, - ACTIONS(4314), 1, + anon_sym_PIPE, + ACTIONS(2998), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(4316), 1, - anon_sym_GT, - STATE(2049), 1, - sym_trait_bounds, - STATE(2088), 1, - aux_sym_type_parameters_repeat1, + [59222] = 5, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4348), 1, + anon_sym_COMMA, + STATE(2113), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59175] = 4, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4318), 1, - anon_sym_COLON_COLON, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59240] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4239), 3, + ACTIONS(4350), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [59191] = 4, - ACTIONS(15), 1, + [59252] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4352), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(112), 3, + STATE(1102), 3, sym_if_expression, sym_if_let_expression, sym_block, - [59207] = 2, + [59268] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4322), 5, + ACTIONS(4354), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59219] = 2, + [59280] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3917), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [59292] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4324), 5, + ACTIONS(4356), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59231] = 2, + [59304] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4326), 5, + ACTIONS(4358), 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, + [59316] = 5, + ACTIONS(4043), 1, + anon_sym_LPAREN, + ACTIONS(4045), 1, anon_sym_LBRACE, - STATE(1014), 1, - sym_enum_variant_list, - STATE(2192), 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, - [59260] = 3, + [59333] = 4, + ACTIONS(4360), 1, + anon_sym_DQUOTE, + STATE(1801), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3433), 2, + ACTIONS(4362), 2, + sym__string_content, + sym_escape_sequence, + [59348] = 5, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(3925), 1, 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, - anon_sym_COMMA, - STATE(2053), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59290] = 4, - ACTIONS(4332), 1, - anon_sym_COMMA, - STATE(1781), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1381), 1, + sym_type_arguments, + STATE(1912), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4330), 2, - anon_sym_RPAREN, + [59365] = 5, + ACTIONS(4255), 1, + anon_sym_LPAREN, + ACTIONS(4364), 1, anon_sym_RBRACK, - [59305] = 3, + ACTIONS(4366), 1, + anon_sym_EQ, + STATE(2399), 1, + sym_meta_arguments, 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, + [59382] = 4, + ACTIONS(3568), 1, anon_sym_COLON_COLON, - ACTIONS(3932), 1, - anon_sym_BANG, + ACTIONS(4368), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3570), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59333] = 5, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4337), 1, + [59397] = 5, + ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(4339), 1, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4348), 1, anon_sym_COMMA, - STATE(1920), 1, - aux_sym_tuple_type_repeat1, + STATE(2113), 1, + aux_sym_parameters_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, + [59414] = 3, + ACTIONS(4370), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59367] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1000), 1, - sym_line_comment, - ACTIONS(4341), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4343), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59382] = 5, - ACTIONS(3800), 1, + ACTIONS(3638), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59427] = 5, + ACTIONS(3804), 1, anon_sym_LBRACE, - ACTIONS(3802), 1, + ACTIONS(3806), 1, anon_sym_where, - STATE(461), 1, + STATE(1029), 1, sym_field_declaration_list, - STATE(2235), 1, + STATE(2203), 1, sym_where_clause, 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(3), 2, - sym_block_comment, - sym_line_comment, - [59416] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1000), 1, - sym_line_comment, - ACTIONS(4345), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4347), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59431] = 5, - ACTIONS(3802), 1, + [59444] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(283), 1, - sym_declaration_list, - STATE(2151), 1, + STATE(1040), 1, + sym_enum_variant_list, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59448] = 5, - ACTIONS(3802), 1, + [59461] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(346), 1, + STATE(1046), 1, sym_declaration_list, - STATE(2313), 1, + STATE(2190), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59465] = 5, - ACTIONS(4349), 1, - anon_sym_LPAREN, - ACTIONS(4351), 1, - anon_sym_LBRACE, - ACTIONS(4353), 1, - anon_sym_LBRACK, - STATE(1945), 1, - sym_token_tree, + [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, - [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, + [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, - [59499] = 5, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_SEMI, - ACTIONS(4357), 1, - anon_sym_EQ, - STATE(2565), 1, - sym_trait_bounds, + ACTIONS(4378), 2, + sym__string_content, + sym_escape_sequence, + [59510] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym_declaration_list, + STATE(2234), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59516] = 5, - ACTIONS(3802), 1, + [59527] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(928), 1, + STATE(1056), 1, sym_declaration_list, - STATE(2166), 1, + STATE(2185), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59533] = 5, - ACTIONS(3724), 1, + [59544] = 5, + ACTIONS(3638), 1, anon_sym_PIPE, - ACTIONS(4359), 1, + ACTIONS(4381), 1, anon_sym_SEMI, - ACTIONS(4361), 1, + ACTIONS(4383), 1, anon_sym_COLON, - ACTIONS(4363), 1, + ACTIONS(4385), 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, + [59561] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_declaration_list, + STATE(2239), 1, + sym_where_clause, 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, + [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, - [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, + [59595] = 5, + ACTIONS(3295), 1, + anon_sym_LBRACE, + 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, - [59601] = 5, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4371), 1, - anon_sym_RPAREN, - ACTIONS(4373), 1, - anon_sym_COMMA, - STATE(2084), 1, - aux_sym_tuple_type_repeat1, + [59612] = 4, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59618] = 5, - ACTIONS(3802), 1, + ACTIONS(3570), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59627] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(998), 1, - sym_declaration_list, - STATE(2246), 1, + STATE(489), 1, + sym_field_declaration_list, + STATE(2279), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59635] = 4, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - ACTIONS(3652), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59650] = 4, - ACTIONS(4065), 1, - anon_sym_COLON, - ACTIONS(4127), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + [59644] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1012), 1, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59665] = 5, - ACTIONS(4073), 1, + ACTIONS(4387), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4389), 3, anon_sym_PLUS, - ACTIONS(4375), 1, + anon_sym_STAR, + anon_sym_QMARK, + [59659] = 5, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4336), 1, anon_sym_RPAREN, - ACTIONS(4377), 1, + ACTIONS(4338), 1, anon_sym_COMMA, - STATE(2002), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1938), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59682] = 4, - ACTIONS(3), 1, + [59676] = 4, + ACTIONS(2333), 1, + anon_sym_POUND, + ACTIONS(4391), 1, + sym_identifier, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1000), 1, sym_line_comment, - 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, + 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, + [59708] = 5, + ACTIONS(2465), 1, anon_sym_PLUS, - ACTIONS(4383), 1, + ACTIONS(4393), 1, anon_sym_COMMA, - ACTIONS(4385), 1, + ACTIONS(4395), 1, anon_sym_GT, - STATE(1946), 1, + STATE(2152), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59714] = 5, - ACTIONS(4073), 1, + [59725] = 5, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4383), 1, + ACTIONS(4393), 1, anon_sym_COMMA, - ACTIONS(4385), 1, + ACTIONS(4395), 1, anon_sym_GT, - STATE(1946), 1, + STATE(2152), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59731] = 5, - ACTIONS(4073), 1, + [59742] = 5, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4308), 1, + ACTIONS(4324), 1, anon_sym_RPAREN, - ACTIONS(4310), 1, + ACTIONS(4326), 1, anon_sym_COMMA, STATE(2144), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59748] = 5, - ACTIONS(4387), 1, - anon_sym_LPAREN, - ACTIONS(4389), 1, + [59759] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4156), 1, anon_sym_LBRACE, - ACTIONS(4391), 1, - anon_sym_LBRACK, - STATE(1061), 1, - sym_delim_token_tree, + STATE(476), 1, + sym_enum_variant_list, + STATE(2241), 1, + sym_where_clause, 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, + [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, - [59782] = 5, - ACTIONS(4073), 1, + ACTIONS(4397), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [59791] = 5, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4393), 1, + ACTIONS(4401), 1, anon_sym_RPAREN, - ACTIONS(4395), 1, + ACTIONS(4403), 1, anon_sym_COMMA, - STATE(1885), 1, + STATE(2148), 1, aux_sym_ordered_field_declaration_list_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, + [59808] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(905), 1, + sym_declaration_list, + STATE(2261), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 2, - sym__string_content, - sym_escape_sequence, - [59814] = 5, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4296), 1, - anon_sym_COMMA, - STATE(1972), 1, - aux_sym_parameters_repeat1, + [59825] = 4, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1903), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59831] = 5, - ACTIONS(3273), 1, + ACTIONS(4405), 2, + anon_sym_COMMA, + anon_sym_GT, + [59840] = 5, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(4401), 1, + ACTIONS(4407), 1, sym_identifier, - ACTIONS(4403), 1, + ACTIONS(4409), 1, anon_sym_STAR, - STATE(2107), 1, + STATE(1963), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59848] = 5, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4405), 1, - anon_sym_RPAREN, - ACTIONS(4407), 1, - anon_sym_COMMA, - STATE(2112), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59857] = 5, + ACTIONS(3806), 1, + anon_sym_where, + 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, - [59865] = 5, - ACTIONS(4294), 1, + [59874] = 5, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(4409), 1, - anon_sym_SEMI, ACTIONS(4411), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(4413), 1, + anon_sym_COLON, + ACTIONS(4415), 1, anon_sym_EQ, 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, + [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, + [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, - [59899] = 4, + [59925] = 5, + ACTIONS(3925), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_SEMI, ACTIONS(4419), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym_string_literal_repeat1, + anon_sym_EQ, + STATE(2553), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 2, - sym__string_content, - sym_escape_sequence, - [59914] = 4, - ACTIONS(3), 1, + [59942] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(904), 1, + sym_declaration_list, + STATE(2177), 1, + sym_where_clause, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1000), 1, sym_line_comment, + [59959] = 5, + ACTIONS(3638), 1, + anon_sym_PIPE, 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, + anon_sym_SEMI, + ACTIONS(4423), 1, + anon_sym_COLON, ACTIONS(4425), 1, - anon_sym_COMMA, - ACTIONS(4427), 1, - anon_sym_GT, - STATE(2113), 1, - aux_sym_type_arguments_repeat1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59946] = 5, - ACTIONS(4288), 1, - anon_sym_RPAREN, - ACTIONS(4292), 1, - anon_sym_COMMA, - ACTIONS(4294), 1, - anon_sym_PIPE, - STATE(1970), 1, - aux_sym_tuple_pattern_repeat1, + [59976] = 5, + ACTIONS(2576), 1, + anon_sym_LPAREN, + ACTIONS(3457), 1, + anon_sym_LT2, + STATE(871), 1, + sym_parameters, + STATE(1381), 1, + sym_type_arguments, 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, + [59993] = 4, + ACTIONS(4237), 1, + anon_sym_COLON, + ACTIONS(4239), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59980] = 5, - ACTIONS(2453), 1, - anon_sym_PLUS, - ACTIONS(4425), 1, - anon_sym_COMMA, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60008] = 3, ACTIONS(4427), 1, - anon_sym_GT, - STATE(2113), 1, - aux_sym_type_arguments_repeat1, + anon_sym_in, 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, + ACTIONS(4429), 3, + sym_self, + sym_super, + sym_crate, + [60021] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60014] = 3, - ACTIONS(4294), 1, + ACTIONS(3445), 2, + anon_sym_COLON, anon_sym_PIPE, + ACTIONS(4431), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60034] = 5, + ACTIONS(4320), 1, + anon_sym_COMMA, + ACTIONS(4322), 1, + anon_sym_GT, + ACTIONS(4433), 1, + anon_sym_EQ, + STATE(2103), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4330), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60027] = 5, - ACTIONS(3724), 1, - anon_sym_PIPE, + [60051] = 5, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(4435), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(4437), 1, - anon_sym_COLON, - ACTIONS(4439), 1, - anon_sym_EQ, + anon_sym_COMMA, + STATE(2099), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60044] = 3, - ACTIONS(4441), 1, - anon_sym_in, + [60068] = 4, + ACTIONS(4439), 1, + anon_sym_DQUOTE, + STATE(1839), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4443), 3, - sym_self, - sym_super, - sym_crate, - [60057] = 5, - ACTIONS(4387), 1, + ACTIONS(4441), 2, + sym__string_content, + sym_escape_sequence, + [60083] = 5, + ACTIONS(4443), 1, anon_sym_LPAREN, - ACTIONS(4389), 1, + ACTIONS(4445), 1, anon_sym_LBRACE, - ACTIONS(4391), 1, + ACTIONS(4447), 1, anon_sym_LBRACK, - STATE(1134), 1, + STATE(1426), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60074] = 5, - ACTIONS(3802), 1, + [60100] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(936), 1, - sym_declaration_list, - STATE(2224), 1, + STATE(849), 1, + sym_enum_variant_list, + 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, + [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(4445), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60106] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(4362), 2, + sym__string_content, + sym_escape_sequence, + [60132] = 5, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, anon_sym_LBRACE, - STATE(422), 1, - sym_declaration_list, - STATE(2263), 1, - sym_where_clause, + ACTIONS(4447), 1, + anon_sym_LBRACK, + STATE(1415), 1, + sym_delim_token_tree, 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, + [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(4452), 2, - sym__string_content, - sym_escape_sequence, - [60138] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4171), 1, - anon_sym_LBRACE, - STATE(449), 1, - sym_enum_variant_list, - STATE(2238), 1, - sym_where_clause, + 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, - [60155] = 5, - ACTIONS(4294), 1, + ACTIONS(4451), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(4454), 1, - anon_sym_RBRACK, - ACTIONS(4456), 1, + [60177] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4453), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1960), 1, - aux_sym_tuple_pattern_repeat1, + 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, - [60172] = 5, - ACTIONS(3425), 1, + [60207] = 5, + ACTIONS(4043), 1, anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - STATE(1358), 1, - sym_type_arguments, - STATE(1390), 1, - sym_parameters, + ACTIONS(4045), 1, + anon_sym_LBRACE, + ACTIONS(4047), 1, + anon_sym_LBRACK, + STATE(1062), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60189] = 4, - ACTIONS(4458), 1, + [60224] = 4, + ACTIONS(4459), 1, anon_sym_DQUOTE, - STATE(1860), 1, + STATE(1801), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4460), 2, + ACTIONS(4362), 2, sym__string_content, sym_escape_sequence, - [60204] = 4, - ACTIONS(3654), 1, + [60239] = 4, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3682), 1, + ACTIONS(3730), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 2, + ACTIONS(3570), 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, + [60254] = 5, + ACTIONS(2465), 1, + anon_sym_PLUS, + ACTIONS(4461), 1, + anon_sym_COMMA, + ACTIONS(4463), 1, + anon_sym_GT, + STATE(2026), 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, + [60271] = 5, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4470), 1, - anon_sym_LBRACK, - STATE(1404), 1, - sym_delim_token_tree, + STATE(430), 1, + sym_declaration_list, + STATE(2183), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60251] = 5, - ACTIONS(4073), 1, + [60288] = 5, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4280), 1, - anon_sym_RPAREN, - ACTIONS(4282), 1, + ACTIONS(4461), 1, anon_sym_COMMA, - STATE(2001), 1, - aux_sym_parameters_repeat1, + ACTIONS(4463), 1, + anon_sym_GT, + STATE(2026), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60268] = 5, - ACTIONS(3802), 1, + [60305] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(459), 1, - sym_declaration_list, - STATE(2195), 1, + STATE(296), 1, + sym_field_declaration_list, + STATE(2313), 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, + [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, - ACTIONS(2930), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60300] = 5, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(4474), 1, - anon_sym_RPAREN, - ACTIONS(4476), 1, + [60339] = 4, + ACTIONS(4473), 1, anon_sym_COMMA, - STATE(1959), 1, + STATE(1853), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60317] = 4, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - ACTIONS(4478), 1, - anon_sym_COLON, + 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, - ACTIONS(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60332] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(437), 1, - sym_declaration_list, - STATE(2260), 1, - sym_where_clause, + ACTIONS(4471), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [60367] = 4, + ACTIONS(4476), 1, + anon_sym_DQUOTE, + STATE(1859), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60349] = 4, - ACTIONS(4125), 1, - anon_sym_COLON, - ACTIONS(4127), 1, - anon_sym_COLON_COLON, + ACTIONS(4478), 2, + sym__string_content, + sym_escape_sequence, + [60382] = 5, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4482), 1, + anon_sym_LBRACE, + ACTIONS(4484), 1, + anon_sym_LBRACK, + STATE(1935), 1, + sym_token_tree, 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, + [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(3524), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60379] = 3, - ACTIONS(4480), 1, - anon_sym_COLON, + [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(3724), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60392] = 4, - ACTIONS(4482), 1, + [60433] = 4, + ACTIONS(4492), 1, anon_sym_DQUOTE, - STATE(1849), 1, + STATE(1801), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4484), 2, + ACTIONS(4362), 2, sym__string_content, sym_escape_sequence, - [60407] = 4, - ACTIONS(3654), 1, - anon_sym_BANG, - ACTIONS(3750), 1, - anon_sym_COLON_COLON, + [60448] = 5, + ACTIONS(4486), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, + anon_sym_LBRACE, + ACTIONS(4490), 1, + anon_sym_LBRACK, + STATE(840), 1, + sym_delim_token_tree, 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, + [60465] = 5, + ACTIONS(3461), 1, + anon_sym_LPAREN, + 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, - [60439] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, + [60482] = 5, + ACTIONS(4494), 1, + anon_sym_LPAREN, + ACTIONS(4496), 1, anon_sym_LBRACE, - STATE(898), 1, - sym_declaration_list, - STATE(2219), 1, - sym_where_clause, + ACTIONS(4498), 1, + anon_sym_LBRACK, + STATE(157), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60456] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, - anon_sym_LBRACE, - STATE(809), 1, - sym_declaration_list, - STATE(2170), 1, - sym_where_clause, - ACTIONS(3), 2, + [60499] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1012), 1, sym_line_comment, - [60473] = 3, - ACTIONS(4073), 1, + 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(4487), 3, + [60531] = 5, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4504), 1, anon_sym_RPAREN, + ACTIONS(4506), 1, 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, + STATE(2064), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60503] = 3, - ACTIONS(4073), 1, + [60548] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4489), 3, + ACTIONS(4508), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60516] = 4, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(4491), 1, - sym_identifier, - 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, + [60561] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60548] = 4, - ACTIONS(4495), 1, + ACTIONS(4510), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1842), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4493), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60563] = 4, - ACTIONS(4497), 1, + anon_sym_PIPE, + [60574] = 4, + ACTIONS(4512), 1, anon_sym_DQUOTE, - STATE(1849), 1, + STATE(1846), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 2, + ACTIONS(4514), 2, sym__string_content, sym_escape_sequence, - [60578] = 3, - ACTIONS(4499), 1, - anon_sym_in, + [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(4501), 3, - sym_self, - sym_super, - sym_crate, - [60591] = 5, - ACTIONS(4161), 1, - anon_sym_COMMA, - ACTIONS(4163), 1, - anon_sym_GT, - ACTIONS(4369), 1, - anon_sym_EQ, - STATE(2045), 1, - aux_sym_type_parameters_repeat1, + [60606] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60608] = 5, - ACTIONS(4466), 1, - anon_sym_LPAREN, - ACTIONS(4468), 1, - anon_sym_LBRACE, - ACTIONS(4470), 1, - anon_sym_LBRACK, - STATE(1413), 1, - sym_delim_token_tree, + ACTIONS(3445), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4516), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [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, - [60625] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(4518), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(790), 1, - sym_declaration_list, - STATE(2175), 1, - sym_where_clause, + [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, - [60642] = 4, - ACTIONS(3924), 1, - anon_sym_COLON, - STATE(2049), 1, - sym_trait_bounds, + [60651] = 3, + ACTIONS(4523), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4503), 2, - anon_sym_COMMA, - anon_sym_GT, - [60657] = 5, - ACTIONS(3802), 1, + ACTIONS(4525), 3, + sym_self, + sym_super, + sym_crate, + [60664] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4171), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(472), 1, - sym_enum_variant_list, - STATE(2326), 1, + STATE(284), 1, + sym_declaration_list, + STATE(2304), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60674] = 5, - ACTIONS(4429), 1, - anon_sym_LPAREN, - ACTIONS(4431), 1, - anon_sym_LBRACE, - ACTIONS(4433), 1, - anon_sym_LBRACK, - STATE(97), 1, - sym_delim_token_tree, + [60681] = 4, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3762), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60691] = 5, - ACTIONS(3802), 1, + 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, + ACTIONS(4529), 2, + sym__string_content, + sym_escape_sequence, + [60711] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(3844), 1, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(258), 1, - sym_declaration_list, - STATE(2201), 1, + STATE(418), 1, + sym_enum_variant_list, + STATE(2162), 1, sym_where_clause, 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, + [60728] = 5, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(4531), 1, + anon_sym_RPAREN, + ACTIONS(4533), 1, + anon_sym_COMMA, + STATE(2007), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60725] = 5, - ACTIONS(3802), 1, + [60745] = 5, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(789), 1, - sym_enum_variant_list, - STATE(2183), 1, + STATE(447), 1, + sym_declaration_list, + STATE(2212), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60742] = 4, - ACTIONS(3924), 1, + [60762] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1012), 1, + sym_line_comment, + 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(2049), 1, + STATE(1903), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4505), 2, + ACTIONS(4539), 2, anon_sym_COMMA, anon_sym_GT, - [60757] = 5, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(3828), 1, + [60792] = 5, + ACTIONS(4494), 1, + anon_sym_LPAREN, + ACTIONS(4496), 1, anon_sym_LBRACE, - STATE(820), 1, - sym_field_declaration_list, - STATE(2188), 1, - sym_where_clause, + ACTIONS(4498), 1, + anon_sym_LBRACK, + STATE(146), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60774] = 5, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(4508), 1, + [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, + ACTIONS(2856), 2, anon_sym_SEMI, - ACTIONS(4510), 1, + anon_sym_LBRACE, + [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, + [60841] = 4, + ACTIONS(4112), 1, anon_sym_COLON, - ACTIONS(4512), 1, - anon_sym_EQ, + ACTIONS(4239), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60791] = 5, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + 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, - ACTIONS(4518), 1, - anon_sym_LBRACK, - STATE(844), 1, - sym_delim_token_tree, + STATE(410), 1, + sym_declaration_list, + STATE(2187), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60808] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [60873] = 4, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4520), 3, + 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, - anon_sym_PIPE, - [60821] = 5, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACE, - ACTIONS(4518), 1, - anon_sym_LBRACK, - STATE(849), 1, - sym_delim_token_tree, + STATE(2137), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60838] = 5, - ACTIONS(3425), 1, + [60905] = 5, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3804), 1, + ACTIONS(3808), 1, anon_sym_LT, - STATE(1667), 1, + STATE(1675), 1, sym_parameters, - STATE(2254), 1, + STATE(2159), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60855] = 4, - ACTIONS(4522), 1, - anon_sym_DQUOTE, - STATE(1880), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4524), 2, - sym__string_content, - sym_escape_sequence, - [60870] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4526), 3, - anon_sym_RPAREN, + [60922] = 5, + ACTIONS(4342), 1, + anon_sym_COLON, + ACTIONS(4552), 1, anon_sym_COMMA, + ACTIONS(4554), 1, anon_sym_PIPE, - [60883] = 4, - ACTIONS(4528), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym_string_literal_repeat1, + STATE(2143), 1, + aux_sym_closure_parameters_repeat1, 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, + [60939] = 5, + ACTIONS(4340), 1, + anon_sym_RPAREN, + ACTIONS(4344), 1, anon_sym_COMMA, - STATE(1980), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4346), 1, + anon_sym_PIPE, + STATE(2001), 1, + aux_sym_tuple_pattern_repeat1, 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, + [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, - [60926] = 3, - ACTIONS(4538), 1, - anon_sym_COLON, - ACTIONS(3), 2, + [60973] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1012), 1, sym_line_comment, - ACTIONS(4536), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60938] = 4, - ACTIONS(4073), 1, + ACTIONS(4556), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4558), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60988] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4540), 1, + ACTIONS(4560), 1, anon_sym_SEMI, - ACTIONS(4542), 1, + ACTIONS(4562), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60952] = 4, - ACTIONS(4544), 1, - anon_sym_RPAREN, - ACTIONS(4546), 1, - anon_sym_COMMA, - STATE(2010), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61002] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, + anon_sym_PLUS, + STATE(1076), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60966] = 4, - ACTIONS(4548), 1, - sym_identifier, - ACTIONS(4550), 1, - anon_sym_await, - ACTIONS(4552), 1, - sym_integer_literal, + [61016] = 2, 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, + ACTIONS(4564), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [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, - [60994] = 4, - ACTIONS(4556), 1, - anon_sym_for, - ACTIONS(4558), 1, - anon_sym_loop, - ACTIONS(4560), 1, - anon_sym_while, + [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, - [61008] = 4, - ACTIONS(3836), 1, - anon_sym_RBRACE, - ACTIONS(4562), 1, - anon_sym_COMMA, - STATE(2026), 1, - aux_sym_field_declaration_list_repeat1, + [61054] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4570), 1, + anon_sym_SEMI, + ACTIONS(4572), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61022] = 4, - ACTIONS(4081), 1, + [61068] = 4, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4564), 1, + ACTIONS(4574), 1, anon_sym_SEMI, - STATE(416), 1, + STATE(290), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61036] = 4, - ACTIONS(3836), 1, + [61082] = 4, + ACTIONS(4576), 1, anon_sym_RBRACE, - ACTIONS(4562), 1, + ACTIONS(4578), 1, anon_sym_COMMA, - STATE(2028), 1, + STATE(2145), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61050] = 3, - ACTIONS(3522), 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, - [61062] = 4, - ACTIONS(3431), 1, + [61096] = 4, + ACTIONS(2584), 1, anon_sym_LT2, - ACTIONS(4566), 1, + ACTIONS(4580), 1, sym_identifier, - STATE(2340), 1, + STATE(843), 1, sym_type_arguments, 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(3), 2, - sym_block_comment, - sym_line_comment, - [61090] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - STATE(1133), 1, - sym_block, + [61110] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61104] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4572), 1, - anon_sym_SEMI, - ACTIONS(4574), 1, + ACTIONS(4582), 3, anon_sym_EQ, + anon_sym_COMMA, + 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, - [61118] = 4, - ACTIONS(3844), 1, + [61134] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4576), 1, + ACTIONS(4586), 1, anon_sym_SEMI, - STATE(400), 1, + STATE(398), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61132] = 4, - ACTIONS(3844), 1, + [61148] = 4, + ACTIONS(2604), 1, anon_sym_LBRACE, - ACTIONS(4578), 1, - anon_sym_SEMI, - STATE(282), 1, - sym_declaration_list, + ACTIONS(4588), 1, + anon_sym_COLON_COLON, + STATE(1115), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61146] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4580), 1, + [61162] = 4, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4590), 1, anon_sym_SEMI, - STATE(331), 1, - sym_declaration_list, + STATE(2581), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61160] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [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(4582), 2, - anon_sym_COMMA, - anon_sym_GT, - [61172] = 4, - ACTIONS(3431), 1, + [61190] = 4, + ACTIONS(3457), 1, anon_sym_LT2, ACTIONS(4584), 1, sym_identifier, - STATE(2340), 1, + STATE(2537), 1, sym_type_arguments, 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, + [61204] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61200] = 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(4586), 3, + ACTIONS(4596), 3, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61210] = 4, - ACTIONS(4503), 1, - anon_sym_GT, - ACTIONS(4588), 1, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1904), 1, - aux_sym_type_parameters_repeat1, + [61224] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61224] = 4, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(4591), 1, - anon_sym_EQ, - STATE(2417), 1, - sym_type_parameters, + ACTIONS(4598), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [61234] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4600), 1, + anon_sym_SEMI, + STATE(281), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61238] = 4, - ACTIONS(4593), 1, - anon_sym_RBRACE, - ACTIONS(4595), 1, + [61248] = 4, + ACTIONS(4552), 1, anon_sym_COMMA, - STATE(1906), 1, - aux_sym_use_list_repeat1, + ACTIONS(4602), 1, + anon_sym_PIPE, + STATE(2143), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61252] = 2, + [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, - ACTIONS(4598), 3, + [61276] = 4, + ACTIONS(3275), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4606), 1, anon_sym_COMMA, - [61262] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(4600), 1, - anon_sym_SEMI, - STATE(263), 1, - sym_declaration_list, + STATE(1916), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61276] = 2, + [61290] = 4, + ACTIONS(3864), 1, + anon_sym_RBRACE, + ACTIONS(4604), 1, + anon_sym_COMMA, + STATE(1939), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4602), 3, + [61304] = 4, + ACTIONS(388), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61286] = 4, - ACTIONS(4604), 1, - anon_sym_RBRACE, - ACTIONS(4606), 1, + ACTIONS(4609), 1, anon_sym_COMMA, - STATE(2024), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1916), 1, + aux_sym_arguments_repeat1, 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, + [61318] = 2, 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, + 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, - [61328] = 4, - ACTIONS(4610), 1, - anon_sym_RPAREN, - ACTIONS(4612), 1, + ACTIONS(4613), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2039), 1, - aux_sym_meta_arguments_repeat1, + [61340] = 4, + ACTIONS(4617), 1, + anon_sym_RBRACE, + ACTIONS(4619), 1, + anon_sym_COMMA, + STATE(1917), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61342] = 4, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3961), 1, - anon_sym_BANG, - ACTIONS(4614), 1, + [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, - [61356] = 2, + [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, - ACTIONS(4616), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + [61382] = 4, + ACTIONS(3888), 1, + anon_sym_GT, + ACTIONS(4631), 1, anon_sym_COMMA, - [61366] = 2, + STATE(2087), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61396] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4618), 3, + ACTIONS(4633), 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, + [61408] = 2, 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, + 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, - [61404] = 3, - ACTIONS(4369), 1, - anon_sym_EQ, + ACTIONS(4637), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [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, - ACTIONS(4503), 2, - anon_sym_COMMA, - anon_sym_GT, - [61416] = 4, - ACTIONS(2524), 1, - anon_sym_RPAREN, - ACTIONS(4620), 1, - anon_sym_COMMA, - STATE(1936), 1, - aux_sym_tuple_type_repeat1, + [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, - [61430] = 4, + [61458] = 3, + ACTIONS(4261), 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, + [61470] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4622), 1, + ACTIONS(4649), 1, anon_sym_move, - STATE(1106), 1, + STATE(1114), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61444] = 3, - ACTIONS(4127), 1, - anon_sym_COLON_COLON, + [61484] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4096), 1, + anon_sym_PLUS, + STATE(1138), 1, + sym_block, 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, - anon_sym_COLON, - STATE(2017), 1, - sym_trait_bounds, + [61498] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61470] = 4, - ACTIONS(4624), 1, - anon_sym_RBRACE, - ACTIONS(4626), 1, + ACTIONS(4651), 2, anon_sym_COMMA, - STATE(1924), 1, - aux_sym_field_initializer_list_repeat1, + anon_sym_GT, + [61510] = 3, + ACTIONS(4655), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61484] = 4, - ACTIONS(4629), 1, + ACTIONS(4653), 2, anon_sym_RBRACE, - ACTIONS(4631), 1, anon_sym_COMMA, - STATE(2146), 1, - aux_sym_field_initializer_list_repeat1, + [61522] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61498] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, + ACTIONS(4657), 3, anon_sym_SEMI, - STATE(369), 1, - sym_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + [61532] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, 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, + ACTIONS(4659), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61544] = 3, + ACTIONS(4114), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61526] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61556] = 4, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(4306), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4641), 2, + [61570] = 4, + ACTIONS(4661), 1, + anon_sym_RBRACE, + ACTIONS(4663), 1, anon_sym_COMMA, - anon_sym_GT, - [61538] = 4, - ACTIONS(2638), 1, - anon_sym_LBRACE, - ACTIONS(4643), 1, - anon_sym_COLON_COLON, - STATE(1131), 1, - sym_field_initializer_list, + STATE(1939), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61552] = 4, - ACTIONS(4645), 1, + [61584] = 4, + ACTIONS(4666), 1, + anon_sym_RBRACE, + ACTIONS(4668), 1, anon_sym_COMMA, - ACTIONS(4647), 1, - anon_sym_GT, - STATE(1996), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2016), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61566] = 4, - ACTIONS(4415), 1, + [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, + [61612] = 4, + ACTIONS(3850), 1, + anon_sym_GT, + ACTIONS(4672), 1, anon_sym_COMMA, - ACTIONS(4649), 1, - anon_sym_PIPE, - STATE(2133), 1, - aux_sym_closure_parameters_repeat1, + STATE(2087), 1, + aux_sym_type_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, + [61626] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4674), 1, + sym_identifier, + STATE(2080), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [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, - [61594] = 3, - ACTIONS(4167), 1, + [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(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, + [61668] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61620] = 4, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(4647), 1, + ACTIONS(4680), 3, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_GT, - STATE(2205), 1, - sym_lifetime, + [61678] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61634] = 4, - ACTIONS(4659), 1, - anon_sym_RPAREN, - ACTIONS(4661), 1, + ACTIONS(4518), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1936), 1, - aux_sym_tuple_type_repeat1, + [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, - [61648] = 4, - ACTIONS(2574), 1, - anon_sym_LT2, - ACTIONS(4554), 1, - sym_identifier, - STATE(848), 1, - sym_type_arguments, + [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, - [61662] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4664), 1, - sym_identifier, - STATE(2338), 1, - sym_type_arguments, + [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, - [61676] = 3, - ACTIONS(4073), 1, + [61730] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4659), 2, + ACTIONS(4516), 2, anon_sym_RPAREN, anon_sym_COMMA, - [61688] = 4, - ACTIONS(4280), 1, + [61742] = 4, + ACTIONS(4516), 1, anon_sym_RPAREN, - ACTIONS(4282), 1, + ACTIONS(4694), 1, anon_sym_COMMA, - STATE(2001), 1, + STATE(1952), 1, aux_sym_parameters_repeat1, 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, + [61756] = 4, + ACTIONS(4090), 1, + anon_sym_LBRACE, + ACTIONS(4697), 1, + anon_sym_SEMI, + STATE(421), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61716] = 4, - ACTIONS(3325), 1, - anon_sym_RPAREN, - ACTIONS(4670), 1, - anon_sym_COMMA, - STATE(1942), 1, - aux_sym_arguments_repeat1, + [61770] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61730] = 4, - ACTIONS(388), 1, - anon_sym_RPAREN, - ACTIONS(4673), 1, + ACTIONS(4699), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61744] = 4, - ACTIONS(4053), 1, + [61780] = 4, + ACTIONS(3387), 1, anon_sym_RBRACE, - ACTIONS(4675), 1, + ACTIONS(4701), 1, anon_sym_COMMA, - STATE(1980), 1, - aux_sym_struct_pattern_repeat1, + STATE(1989), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61758] = 2, + [61794] = 3, + ACTIONS(3205), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4677), 3, - anon_sym_SEMI, + ACTIONS(4275), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - [61768] = 4, - ACTIONS(922), 1, - anon_sym_GT, - ACTIONS(4679), 1, anon_sym_COMMA, - STATE(1991), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61782] = 4, - ACTIONS(3431), 1, + [61806] = 4, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(4664), 1, + ACTIONS(4703), 1, sym_identifier, - STATE(2340), 1, + STATE(2525), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4681), 1, - anon_sym_SEMI, - STATE(959), 1, - sym_block, + [61820] = 4, + ACTIONS(786), 1, + anon_sym_RPAREN, + ACTIONS(4705), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_parameters_repeat1, 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, + [61834] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61824] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4685), 1, + ACTIONS(4707), 3, anon_sym_SEMI, - STATE(340), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [61844] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4703), 1, + sym_identifier, + STATE(2537), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61838] = 3, - ACTIONS(4217), 1, - anon_sym_COLON_COLON, + [61858] = 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(4709), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61868] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61864] = 3, - ACTIONS(4689), 1, - sym_identifier, + ACTIONS(4711), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61878] = 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(4713), 3, anon_sym_SEMI, - STATE(999), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [61888] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61890] = 4, - ACTIONS(4695), 1, + ACTIONS(4715), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4697), 1, anon_sym_COMMA, - STATE(1955), 1, - aux_sym_enum_variant_list_repeat2, + [61898] = 4, + ACTIONS(4717), 1, + anon_sym_RBRACE, + ACTIONS(4719), 1, + anon_sym_COMMA, + STATE(1965), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61904] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4700), 1, - anon_sym_SEMI, - ACTIONS(4702), 1, - anon_sym_EQ, + [61912] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61918] = 4, - ACTIONS(3850), 1, + ACTIONS(4722), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4704), 1, anon_sym_COMMA, - STATE(1955), 1, - aux_sym_enum_variant_list_repeat2, + [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, - [61932] = 2, + [61936] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4445), 3, + ACTIONS(4726), 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, + [61946] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4728), 1, + sym_identifier, + STATE(2525), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61956] = 4, - ACTIONS(2445), 1, - anon_sym_RBRACK, - ACTIONS(4708), 1, - anon_sym_COMMA, - STATE(1781), 1, - aux_sym_tuple_pattern_repeat1, + [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, - [61970] = 3, - ACTIONS(4712), 1, - anon_sym_COLON, + [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, - ACTIONS(4710), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61982] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [61988] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4328), 2, + ACTIONS(2367), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [61998] = 4, + ACTIONS(794), 1, anon_sym_RPAREN, + ACTIONS(4306), 1, anon_sym_COMMA, - [61994] = 4, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4714), 1, - anon_sym_SEMI, - STATE(1041), 1, - sym_block, + STATE(1958), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62008] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4716), 1, - anon_sym_SEMI, - ACTIONS(4718), 1, - anon_sym_EQ, + [62012] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4732), 1, + sym_identifier, + STATE(2525), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62022] = 4, - ACTIONS(4328), 1, - anon_sym_RPAREN, - ACTIONS(4720), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_parameters_repeat1, + [62026] = 3, + ACTIONS(4736), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62036] = 3, - ACTIONS(4723), 1, + ACTIONS(4734), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [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, - 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, + [62052] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62062] = 3, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, + ACTIONS(4738), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62064] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4262), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4740), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, [62074] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4729), 1, - anon_sym_SEMI, - STATE(1034), 1, - sym_declaration_list, + 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, [62088] = 4, - ACTIONS(2449), 1, - anon_sym_RPAREN, - ACTIONS(4731), 1, + ACTIONS(4221), 1, anon_sym_COMMA, - STATE(1781), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4223), 1, + anon_sym_GT, + STATE(1924), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62102] = 4, - ACTIONS(4081), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4733), 1, + ACTIONS(4742), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(479), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62116] = 4, - ACTIONS(796), 1, - anon_sym_RPAREN, - ACTIONS(4735), 1, + ACTIONS(3281), 1, + anon_sym_RBRACK, + ACTIONS(4744), 1, anon_sym_COMMA, - STATE(1965), 1, - aux_sym_parameters_repeat1, + STATE(1982), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62130] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4737), 1, - anon_sym_SEMI, - STATE(1031), 1, - sym_declaration_list, + [62130] = 3, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, 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(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, + STATE(2025), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62158] = 3, - ACTIONS(4741), 1, - anon_sym_COLON, + [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(4739), 2, - 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(4756), 1, + anon_sym_COMMA, + ACTIONS(4758), 1, + anon_sym_GT, + STATE(2065), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62184] = 2, + [62184] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4745), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4760), 2, anon_sym_COMMA, - [62194] = 3, - ACTIONS(4749), 1, - anon_sym_COLON, + anon_sym_GT, + [62196] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4747), 2, + ACTIONS(4762), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [62206] = 4, + ACTIONS(4764), 1, anon_sym_RBRACE, + ACTIONS(4766), 1, anon_sym_COMMA, - [62206] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, + STATE(1989), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4751), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62218] = 4, - ACTIONS(4753), 1, - anon_sym_RBRACE, - ACTIONS(4755), 1, - anon_sym_COMMA, - STATE(1980), 1, - aux_sym_struct_pattern_repeat1, + [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, - [62232] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [62234] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4771), 1, + anon_sym_SEMI, + STATE(825), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4758), 2, - anon_sym_COMMA, - anon_sym_GT, - [62244] = 3, - ACTIONS(4073), 1, + [62248] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4760), 2, + ACTIONS(4773), 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, + [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, - [62270] = 3, - ACTIONS(2453), 1, + [62274] = 3, + ACTIONS(2465), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4760), 2, + ACTIONS(4773), 2, anon_sym_COMMA, anon_sym_GT, - [62282] = 4, - ACTIONS(4766), 1, - anon_sym_RBRACE, - ACTIONS(4768), 1, - anon_sym_COMMA, - STATE(2097), 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, + [62286] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4160), 1, + sym_identifier, + STATE(2525), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62310] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, + [62300] = 4, + ACTIONS(4773), 1, + anon_sym_GT, + ACTIONS(4775), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_parameters_repeat1, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62324] = 4, - ACTIONS(2574), 1, - anon_sym_LT2, - ACTIONS(4772), 1, + [62314] = 4, + ACTIONS(4778), 1, sym_identifier, - STATE(1205), 1, - sym_type_arguments, + ACTIONS(4780), 1, + anon_sym_ref, + ACTIONS(4782), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62338] = 4, - ACTIONS(4071), 1, + [62328] = 4, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4774), 1, + ACTIONS(4784), 1, anon_sym_SEMI, - STATE(1026), 1, + STATE(323), 1, sym_block, 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, + [62342] = 4, + ACTIONS(2451), 1, + anon_sym_RBRACK, + ACTIONS(4786), 1, + anon_sym_COMMA, + STATE(1853), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62366] = 4, - ACTIONS(4760), 1, - anon_sym_GT, - ACTIONS(4778), 1, - anon_sym_COMMA, - STATE(1991), 1, - aux_sym_type_arguments_repeat1, + [62356] = 2, 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, + 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_COMMA, + STATE(1853), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62394] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4776), 1, - sym_identifier, - STATE(2340), 1, - sym_type_arguments, + [62380] = 3, + ACTIONS(4229), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62408] = 4, - ACTIONS(2574), 1, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62392] = 4, + ACTIONS(2584), 1, anon_sym_LT2, - ACTIONS(4772), 1, + ACTIONS(4792), 1, sym_identifier, - STATE(1202), 1, + STATE(1214), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62422] = 2, + [62406] = 3, + ACTIONS(4796), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4783), 3, - anon_sym_SEMI, + ACTIONS(4794), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62432] = 4, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4788), 1, - anon_sym_GT, - STATE(1996), 1, - aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62446] = 3, - ACTIONS(4073), 1, + [62418] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4790), 2, + ACTIONS(4431), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [62430] = 4, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(4798), 1, anon_sym_GT, - [62458] = 3, - ACTIONS(4794), 1, - anon_sym_EQ, + STATE(2303), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4792), 2, - anon_sym_RBRACE, + [62444] = 4, + ACTIONS(2457), 1, + anon_sym_RPAREN, + ACTIONS(4800), 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(1853), 1, + aux_sym_tuple_pattern_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, + [62458] = 3, + ACTIONS(4239), 1, + anon_sym_COLON_COLON, 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, + ACTIONS(3455), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62470] = 4, + ACTIONS(2584), 1, + anon_sym_LT2, + ACTIONS(4792), 1, + sym_identifier, + STATE(1217), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62512] = 4, + [62484] = 4, ACTIONS(4802), 1, - anon_sym_RPAREN, - ACTIONS(4804), 1, anon_sym_COMMA, + ACTIONS(4805), 1, + anon_sym_GT, STATE(2010), 1, - aux_sym_ordered_field_declaration_list_repeat1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62526] = 4, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4806), 1, - anon_sym_SEMI, - STATE(1011), 1, - sym_block, + [62498] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62540] = 4, - ACTIONS(4383), 1, + ACTIONS(4807), 2, anon_sym_COMMA, - ACTIONS(4385), 1, anon_sym_GT, - STATE(1946), 1, + [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, + [62524] = 4, + ACTIONS(4461), 1, + anon_sym_COMMA, + ACTIONS(4463), 1, + anon_sym_GT, + STATE(2026), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62554] = 3, - ACTIONS(4810), 1, - anon_sym_COLON, + [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(4808), 2, - anon_sym_RBRACE, + [62552] = 4, + ACTIONS(528), 1, + anon_sym_RBRACK, + ACTIONS(4811), 1, anon_sym_COMMA, - [62566] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + STATE(1982), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4812), 2, - anon_sym_RPAREN, + [62566] = 4, + ACTIONS(4001), 1, + anon_sym_RBRACE, + ACTIONS(4813), 1, anon_sym_COMMA, - [62578] = 2, + STATE(1985), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [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(4814), 3, + [62594] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4817), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [62588] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4816), 1, + ACTIONS(4819), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62608] = 3, + ACTIONS(4821), 1, sym_identifier, - STATE(2338), 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, + 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, - [62616] = 4, - ACTIONS(4822), 1, - anon_sym_RPAREN, - ACTIONS(4824), 1, + ACTIONS(4825), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [62632] = 4, + ACTIONS(4825), 1, + anon_sym_PIPE, + ACTIONS(4827), 1, anon_sym_COMMA, - STATE(2010), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2021), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62630] = 4, - ACTIONS(4071), 1, + [62646] = 4, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, + ACTIONS(4830), 1, anon_sym_SEMI, - STATE(989), 1, + STATE(302), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62644] = 4, - ACTIONS(3431), 1, + [62660] = 4, + ACTIONS(3457), 1, anon_sym_LT2, - ACTIONS(4816), 1, + ACTIONS(4832), 1, sym_identifier, - STATE(2340), 1, + STATE(2537), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62658] = 4, - ACTIONS(3263), 1, - anon_sym_RBRACK, - ACTIONS(4829), 1, - anon_sym_COMMA, - STATE(2013), 1, - aux_sym_array_expression_repeat1, + [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, - [62672] = 4, - ACTIONS(518), 1, - anon_sym_RBRACK, - ACTIONS(4832), 1, + [62688] = 4, + ACTIONS(3177), 1, + anon_sym_RPAREN, + ACTIONS(4834), 1, anon_sym_COMMA, - STATE(2013), 1, - aux_sym_array_expression_repeat1, + STATE(2069), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62686] = 4, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4834), 1, - anon_sym_SEMI, - STATE(2380), 1, - sym_where_clause, + [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, - [62700] = 4, - ACTIONS(4314), 1, - anon_sym_COMMA, - ACTIONS(4316), 1, - anon_sym_GT, - STATE(2088), 1, - aux_sym_type_parameters_repeat1, + [62716] = 4, + ACTIONS(3457), 1, + anon_sym_LT2, + ACTIONS(4832), 1, + sym_identifier, + STATE(2525), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62714] = 2, + [62730] = 3, + ACTIONS(4840), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4836), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4838), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [62724] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4838), 1, + [62742] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4842), 1, anon_sym_SEMI, - STATE(986), 1, - sym_declaration_list, + ACTIONS(4844), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62738] = 4, - ACTIONS(3844), 1, + [62756] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4840), 1, + ACTIONS(4846), 1, anon_sym_SEMI, - STATE(255), 1, - sym_declaration_list, + STATE(861), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62752] = 4, - ACTIONS(4842), 1, - anon_sym_RPAREN, - ACTIONS(4844), 1, + [62770] = 4, + ACTIONS(4320), 1, anon_sym_COMMA, - STATE(2020), 1, - aux_sym_meta_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62766] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + ACTIONS(4322), 1, + anon_sym_GT, + STATE(2103), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4847), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62778] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4849), 1, - anon_sym_SEMI, - STATE(788), 1, - sym_declaration_list, + [62784] = 3, + ACTIONS(4848), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62792] = 4, - ACTIONS(3782), 1, + ACTIONS(4850), 2, + anon_sym_default, + anon_sym_union, + [62796] = 4, + ACTIONS(3995), 1, anon_sym_RBRACE, - ACTIONS(4851), 1, + ACTIONS(4852), 1, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1985), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62806] = 4, - ACTIONS(3782), 1, - anon_sym_RBRACE, - ACTIONS(4851), 1, - anon_sym_COMMA, - STATE(1955), 1, - aux_sym_enum_variant_list_repeat2, + [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, - [62820] = 4, - ACTIONS(4853), 1, - anon_sym_COMMA, - ACTIONS(4855), 1, - anon_sym_GT, - STATE(1930), 1, - aux_sym_for_lifetimes_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, - [62834] = 4, - ACTIONS(4857), 1, - anon_sym_RBRACE, - ACTIONS(4859), 1, - anon_sym_COMMA, - STATE(2026), 1, - aux_sym_field_declaration_list_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, - [62848] = 4, - ACTIONS(3810), 1, + [62852] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4860), 1, anon_sym_SEMI, - STATE(979), 1, + STATE(859), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62862] = 4, - ACTIONS(3852), 1, - anon_sym_RBRACE, + [62866] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4862), 1, + anon_sym_SEMI, ACTIONS(4864), 1, - anon_sym_COMMA, - STATE(2026), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62876] = 4, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4866), 1, - anon_sym_SEMI, - STATE(2554), 1, - sym_where_clause, + [62880] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62890] = 4, - ACTIONS(3872), 1, - anon_sym_RBRACE, - ACTIONS(4868), 1, + ACTIONS(4866), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2026), 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, - [62904] = 4, - ACTIONS(3844), 1, + [62906] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, ACTIONS(4870), 1, anon_sym_SEMI, - STATE(322), 1, + STATE(364), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62918] = 4, - ACTIONS(3844), 1, + [62920] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, ACTIONS(4872), 1, anon_sym_SEMI, - STATE(306), 1, - sym_declaration_list, + STATE(868), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62932] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, + [62934] = 4, + ACTIONS(3892), 1, + anon_sym_RBRACE, ACTIONS(4874), 1, - sym_identifier, - STATE(2338), 1, - sym_type_arguments, + anon_sym_COMMA, + STATE(1965), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62946] = 2, + [62948] = 4, + ACTIONS(3806), 1, + anon_sym_where, + ACTIONS(4876), 1, + anon_sym_SEMI, + STATE(2544), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4876), 3, + [62962] = 4, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(4878), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62956] = 2, + STATE(875), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4878), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62966] = 3, - ACTIONS(4882), 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, - ACTIONS(4880), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62978] = 4, - ACTIONS(4073), 1, + [62990] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4884), 1, + ACTIONS(4882), 1, anon_sym_SEMI, - ACTIONS(4886), 1, + ACTIONS(4884), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62992] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4888), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [63002] = 4, - ACTIONS(3175), 1, + [63004] = 4, + ACTIONS(4866), 1, anon_sym_RPAREN, - ACTIONS(4890), 1, + ACTIONS(4886), 1, anon_sym_COMMA, - STATE(2020), 1, - aux_sym_meta_arguments_repeat1, + STATE(2048), 1, + aux_sym_tuple_type_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, + [63018] = 3, + ACTIONS(4891), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(4889), 2, + anon_sym_RBRACE, + anon_sym_COMMA, [63030] = 4, - ACTIONS(3810), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4894), 1, + ACTIONS(4893), 1, anon_sym_SEMI, - STATE(970), 1, - sym_declaration_list, + STATE(880), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63044] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(4896), 1, - anon_sym_SEMI, - STATE(964), 1, - sym_declaration_list, + 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, [63058] = 4, - ACTIONS(3804), 1, - anon_sym_LT, - ACTIONS(4898), 1, - anon_sym_EQ, - STATE(2535), 1, - sym_type_parameters, + 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, [63072] = 4, - ACTIONS(3840), 1, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + ACTIONS(4901), 1, anon_sym_GT, - ACTIONS(4900), 1, - anon_sym_COMMA, - STATE(1904), 1, - aux_sym_type_parameters_repeat1, + STATE(2303), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63086] = 4, - ACTIONS(3832), 1, - anon_sym_GT, - ACTIONS(4902), 1, - anon_sym_COMMA, - STATE(1904), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4903), 1, + anon_sym_SEMI, + STATE(327), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63100] = 4, - ACTIONS(3810), 1, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4904), 1, + ACTIONS(4905), 1, anon_sym_SEMI, - STATE(907), 1, + STATE(885), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63114] = 2, + [63114] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4907), 1, + anon_sym_SEMI, + STATE(887), 1, + sym_declaration_list, 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, - anon_sym_LBRACE, - ACTIONS(4908), 1, - anon_sym_SEMI, - STATE(270), 1, - sym_block, + [63128] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63138] = 2, + ACTIONS(4909), 3, + anon_sym_SEMI, + 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, - ACTIONS(4910), 3, - anon_sym_EQ, + [63152] = 4, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(3229), 1, anon_sym_COMMA, - anon_sym_GT, - [63148] = 4, - ACTIONS(4071), 1, + STATE(1916), 1, + aux_sym_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63166] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4912), 1, + ACTIONS(4911), 1, anon_sym_SEMI, - STATE(956), 1, + STATE(892), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63162] = 2, + [63180] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4913), 1, + anon_sym_SEMI, + STATE(944), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2373), 3, + [63194] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4915), 1, 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, + ACTIONS(4917), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63186] = 4, - ACTIONS(794), 1, + [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, + [63222] = 4, + ACTIONS(2536), 1, anon_sym_RPAREN, - ACTIONS(4914), 1, + ACTIONS(4925), 1, anon_sym_COMMA, - STATE(1965), 1, - aux_sym_parameters_repeat1, + STATE(2048), 1, + aux_sym_tuple_type_repeat1, 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, + [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, - [63214] = 2, + [63250] = 4, + ACTIONS(4929), 1, + anon_sym_RBRACE, + ACTIONS(4931), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_use_list_repeat1, 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, + [63264] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4918), 1, - anon_sym_SEMI, - ACTIONS(4920), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63238] = 4, - ACTIONS(3844), 1, + ACTIONS(4933), 2, + anon_sym_COMMA, + anon_sym_GT, + [63276] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4935), 1, anon_sym_SEMI, - STATE(397), 1, - sym_declaration_list, + STATE(898), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63252] = 4, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4924), 1, + [63290] = 4, + ACTIONS(4937), 1, + anon_sym_RPAREN, + ACTIONS(4939), 1, anon_sym_COMMA, - STATE(1955), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2069), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63266] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4926), 1, - anon_sym_SEMI, - ACTIONS(4928), 1, + [63304] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + 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, - [63280] = 4, - ACTIONS(4081), 1, + ACTIONS(4405), 2, + anon_sym_COMMA, + anon_sym_GT, + [63326] = 4, + 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(4106), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4948), 1, anon_sym_SEMI, - STATE(345), 1, + STATE(915), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63294] = 4, - ACTIONS(4073), 1, + [63354] = 4, + 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(4096), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4952), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63380] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4932), 1, + ACTIONS(4954), 1, anon_sym_SEMI, - ACTIONS(4934), 1, + ACTIONS(4956), 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, + [63394] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63322] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + ACTIONS(2403), 3, + anon_sym_SEMI, + 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, - ACTIONS(4335), 2, + [63418] = 4, + ACTIONS(4960), 1, anon_sym_RPAREN, + ACTIONS(4962), 1, 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, + STATE(2079), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63348] = 3, - ACTIONS(3195), 1, - anon_sym_COLON_COLON, + [63432] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4942), 2, - anon_sym_RPAREN, + ACTIONS(4965), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [63360] = 4, - ACTIONS(4944), 1, + [63442] = 4, + ACTIONS(4967), 1, anon_sym_RBRACE, - ACTIONS(4946), 1, + ACTIONS(4969), 1, anon_sym_COMMA, - STATE(2139), 1, + STATE(2154), 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, + [63456] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4971), 1, anon_sym_SEMI, - STATE(2478), 1, - sym_where_clause, + STATE(269), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63388] = 4, - ACTIONS(4073), 1, + [63470] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(4950), 1, - anon_sym_as, - ACTIONS(4952), 1, - anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63402] = 4, - ACTIONS(4081), 1, + ACTIONS(4973), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63482] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(4954), 1, + ACTIONS(4975), 1, anon_sym_SEMI, - STATE(288), 1, - sym_block, + STATE(926), 1, + sym_declaration_list, 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, + [63496] = 4, + ACTIONS(3848), 1, + anon_sym_RBRACE, + ACTIONS(4977), 1, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63430] = 4, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4960), 1, + [63510] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(4979), 1, anon_sym_SEMI, - STATE(2511), 1, - sym_where_clause, + ACTIONS(4981), 1, + anon_sym_EQ, 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, + [63524] = 4, + ACTIONS(4405), 1, + anon_sym_GT, + ACTIONS(4983), 1, + anon_sym_COMMA, + STATE(2087), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63458] = 4, - ACTIONS(4308), 1, + [63538] = 4, + ACTIONS(4324), 1, anon_sym_RPAREN, - ACTIONS(4310), 1, + ACTIONS(4326), 1, anon_sym_COMMA, STATE(2144), 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, + [63552] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63486] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(4966), 1, + ACTIONS(4986), 2, + anon_sym_COMMA, + anon_sym_GT, + [63564] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(4988), 1, anon_sym_SEMI, - ACTIONS(4968), 1, - anon_sym_EQ, + STATE(935), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63500] = 2, + [63578] = 4, + ACTIONS(4990), 1, + anon_sym_RBRACE, + ACTIONS(4992), 1, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym_field_declaration_list_repeat1, 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, + [63592] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(4972), 1, + ACTIONS(4995), 1, anon_sym_SEMI, - STATE(876), 1, + STATE(1006), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63524] = 3, - ACTIONS(4067), 1, - anon_sym_COLON_COLON, + [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, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63536] = 2, + [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, - ACTIONS(4974), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63546] = 4, - ACTIONS(4425), 1, + [63634] = 4, + ACTIONS(4393), 1, anon_sym_COMMA, - ACTIONS(4427), 1, + ACTIONS(4395), 1, anon_sym_GT, - STATE(2113), 1, + STATE(2152), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63560] = 4, - ACTIONS(4976), 1, + [63648] = 4, + ACTIONS(3824), 1, + anon_sym_LBRACE, + ACTIONS(5001), 1, + anon_sym_SEMI, + STATE(939), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63662] = 4, + ACTIONS(3886), 1, anon_sym_RBRACE, - ACTIONS(4978), 1, + ACTIONS(5003), 1, anon_sym_COMMA, - STATE(1889), 1, + STATE(2091), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63574] = 4, - ACTIONS(3802), 1, - anon_sym_where, - ACTIONS(4980), 1, + [63676] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5005), 1, anon_sym_SEMI, - STATE(2453), 1, - sym_where_clause, - 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, + STATE(469), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63602] = 4, + [63690] = 4, ACTIONS(2540), 1, anon_sym_RPAREN, - ACTIONS(4988), 1, + ACTIONS(5007), 1, anon_sym_COMMA, - STATE(1936), 1, + STATE(2048), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63616] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, + [63704] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5009), 1, + anon_sym_SEMI, + STATE(317), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4990), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63628] = 4, - ACTIONS(3856), 1, + [63718] = 4, + ACTIONS(3834), 1, anon_sym_GT, - ACTIONS(4992), 1, + ACTIONS(5011), 1, anon_sym_COMMA, - STATE(1904), 1, + STATE(2087), 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, + [63732] = 4, + ACTIONS(5013), 1, + anon_sym_RBRACE, + ACTIONS(5015), 1, + anon_sym_COMMA, + STATE(2043), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63656] = 4, - ACTIONS(3848), 1, + [63746] = 4, + ACTIONS(3874), 1, anon_sym_GT, - ACTIONS(4996), 1, + ACTIONS(5017), 1, anon_sym_COMMA, - STATE(1904), 1, + STATE(2087), 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, + [63760] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5019), 1, anon_sym_SEMI, - ACTIONS(5000), 1, - anon_sym_EQ, + STATE(354), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63684] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [63774] = 3, + ACTIONS(5023), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5002), 2, + ACTIONS(5021), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [63696] = 4, - ACTIONS(3810), 1, + [63786] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5004), 1, + ACTIONS(5025), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(1012), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63710] = 4, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(5006), 1, - anon_sym_SEMI, - STATE(921), 1, - sym_block, + [63800] = 4, + ACTIONS(2465), 1, + anon_sym_PLUS, + ACTIONS(5027), 1, + sym_mutable_specifier, + ACTIONS(5029), 1, + sym_self, 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, + [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, - [63738] = 4, - ACTIONS(4073), 1, + [63828] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5014), 1, + ACTIONS(5033), 1, anon_sym_SEMI, - ACTIONS(5016), 1, + ACTIONS(5035), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63752] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(5018), 1, - anon_sym_SEMI, - STATE(435), 1, - sym_declaration_list, + [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, - [63766] = 2, + [63856] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5037), 1, + anon_sym_SEMI, + STATE(461), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5020), 3, + [63870] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5039), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63776] = 4, - ACTIONS(3347), 1, - anon_sym_RBRACE, - ACTIONS(5022), 1, - anon_sym_COMMA, - STATE(1906), 1, - aux_sym_use_list_repeat1, + ACTIONS(5041), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63790] = 2, + [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(5024), 3, - anon_sym_SEMI, + [63898] = 4, + ACTIONS(3856), 1, anon_sym_RBRACE, + ACTIONS(5045), 1, anon_sym_COMMA, - [63800] = 2, + STATE(1939), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5026), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63810] = 4, - ACTIONS(3810), 1, + [63912] = 4, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(5028), 1, + ACTIONS(5047), 1, anon_sym_SEMI, - STATE(811), 1, - sym_declaration_list, + STATE(330), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63824] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [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, - ACTIONS(5030), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63836] = 4, - ACTIONS(4073), 1, + [63940] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5032), 1, + ACTIONS(5049), 1, anon_sym_SEMI, - ACTIONS(5034), 1, + ACTIONS(5051), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63850] = 4, - ACTIONS(3784), 1, - anon_sym_RBRACE, - ACTIONS(5036), 1, - anon_sym_COMMA, - STATE(2030), 1, - aux_sym_field_declaration_list_repeat1, + [63954] = 3, + ACTIONS(3205), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63864] = 4, - ACTIONS(5038), 1, + ACTIONS(5053), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63966] = 4, + ACTIONS(5055), 1, anon_sym_RBRACE, - ACTIONS(5040), 1, + ACTIONS(5057), 1, anon_sym_COMMA, - STATE(2105), 1, + STATE(2135), 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, + [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, - [63892] = 4, - ACTIONS(3802), 1, + [63994] = 4, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(5042), 1, + ACTIONS(5061), 1, anon_sym_SEMI, - STATE(2553), 1, + STATE(2557), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63906] = 2, + [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, - ACTIONS(5044), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63916] = 4, - ACTIONS(4073), 1, + [64022] = 4, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5046), 1, + ACTIONS(5065), 1, anon_sym_SEMI, - ACTIONS(5048), 1, + ACTIONS(5067), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63930] = 4, - ACTIONS(4071), 1, + [64036] = 4, + ACTIONS(4106), 1, anon_sym_LBRACE, - ACTIONS(5050), 1, + ACTIONS(5069), 1, anon_sym_SEMI, - STATE(834), 1, + STATE(966), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63944] = 2, + [64050] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5052), 3, - anon_sym_SEMI, + ACTIONS(5071), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63954] = 2, + [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, - ACTIONS(5054), 3, - 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, + [64076] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63978] = 4, - ACTIONS(910), 1, - anon_sym_GT, - ACTIONS(5060), 1, - anon_sym_COMMA, - STATE(1991), 1, - aux_sym_type_arguments_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, - [63992] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(5062), 1, - anon_sym_SEMI, - STATE(462), 1, - sym_block, + [64100] = 4, + ACTIONS(5083), 1, + sym_identifier, + ACTIONS(5085), 1, + anon_sym_ref, + ACTIONS(5087), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64006] = 4, - ACTIONS(3810), 1, + [64114] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5064), 1, + ACTIONS(5089), 1, anon_sym_SEMI, - STATE(793), 1, + STATE(1048), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64020] = 2, + [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, - ACTIONS(5066), 3, + [64142] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5091), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [64030] = 2, + ACTIONS(5093), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5068), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64040] = 2, + [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, - ACTIONS(5070), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64050] = 4, - ACTIONS(4161), 1, + [64170] = 4, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(5097), 1, anon_sym_COMMA, - ACTIONS(4163), 1, - anon_sym_GT, - STATE(2045), 1, - aux_sym_type_parameters_repeat1, + STATE(2085), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64064] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + [64184] = 4, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(5097), 1, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym_field_declaration_list_repeat1, 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, + [64198] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5099), 1, + anon_sym_SEMI, + ACTIONS(5101), 1, + anon_sym_EQ, 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, + [64212] = 4, + ACTIONS(5103), 1, + anon_sym_RPAREN, + ACTIONS(5105), 1, + anon_sym_COMMA, + STATE(2079), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64104] = 4, - ACTIONS(3802), 1, + [64226] = 4, + ACTIONS(3806), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5107), 1, anon_sym_SEMI, - STATE(2543), 1, + STATE(2545), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64118] = 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, + [64254] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5082), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5113), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [64128] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(5084), 1, + [64264] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5115), 1, anon_sym_SEMI, - STATE(327), 1, - sym_declaration_list, + ACTIONS(5117), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64142] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(5086), 1, + [64278] = 4, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5119), 1, anon_sym_SEMI, - STATE(325), 1, - sym_declaration_list, + ACTIONS(5121), 1, + anon_sym_EQ, 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, + [64292] = 4, + ACTIONS(4552), 1, + anon_sym_COMMA, + ACTIONS(5123), 1, + anon_sym_PIPE, + STATE(2021), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64170] = 4, - ACTIONS(3844), 1, - anon_sym_LBRACE, - ACTIONS(5088), 1, - anon_sym_SEMI, - STATE(364), 1, - sym_declaration_list, + [64306] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4348), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64184] = 4, - ACTIONS(3810), 1, - anon_sym_LBRACE, - ACTIONS(5090), 1, - anon_sym_SEMI, - STATE(847), 1, - sym_declaration_list, + [64320] = 4, + ACTIONS(3904), 1, + anon_sym_RBRACE, + ACTIONS(5125), 1, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64198] = 4, - ACTIONS(3844), 1, + [64334] = 4, + ACTIONS(4090), 1, anon_sym_LBRACE, - ACTIONS(5092), 1, + ACTIONS(5127), 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(343), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5094), 2, + [64348] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4348), 1, anon_sym_COMMA, - anon_sym_PIPE, - [64224] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, + STATE(2113), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5096), 2, + [64362] = 4, + ACTIONS(5129), 1, anon_sym_RPAREN, + ACTIONS(5131), 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, + STATE(2079), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64250] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, + [64376] = 4, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(5133), 1, + anon_sym_SEMI, + STATE(1016), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5101), 2, + [64390] = 4, + ACTIONS(3904), 1, anon_sym_RBRACE, + ACTIONS(5125), 1, anon_sym_COMMA, - [64262] = 2, + STATE(2097), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2401), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [64272] = 4, - ACTIONS(3810), 1, + [64404] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5103), 1, + ACTIONS(5135), 1, anon_sym_SEMI, - STATE(862), 1, + STATE(1004), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64286] = 4, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5105), 1, - anon_sym_SEMI, - ACTIONS(5107), 1, - anon_sym_EQ, + [64418] = 4, + ACTIONS(926), 1, + anon_sym_GT, + ACTIONS(5137), 1, + anon_sym_COMMA, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64300] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_PLUS, - STATE(1050), 1, - sym_block, + [64432] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64314] = 4, - ACTIONS(3870), 1, + ACTIONS(5139), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64442] = 4, + ACTIONS(3902), 1, anon_sym_RBRACE, - ACTIONS(5109), 1, + ACTIONS(5141), 1, anon_sym_COMMA, - STATE(1955), 1, + STATE(1939), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64328] = 4, - ACTIONS(3870), 1, + [64456] = 4, + ACTIONS(3902), 1, anon_sym_RBRACE, - ACTIONS(5109), 1, + ACTIONS(5141), 1, anon_sym_COMMA, - STATE(2058), 1, + STATE(2114), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64342] = 2, + [64470] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, 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, + ACTIONS(5143), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64482] = 4, + ACTIONS(3824), 1, anon_sym_LBRACE, - ACTIONS(5113), 1, + ACTIONS(5145), 1, anon_sym_SEMI, - STATE(404), 1, - sym_block, + STATE(992), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64366] = 4, - ACTIONS(4073), 1, + [64496] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5115), 1, + ACTIONS(5147), 1, anon_sym_SEMI, - ACTIONS(5117), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64380] = 4, - ACTIONS(798), 1, - anon_sym_RPAREN, - ACTIONS(4245), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_parameters_repeat1, + [64507] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1686), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64394] = 4, - ACTIONS(4081), 1, + [64518] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, - STATE(341), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64408] = 4, - ACTIONS(3820), 1, - anon_sym_RBRACE, - ACTIONS(5121), 1, - anon_sym_COMMA, - STATE(1924), 1, - aux_sym_field_initializer_list_repeat1, + STATE(488), 1, + sym_field_declaration_list, 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, + [64529] = 3, + ACTIONS(4342), 1, + anon_sym_COLON, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64436] = 3, - ACTIONS(4171), 1, + [64540] = 3, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(478), 1, + STATE(369), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64447] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(91), 1, - sym_block, + [64551] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64458] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5123), 1, - anon_sym_SEMI, + 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, - [64469] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(399), 1, - sym_declaration_list, + [64571] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5153), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64480] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(800), 1, - sym_field_declaration_list, + [64582] = 3, + ACTIONS(5155), 1, + sym_identifier, + ACTIONS(5157), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64491] = 3, - ACTIONS(3810), 1, - anon_sym_LBRACE, - STATE(792), 1, - sym_declaration_list, + [64593] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5159), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64502] = 2, + [64604] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5125), 2, + ACTIONS(5161), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64511] = 3, - ACTIONS(4075), 1, - anon_sym_LBRACE, - STATE(791), 1, - sym_enum_variant_list, + [64613] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64522] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(805), 1, - sym_field_declaration_list, + 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, - [64533] = 3, - ACTIONS(3828), 1, + [64633] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(812), 1, + STATE(483), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64544] = 3, - ACTIONS(5127), 1, + [64644] = 3, + ACTIONS(5165), 1, anon_sym_SEMI, - ACTIONS(5129), 1, + ACTIONS(5167), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64555] = 2, + [64655] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5131), 2, + ACTIONS(5169), 2, sym_identifier, sym_metavariable, - [64564] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5135), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64575] = 3, + [64664] = 3, ACTIONS(15), 1, anon_sym_LBRACE, STATE(149), 1, @@ -123934,4677 +126436,4690 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64586] = 3, - ACTIONS(5133), 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(5137), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64597] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1392), 1, - sym_parameters, + [64697] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(1051), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64608] = 3, - ACTIONS(5139), 1, - sym_identifier, - ACTIONS(5141), 1, - sym_mutable_specifier, + [64708] = 3, + ACTIONS(3804), 1, + anon_sym_LBRACE, + STATE(1030), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64619] = 3, - ACTIONS(2566), 1, - anon_sym_LPAREN, - STATE(850), 1, - sym_parameters, + [64719] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64630] = 3, - ACTIONS(3810), 1, + [64730] = 3, + ACTIONS(3804), 1, anon_sym_LBRACE, - STATE(816), 1, - sym_declaration_list, + STATE(1036), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64641] = 3, - ACTIONS(3828), 1, + [64741] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5177), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64752] = 3, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(817), 1, - sym_field_declaration_list, + STATE(1041), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64652] = 2, + [64763] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_declaration_list, 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, + [64774] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5179), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64672] = 3, - ACTIONS(3810), 1, + [64785] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(877), 1, + STATE(984), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64683] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5145), 1, - anon_sym_SEMI, + [64796] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64694] = 2, + [64807] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(338), 1, + sym_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, + [64818] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64714] = 3, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - ACTIONS(5147), 1, - anon_sym_RPAREN, + [64829] = 3, + ACTIONS(3804), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64725] = 3, - ACTIONS(3810), 1, + [64840] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(893), 1, + STATE(976), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64736] = 3, - ACTIONS(3810), 1, + [64851] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(896), 1, + STATE(975), 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, + [64862] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64758] = 3, - ACTIONS(5074), 1, - sym_identifier, - ACTIONS(5078), 1, - sym_mutable_specifier, + [64873] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5185), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64769] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5149), 1, - anon_sym_EQ, + [64884] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64780] = 3, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, + ACTIONS(5187), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [64893] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(337), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64791] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5153), 1, - anon_sym_in, + [64904] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5189), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64802] = 3, - ACTIONS(3828), 1, + [64915] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(787), 1, - sym_field_declaration_list, + STATE(800), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64813] = 3, - ACTIONS(4075), 1, + [64926] = 3, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(964), 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, + [64937] = 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(5191), 2, + sym_identifier, + sym_metavariable, + [64946] = 3, + ACTIONS(5193), 1, + sym_identifier, + ACTIONS(5195), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64846] = 3, - ACTIONS(3828), 1, + [64957] = 3, + ACTIONS(3804), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(961), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64857] = 3, - ACTIONS(4073), 1, + [64968] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, - ACTIONS(5159), 1, + ACTIONS(5197), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64868] = 3, - ACTIONS(3828), 1, + [64979] = 3, + ACTIONS(3804), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(959), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64879] = 3, - ACTIONS(3810), 1, + [64990] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(957), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64890] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5161), 1, - anon_sym_in, + [65001] = 3, + ACTIONS(3804), 1, + anon_sym_LBRACE, + STATE(1039), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64901] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5163), 1, - anon_sym_EQ, + [65012] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64912] = 3, - ACTIONS(4075), 1, - anon_sym_LBRACE, - STATE(886), 1, - sym_enum_variant_list, + 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, - [64923] = 3, - ACTIONS(4294), 1, + [65032] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(5165), 1, - anon_sym_in, + ACTIONS(5201), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64934] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym_declaration_list, + [65043] = 3, + ACTIONS(3925), 1, + anon_sym_COLON, + STATE(1912), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64945] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(285), 1, - sym_declaration_list, + [65054] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1388), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64956] = 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(5167), 2, - sym_identifier, - sym_metavariable, - [64965] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5169), 1, - anon_sym_SEMI, + [65076] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64976] = 3, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(2025), 1, - sym_lifetime, + [65087] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64987] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5171), 1, - anon_sym_EQ, + 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, - [64998] = 3, - ACTIONS(4019), 1, - anon_sym_RBRACE, - ACTIONS(5133), 1, - anon_sym_SEMI, + [65107] = 3, + ACTIONS(4069), 1, + anon_sym_COLON_COLON, + ACTIONS(5203), 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, + [65118] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5205), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65020] = 3, - ACTIONS(3973), 1, - anon_sym_RBRACE, - ACTIONS(5133), 1, + [65129] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5207), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65031] = 2, + [65140] = 2, 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, + 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, - [65051] = 2, + [65160] = 3, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(5211), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4788), 2, - anon_sym_COMMA, - anon_sym_GT, - [65060] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1086), 1, - sym_block, + [65171] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1383), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65071] = 3, - ACTIONS(3844), 1, + [65182] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(348), 1, + STATE(304), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65082] = 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, + [65193] = 3, + ACTIONS(2576), 1, + anon_sym_LPAREN, + STATE(1013), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65102] = 3, - ACTIONS(4294), 1, + [65204] = 3, + ACTIONS(4346), 1, anon_sym_PIPE, - ACTIONS(5177), 1, - anon_sym_EQ, + ACTIONS(5213), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65113] = 2, + [65215] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4753), 2, + ACTIONS(4990), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65122] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5179), 1, - anon_sym_EQ, + [65224] = 3, + ACTIONS(5215), 1, + anon_sym_LBRACK, + ACTIONS(5217), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65133] = 2, + [65235] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(475), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4842), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65142] = 3, - ACTIONS(3810), 1, + [65246] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5219), 2, + sym_identifier, + sym_metavariable, + [65255] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(433), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65153] = 3, - ACTIONS(3828), 1, + [65266] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(939), 1, - sym_field_declaration_list, + STATE(432), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65164] = 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(5181), 2, - sym_identifier, - sym_metavariable, - [65173] = 2, + [65288] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4328), 2, - anon_sym_RPAREN, + ACTIONS(4764), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [65182] = 3, - ACTIONS(2566), 1, - anon_sym_LPAREN, - STATE(975), 1, - sym_parameters, + [65297] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65193] = 3, - ACTIONS(3810), 1, + ACTIONS(4235), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65306] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(987), 1, + STATE(918), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65204] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(333), 1, - sym_field_declaration_list, + [65317] = 3, + ACTIONS(4007), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65215] = 3, - ACTIONS(4049), 1, - anon_sym_COLON, - ACTIONS(4073), 1, - anon_sym_PLUS, + [65328] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65226] = 2, + ACTIONS(4717), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65337] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4695), 2, - anon_sym_RBRACE, + ACTIONS(2423), 2, anon_sym_COMMA, - [65235] = 3, - ACTIONS(4073), 1, + anon_sym_GT, + [65346] = 3, + ACTIONS(4096), 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, + [65357] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(995), 1, + STATE(907), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65257] = 3, - ACTIONS(3810), 1, + [65368] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(906), 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, + [65379] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65279] = 3, - ACTIONS(5187), 1, + [65390] = 3, + ACTIONS(5223), 1, anon_sym_LBRACK, - ACTIONS(5189), 1, + ACTIONS(5225), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65290] = 2, + [65401] = 3, + ACTIONS(4013), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5191), 2, - sym_identifier, - sym_metavariable, - [65299] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5193), 1, - anon_sym_EQ, + [65412] = 3, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65310] = 3, - ACTIONS(4075), 1, - anon_sym_LBRACE, - STATE(1015), 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, - [65321] = 3, - ACTIONS(5195), 1, - anon_sym_LBRACK, - ACTIONS(5197), 1, - anon_sym_BANG, + [65434] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65332] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1655), 1, - sym_parameters, + 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, - [65343] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(71), 1, - sym_closure_parameters, + [65454] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1127), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65354] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_declaration_list, + [65465] = 3, + ACTIONS(4083), 1, + anon_sym_COLON_COLON, + ACTIONS(5231), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65365] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(430), 1, - sym_field_declaration_list, + [65476] = 3, + ACTIONS(4069), 1, + anon_sym_COLON_COLON, + ACTIONS(5231), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65376] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5199), 1, - anon_sym_SEMI, + [65487] = 3, + ACTIONS(3614), 1, + anon_sym_COLON_COLON, + ACTIONS(5233), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65387] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_field_declaration_list, + [65498] = 3, + ACTIONS(3594), 1, + anon_sym_COLON_COLON, + ACTIONS(5233), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65398] = 3, - ACTIONS(4171), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_enum_variant_list, + [65509] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1721), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65409] = 3, - ACTIONS(2638), 1, - anon_sym_LBRACE, - STATE(1131), 1, - sym_field_initializer_list, + [65520] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5235), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65420] = 2, + [65531] = 3, + ACTIONS(5237), 1, + anon_sym_SEMI, + ACTIONS(5239), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4624), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65429] = 3, - ACTIONS(5201), 1, - anon_sym_LPAREN, - ACTIONS(5203), 1, - anon_sym_LBRACE, + [65542] = 3, + ACTIONS(5241), 1, + anon_sym_SEMI, + ACTIONS(5243), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65440] = 3, - ACTIONS(5205), 1, - anon_sym_LPAREN, - ACTIONS(5207), 1, - anon_sym_LBRACE, + [65553] = 3, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, + ACTIONS(5231), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65451] = 3, - ACTIONS(2566), 1, - anon_sym_LPAREN, - STATE(830), 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, - [65462] = 3, - ACTIONS(284), 1, + [65575] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(1084), 1, - sym_block, + STATE(295), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65473] = 2, + [65586] = 3, + ACTIONS(4027), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5209), 2, - anon_sym_const, - sym_mutable_specifier, - [65482] = 3, - ACTIONS(3810), 1, + [65597] = 3, + ACTIONS(3824), 1, anon_sym_LBRACE, - STATE(1043), 1, + STATE(877), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65493] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5211), 1, - anon_sym_EQ, + [65608] = 3, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(903), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65504] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1052), 1, - sym_block, + [65619] = 3, + ACTIONS(2584), 1, + anon_sym_LT2, + STATE(1071), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65515] = 3, - ACTIONS(284), 1, + [65630] = 3, + ACTIONS(3804), 1, anon_sym_LBRACE, - STATE(1137), 1, - sym_block, + STATE(889), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65526] = 2, + [65641] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4593), 2, + ACTIONS(5245), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65535] = 3, - ACTIONS(3810), 1, - anon_sym_LBRACE, - STATE(815), 1, - sym_declaration_list, + [65650] = 3, + ACTIONS(4023), 1, + anon_sym_RPAREN, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65546] = 3, - ACTIONS(586), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_block, + [65661] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65557] = 3, - ACTIONS(888), 1, + ACTIONS(5247), 2, + sym_identifier, + sym_metavariable, + [65670] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(1478), 1, - sym_block, + STATE(414), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65568] = 3, - ACTIONS(3425), 1, + [65681] = 3, + ACTIONS(2576), 1, anon_sym_LPAREN, - STATE(1662), 1, + STATE(855), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65579] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(61), 1, - sym_closure_parameters, + [65692] = 3, + ACTIONS(2788), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65590] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(257), 1, - sym_declaration_list, + [65703] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5249), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65601] = 3, - ACTIONS(586), 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, - [65612] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1053), 1, - sym_block, + [65725] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5251), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65623] = 3, - ACTIONS(586), 1, + [65736] = 3, + ACTIONS(602), 1, anon_sym_LBRACE, - STATE(242), 1, + STATE(245), 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, + [65747] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5253), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65645] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5213), 1, - anon_sym_SEMI, + [65758] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1672), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65656] = 3, - ACTIONS(586), 1, + [65769] = 3, + ACTIONS(602), 1, anon_sym_LBRACE, - STATE(221), 1, + STATE(252), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65667] = 3, - ACTIONS(3844), 1, + [65780] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65791] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(360), 1, - sym_declaration_list, + STATE(412), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65678] = 3, - ACTIONS(5133), 1, + [65802] = 3, + ACTIONS(4037), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, anon_sym_SEMI, - ACTIONS(5215), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65689] = 3, - ACTIONS(5217), 1, - anon_sym_SEMI, - ACTIONS(5219), 1, - anon_sym_as, + [65813] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(411), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65700] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5221), 1, - anon_sym_RPAREN, + [65824] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(429), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65711] = 2, + [65835] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4503), 2, + ACTIONS(4825), 2, anon_sym_COMMA, - anon_sym_GT, - [65720] = 2, + 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(5223), 2, - sym_float_literal, - sym_integer_literal, - [65729] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1677), 1, - sym_parameters, + [65855] = 3, + ACTIONS(4124), 1, + anon_sym_LBRACE, + STATE(848), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65740] = 2, + [65866] = 3, + ACTIONS(4621), 1, + sym_identifier, + ACTIONS(4625), 1, + sym_mutable_specifier, 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, + [65877] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65760] = 3, - ACTIONS(3425), 1, + ACTIONS(4431), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65886] = 3, + ACTIONS(3461), 1, anon_sym_LPAREN, - STATE(1643), 1, + STATE(1674), 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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65782] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5227), 1, - anon_sym_RBRACE, + [65897] = 3, + ACTIONS(2604), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65793] = 3, - ACTIONS(4294), 1, - anon_sym_PIPE, - ACTIONS(5229), 1, - anon_sym_in, + [65908] = 3, + ACTIONS(2904), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65804] = 3, - ACTIONS(5231), 1, - sym_identifier, - ACTIONS(5233), 1, - sym_mutable_specifier, + [65919] = 3, + ACTIONS(2908), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65815] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5235), 1, - anon_sym_RPAREN, + [65930] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(277), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65826] = 2, + [65941] = 3, + ACTIONS(2912), 1, + anon_sym_COLON, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5237), 2, - anon_sym_const, - sym_mutable_specifier, - [65835] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1386), 1, - sym_parameters, + [65952] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(280), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65846] = 3, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_BANG, + [65963] = 3, + ACTIONS(4019), 1, + anon_sym_RPAREN, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65857] = 3, - ACTIONS(5133), 1, + [65974] = 3, + ACTIONS(4021), 1, + anon_sym_RPAREN, + ACTIONS(5151), 1, anon_sym_SEMI, - ACTIONS(5239), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65868] = 3, - ACTIONS(586), 1, + [65985] = 3, + ACTIONS(602), 1, anon_sym_LBRACE, - STATE(226), 1, + STATE(240), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65879] = 3, - ACTIONS(5133), 1, - anon_sym_SEMI, - ACTIONS(5241), 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, + [65996] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65901] = 3, - ACTIONS(5245), 1, + ACTIONS(5259), 2, + sym_identifier, + sym_metavariable, + [66005] = 3, + ACTIONS(4053), 1, + anon_sym_RPAREN, + ACTIONS(5151), 1, anon_sym_SEMI, - ACTIONS(5247), 1, - anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65912] = 2, + [66016] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5249), 2, - sym_identifier, - sym_metavariable, - [65921] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(457), 1, - sym_field_declaration_list, + 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, - [65932] = 3, - ACTIONS(2906), 1, - anon_sym_COLON, - ACTIONS(4073), 1, + [66036] = 3, + ACTIONS(4096), 1, anon_sym_PLUS, + ACTIONS(5265), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65943] = 3, - ACTIONS(3999), 1, - anon_sym_RPAREN, - ACTIONS(5133), 1, - anon_sym_SEMI, + [66047] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65954] = 3, - ACTIONS(15), 1, + ACTIONS(4805), 2, + anon_sym_COMMA, + anon_sym_GT, + [66056] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(129), 1, - sym_block, + STATE(431), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65965] = 3, - ACTIONS(4001), 1, - anon_sym_RPAREN, - ACTIONS(5133), 1, - anon_sym_SEMI, + [66067] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65976] = 3, - ACTIONS(4009), 1, - anon_sym_RPAREN, - ACTIONS(5133), 1, + [66078] = 3, + ACTIONS(4096), 1, + anon_sym_PLUS, + ACTIONS(5267), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65987] = 3, - ACTIONS(3800), 1, + [66089] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(454), 1, - sym_field_declaration_list, + STATE(171), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65998] = 3, - ACTIONS(2574), 1, - anon_sym_LT2, - STATE(1081), 1, - sym_type_arguments, + [66100] = 3, + ACTIONS(5269), 1, + anon_sym_LPAREN, + ACTIONS(5271), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66009] = 3, - ACTIONS(4171), 1, - anon_sym_LBRACE, - STATE(447), 1, - sym_enum_variant_list, + [66111] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1666), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66020] = 3, - ACTIONS(3425), 1, + [66122] = 3, + ACTIONS(3461), 1, anon_sym_LPAREN, - STATE(1703), 1, + STATE(1725), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66031] = 3, - ACTIONS(2800), 1, - anon_sym_COLON, - ACTIONS(4073), 1, - anon_sym_PLUS, + [66133] = 3, + ACTIONS(5273), 1, + sym_identifier, + ACTIONS(5275), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66042] = 3, - ACTIONS(2796), 1, - anon_sym_COLON, - ACTIONS(4073), 1, - anon_sym_PLUS, + [66144] = 3, + ACTIONS(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66053] = 3, - ACTIONS(4011), 1, - anon_sym_RBRACE, - ACTIONS(5133), 1, - anon_sym_SEMI, + [66155] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66064] = 2, + [66166] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5094), 2, + ACTIONS(4773), 2, anon_sym_COMMA, - anon_sym_PIPE, - [66073] = 3, - ACTIONS(3427), 1, + anon_sym_GT, + [66175] = 3, + ACTIONS(3602), 1, anon_sym_BANG, - ACTIONS(5251), 1, + ACTIONS(5281), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66084] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5253), 1, - anon_sym_GT, + [66186] = 3, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(419), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66095] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_declaration_list, + [66197] = 3, + ACTIONS(2576), 1, + anon_sym_LPAREN, + STATE(814), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66106] = 3, - ACTIONS(4015), 1, - anon_sym_RPAREN, - ACTIONS(5133), 1, - anon_sym_SEMI, + [66208] = 3, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(2303), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66117] = 3, - ACTIONS(4021), 1, - anon_sym_RBRACE, - ACTIONS(5133), 1, - anon_sym_SEMI, + [66219] = 3, + ACTIONS(2674), 1, + anon_sym_COLON_COLON, + ACTIONS(3967), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66128] = 3, - ACTIONS(2936), 1, - anon_sym_COLON, - ACTIONS(4073), 1, - anon_sym_PLUS, + [66230] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66139] = 3, - ACTIONS(4635), 1, - sym_identifier, - ACTIONS(4639), 1, + ACTIONS(5283), 2, + anon_sym_const, sym_mutable_specifier, + [66239] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66150] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_parameters, + ACTIONS(5285), 2, + anon_sym_const, + sym_mutable_specifier, + [66248] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66161] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(426), 1, - sym_field_declaration_list, + ACTIONS(4751), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66257] = 3, + ACTIONS(2329), 1, + anon_sym_SQUOTE, + STATE(1986), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66172] = 3, - ACTIONS(4073), 1, - anon_sym_PLUS, - ACTIONS(5255), 1, + [66268] = 3, + ACTIONS(5151), 1, anon_sym_SEMI, + ACTIONS(5287), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66183] = 3, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1378), 1, - sym_parameters, + [66279] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66194] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(421), 1, - sym_declaration_list, + 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, - [66205] = 3, - ACTIONS(3844), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_declaration_list, + [66299] = 3, + ACTIONS(3463), 1, + anon_sym_BANG, + ACTIONS(5291), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66216] = 3, - ACTIONS(3804), 1, - anon_sym_LT, - STATE(737), 1, - sym_type_parameters, + [66310] = 3, + ACTIONS(5293), 1, + anon_sym_LPAREN, + ACTIONS(5295), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66227] = 3, - ACTIONS(5257), 1, - anon_sym_LT, - STATE(710), 1, - sym_type_parameters, + [66321] = 3, + ACTIONS(5297), 1, + anon_sym_LPAREN, + ACTIONS(5299), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66238] = 3, - ACTIONS(3924), 1, + [66332] = 3, + ACTIONS(4015), 1, anon_sym_COLON, - STATE(2017), 1, - sym_trait_bounds, + ACTIONS(4096), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66249] = 3, - ACTIONS(3800), 1, - anon_sym_LBRACE, - STATE(413), 1, - sym_field_declaration_list, + [66343] = 3, + ACTIONS(5301), 1, + anon_sym_SEMI, + ACTIONS(5303), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66260] = 3, - ACTIONS(3570), 1, - anon_sym_BANG, - ACTIONS(5259), 1, - anon_sym_COLON_COLON, + [66354] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1155), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66271] = 2, + [66365] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2393), 2, + ACTIONS(4516), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [66280] = 3, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, - ACTIONS(3932), 1, - anon_sym_BANG, + [66374] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5305), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66291] = 2, + [66385] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(457), 1, + sym_declaration_list, 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, - anon_sym_RPAREN, + [66396] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1116), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66311] = 3, - ACTIONS(5265), 1, - anon_sym_LPAREN, - ACTIONS(5267), 1, + [66407] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, + STATE(1135), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66322] = 2, + [66418] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5307), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5269), 2, - sym_identifier, - sym_metavariable, - [66331] = 3, - ACTIONS(5271), 1, - anon_sym_LPAREN, - ACTIONS(5273), 1, + [66429] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, + STATE(84), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66342] = 3, - ACTIONS(4171), 1, + [66440] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(310), 1, - sym_enum_variant_list, + STATE(1134), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66353] = 3, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - ACTIONS(5263), 1, - anon_sym_RPAREN, + [66451] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(67), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66364] = 3, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - ACTIONS(5263), 1, - anon_sym_RPAREN, + [66462] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66375] = 3, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(5275), 1, + ACTIONS(4275), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [66471] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5309), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66386] = 2, + [66482] = 3, + ACTIONS(904), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66395] = 2, + [66493] = 3, + ACTIONS(602), 1, + anon_sym_LBRACE, + STATE(244), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5277), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66404] = 3, - ACTIONS(5279), 1, + [66504] = 2, + ACTIONS(5311), 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, + [66512] = 2, + ACTIONS(5313), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66426] = 2, - ACTIONS(4288), 1, - anon_sym_RPAREN, + [66520] = 2, + ACTIONS(5315), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66434] = 2, - ACTIONS(4762), 1, - anon_sym_RBRACE, + [66528] = 2, + ACTIONS(4728), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66442] = 2, - ACTIONS(5283), 1, - anon_sym_RBRACK, + [66536] = 2, + ACTIONS(5317), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66450] = 2, - ACTIONS(5285), 1, + [66544] = 2, + ACTIONS(5319), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66458] = 2, - ACTIONS(2686), 1, - anon_sym_COLON_COLON, + [66552] = 2, + ACTIONS(5321), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66466] = 2, - ACTIONS(5287), 1, + [66560] = 2, + ACTIONS(5323), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66474] = 2, - ACTIONS(2726), 1, - anon_sym_COLON_COLON, + [66568] = 2, + ACTIONS(5325), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66482] = 2, - ACTIONS(5289), 1, + [66576] = 2, + ACTIONS(5327), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66490] = 2, - ACTIONS(4818), 1, - anon_sym_RBRACE, + [66584] = 2, + ACTIONS(5329), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66498] = 2, - ACTIONS(4874), 1, + [66592] = 2, + ACTIONS(5331), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66506] = 2, - ACTIONS(5291), 1, + [66600] = 2, + ACTIONS(4703), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66514] = 2, - ACTIONS(5293), 1, - anon_sym_COLON, + [66608] = 2, + ACTIONS(5333), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66522] = 2, - ACTIONS(4952), 1, - anon_sym_GT, + [66616] = 2, + ACTIONS(5305), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66530] = 2, - ACTIONS(5295), 1, + [66624] = 2, + ACTIONS(5335), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66632] = 2, + ACTIONS(5337), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66538] = 2, - ACTIONS(5297), 1, + [66640] = 2, + ACTIONS(4407), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66546] = 2, - ACTIONS(5299), 1, - anon_sym_EQ_GT, + [66648] = 2, + ACTIONS(5339), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66554] = 2, - ACTIONS(5301), 1, + [66656] = 2, + ACTIONS(5341), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66562] = 2, - ACTIONS(5303), 1, - anon_sym_LBRACK, + [66664] = 2, + ACTIONS(552), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66570] = 2, - ACTIONS(5305), 1, + [66672] = 2, + ACTIONS(5343), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66578] = 2, - ACTIONS(5307), 1, + [66680] = 2, + ACTIONS(5345), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66586] = 2, - ACTIONS(5309), 1, + [66688] = 2, + ACTIONS(5347), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66594] = 2, - ACTIONS(5311), 1, + [66696] = 2, + ACTIONS(5349), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66602] = 2, - ACTIONS(5313), 1, - anon_sym_RBRACE, + [66704] = 2, + ACTIONS(5351), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66610] = 2, - ACTIONS(5315), 1, - anon_sym_COLON_COLON, + [66712] = 2, + ACTIONS(5353), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66618] = 2, - ACTIONS(5317), 1, - anon_sym_SEMI, + [66720] = 2, + ACTIONS(5355), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66626] = 2, - ACTIONS(5319), 1, - anon_sym_EQ_GT, + [66728] = 2, + ACTIONS(5357), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66634] = 2, - ACTIONS(3223), 1, + [66736] = 2, + ACTIONS(3227), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66642] = 2, - ACTIONS(4664), 1, + [66744] = 2, + ACTIONS(5359), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66650] = 2, - ACTIONS(3499), 1, + [66752] = 2, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66658] = 2, - ACTIONS(4280), 1, - anon_sym_RPAREN, + [66760] = 2, + ACTIONS(4069), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66666] = 2, - ACTIONS(5321), 1, - sym_identifier, + [66768] = 2, + ACTIONS(5361), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66674] = 2, - ACTIONS(4554), 1, - sym_identifier, + [66776] = 2, + ACTIONS(5363), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66682] = 2, - ACTIONS(5323), 1, + [66784] = 2, + ACTIONS(5365), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66690] = 2, - ACTIONS(5325), 1, - sym_identifier, + [66792] = 2, + ACTIONS(5367), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66698] = 2, - ACTIONS(5327), 1, - anon_sym_COLON, + [66800] = 2, + ACTIONS(4732), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66706] = 2, - ACTIONS(5329), 1, - anon_sym_RPAREN, + [66808] = 2, + ACTIONS(5369), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66714] = 2, - ACTIONS(3195), 1, + [66816] = 2, + ACTIONS(3205), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66722] = 2, - ACTIONS(5331), 1, + [66824] = 2, + ACTIONS(5371), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66730] = 2, - ACTIONS(4976), 1, - anon_sym_RBRACE, + [66832] = 2, + ACTIONS(5373), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66738] = 2, - ACTIONS(5333), 1, - sym_identifier, + [66840] = 2, + ACTIONS(5375), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66746] = 2, - ACTIONS(5335), 1, - anon_sym_COLON, + [66848] = 2, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66754] = 2, - ACTIONS(5337), 1, + [66856] = 2, + ACTIONS(5377), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66762] = 2, - ACTIONS(5339), 1, + [66864] = 2, + ACTIONS(5379), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66770] = 2, - ACTIONS(5341), 1, + [66872] = 2, + ACTIONS(5381), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66778] = 2, - ACTIONS(5343), 1, - sym_identifier, + [66880] = 2, + ACTIONS(5309), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66786] = 2, - ACTIONS(5345), 1, - sym_identifier, + [66888] = 2, + ACTIONS(2486), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66794] = 2, - ACTIONS(5347), 1, + [66896] = 2, + ACTIONS(5383), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66802] = 2, - ACTIONS(5349), 1, + [66904] = 2, + ACTIONS(5385), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66810] = 2, - ACTIONS(5351), 1, - anon_sym_RBRACK, + [66912] = 2, + ACTIONS(5387), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66818] = 2, - ACTIONS(5353), 1, + [66920] = 2, + ACTIONS(5389), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66826] = 2, - ACTIONS(5355), 1, - sym_identifier, + [66928] = 2, + ACTIONS(5391), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66834] = 2, - ACTIONS(5357), 1, + [66936] = 2, + ACTIONS(5393), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66842] = 2, - ACTIONS(5359), 1, + [66944] = 2, + ACTIONS(5395), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66850] = 2, - ACTIONS(5361), 1, + [66952] = 2, + ACTIONS(5397), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66858] = 2, - ACTIONS(5363), 1, + [66960] = 2, + ACTIONS(5399), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66866] = 2, - ACTIONS(5365), 1, + [66968] = 2, + ACTIONS(5401), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66874] = 2, - ACTIONS(5367), 1, - anon_sym_COLON, + [66976] = 2, + ACTIONS(5403), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66984] = 2, + ACTIONS(2359), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66882] = 2, - ACTIONS(4566), 1, - sym_identifier, + [66992] = 2, + ACTIONS(5405), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66890] = 2, - ACTIONS(5369), 1, - sym_identifier, + [67000] = 2, + ACTIONS(5407), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66898] = 2, - ACTIONS(5371), 1, + [67008] = 2, + ACTIONS(5409), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66906] = 2, - ACTIONS(5373), 1, - sym_identifier, + [67016] = 2, + ACTIONS(5411), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66914] = 2, - ACTIONS(3187), 1, - sym_identifier, + [67024] = 2, + ACTIONS(5413), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66922] = 2, - ACTIONS(4604), 1, + [67032] = 2, + ACTIONS(5415), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66930] = 2, - ACTIONS(5375), 1, - anon_sym_fn, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66938] = 2, - ACTIONS(5377), 1, - sym_identifier, + [67040] = 2, + ACTIONS(4531), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66946] = 2, - ACTIONS(2720), 1, + [67048] = 2, + ACTIONS(2674), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66954] = 2, - ACTIONS(4401), 1, + [67056] = 2, + ACTIONS(5417), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66962] = 2, - ACTIONS(5259), 1, + [67064] = 2, + ACTIONS(5281), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66970] = 2, - ACTIONS(5379), 1, - anon_sym_RBRACK, + [67072] = 2, + ACTIONS(3223), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66978] = 2, - ACTIONS(5381), 1, + [67080] = 2, + ACTIONS(5419), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66986] = 2, - ACTIONS(5383), 1, + [67088] = 2, + ACTIONS(4792), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66994] = 2, - ACTIONS(4021), 1, - anon_sym_SEMI, + [67096] = 2, + ACTIONS(4666), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67002] = 2, - ACTIONS(4205), 1, + [67104] = 2, + ACTIONS(5421), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67010] = 2, - ACTIONS(5385), 1, - sym_identifier, + [67112] = 2, + ACTIONS(4629), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67018] = 2, - ACTIONS(5387), 1, - anon_sym_EQ_GT, + [67120] = 2, + ACTIONS(5423), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67026] = 2, - ACTIONS(2453), 1, - anon_sym_PLUS, + [67128] = 2, + ACTIONS(4769), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67034] = 2, - ACTIONS(5389), 1, - anon_sym_RPAREN, + [67136] = 2, + ACTIONS(4544), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67042] = 2, - ACTIONS(5391), 1, - anon_sym_fn, + [67144] = 2, + ACTIONS(5425), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67050] = 2, - ACTIONS(5393), 1, - sym_identifier, + [67152] = 2, + ACTIONS(4037), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67058] = 2, - ACTIONS(5395), 1, + [67160] = 2, + ACTIONS(5427), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67066] = 2, - ACTIONS(5397), 1, + [67168] = 2, + ACTIONS(5429), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67074] = 2, - ACTIONS(5399), 1, - anon_sym_RBRACE, + [67176] = 2, + ACTIONS(5431), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67082] = 2, - ACTIONS(4011), 1, - anon_sym_SEMI, + [67184] = 2, + ACTIONS(5433), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67090] = 2, - ACTIONS(5401), 1, - anon_sym_EQ, + [67192] = 2, + ACTIONS(5435), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67098] = 2, - ACTIONS(5403), 1, - anon_sym_RBRACE, + [67200] = 2, + ACTIONS(4239), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67106] = 2, - ACTIONS(3219), 1, - anon_sym_RPAREN, + [67208] = 2, + ACTIONS(5437), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67114] = 2, - ACTIONS(5405), 1, + [67216] = 2, + ACTIONS(5439), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67122] = 2, - ACTIONS(554), 1, - anon_sym_RBRACK, + [67224] = 2, + ACTIONS(4809), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67130] = 2, - ACTIONS(2397), 1, + [67232] = 2, + ACTIONS(5441), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67138] = 2, - ACTIONS(5407), 1, - anon_sym_LPAREN, + [67240] = 2, + ACTIONS(5443), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67146] = 2, - ACTIONS(5239), 1, - anon_sym_SEMI, + [67248] = 2, + ACTIONS(5445), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67154] = 2, - ACTIONS(3526), 1, + [67256] = 2, + ACTIONS(3546), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67162] = 2, - ACTIONS(5409), 1, - sym_identifier, + [67264] = 2, + ACTIONS(5447), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67170] = 2, - ACTIONS(5411), 1, - anon_sym_RBRACK, + [67272] = 2, + ACTIONS(4584), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67178] = 2, - ACTIONS(5413), 1, - anon_sym_SEMI, + [67280] = 2, + ACTIONS(5449), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67186] = 2, - ACTIONS(5415), 1, - anon_sym_LT, + [67288] = 2, + ACTIONS(5451), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67194] = 2, - ACTIONS(5417), 1, + [67296] = 2, + ACTIONS(5453), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67202] = 2, - ACTIONS(5227), 1, - anon_sym_SEMI, + [67304] = 2, + ACTIONS(5455), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67210] = 2, - ACTIONS(5419), 1, + [67312] = 2, + ACTIONS(5457), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67218] = 2, - ACTIONS(5421), 1, - sym_identifier, + [67320] = 2, + ACTIONS(5459), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67226] = 2, - ACTIONS(4584), 1, + [67328] = 2, + ACTIONS(5461), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67234] = 2, - ACTIONS(5423), 1, + [67336] = 2, + ACTIONS(5463), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67242] = 2, - ACTIONS(5425), 1, + [67344] = 2, + ACTIONS(5465), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67250] = 2, - ACTIONS(5427), 1, - sym_self, + [67352] = 2, + ACTIONS(4832), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67258] = 2, - ACTIONS(5429), 1, - anon_sym_COLON_COLON, + [67360] = 2, + ACTIONS(4027), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67266] = 2, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, + [67368] = 2, + ACTIONS(5467), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67274] = 2, - ACTIONS(4127), 1, - anon_sym_COLON_COLON, + [67376] = 2, + ACTIONS(5469), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67282] = 2, - ACTIONS(5431), 1, + [67384] = 2, + ACTIONS(5471), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67290] = 2, - ACTIONS(4629), 1, - anon_sym_RBRACE, + [67392] = 2, + ACTIONS(5473), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67298] = 2, - ACTIONS(5433), 1, - sym_identifier, + [67400] = 2, + ACTIONS(4576), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67306] = 2, - ACTIONS(5435), 1, - anon_sym_COLON_COLON, + [67408] = 2, + ACTIONS(5475), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67314] = 2, - ACTIONS(4474), 1, - anon_sym_RPAREN, + [67416] = 2, + ACTIONS(4580), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67322] = 2, - ACTIONS(5437), 1, + [67424] = 2, + ACTIONS(5477), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67330] = 2, - ACTIONS(5439), 1, - sym_identifier, + [67432] = 2, + ACTIONS(5479), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67338] = 2, - ACTIONS(5441), 1, - anon_sym_EQ_GT, + [67440] = 2, + ACTIONS(5481), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67346] = 2, - ACTIONS(5443), 1, - anon_sym_EQ_GT, + [67448] = 2, + ACTIONS(368), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67354] = 2, - ACTIONS(5445), 1, - anon_sym_RBRACE, + [67456] = 2, + ACTIONS(5483), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67362] = 2, - ACTIONS(5447), 1, - anon_sym_COLON, + [67464] = 2, + ACTIONS(5485), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67370] = 2, - ACTIONS(5449), 1, - sym_identifier, + [67472] = 2, + ACTIONS(4340), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67378] = 2, - ACTIONS(5451), 1, - anon_sym_SEMI, + [67480] = 2, + ACTIONS(2395), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67386] = 2, - ACTIONS(5453), 1, - anon_sym_RBRACK, + [67488] = 2, + ACTIONS(3473), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67394] = 2, - ACTIONS(5455), 1, + [67496] = 2, + ACTIONS(5487), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67402] = 2, - ACTIONS(4454), 1, - anon_sym_RBRACK, + [67504] = 2, + ACTIONS(5489), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67410] = 2, - ACTIONS(5457), 1, - sym_identifier, + [67512] = 2, + ACTIONS(5491), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67418] = 2, - ACTIONS(5459), 1, + [67520] = 2, + ACTIONS(5493), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67426] = 2, - ACTIONS(5461), 1, + [67528] = 2, + ACTIONS(5495), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67434] = 2, - ACTIONS(5463), 1, - sym_identifier, + [67536] = 2, + ACTIONS(5497), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67442] = 2, - ACTIONS(4964), 1, - sym_identifier, + [67544] = 2, + ACTIONS(5499), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67450] = 2, - ACTIONS(5465), 1, + [67552] = 2, + ACTIONS(5501), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67458] = 2, - ACTIONS(5467), 1, - sym_identifier, + [67560] = 2, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67466] = 2, - ACTIONS(374), 1, - anon_sym_RBRACK, + [67568] = 2, + ACTIONS(2834), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67474] = 2, - ACTIONS(5469), 1, - anon_sym_LBRACK, + [67576] = 2, + ACTIONS(5503), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67482] = 2, - ACTIONS(5471), 1, - sym_identifier, + [67584] = 2, + ACTIONS(4929), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67490] = 2, - ACTIONS(5473), 1, - sym_identifier, + [67592] = 2, + ACTIONS(4013), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67498] = 2, - ACTIONS(4610), 1, - anon_sym_RPAREN, + [67600] = 2, + ACTIONS(5505), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67506] = 2, - ACTIONS(5475), 1, + [67608] = 2, + ACTIONS(5507), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67514] = 2, - ACTIONS(2467), 1, - anon_sym_PLUS, + [67616] = 2, + ACTIONS(5509), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67522] = 2, - ACTIONS(5477), 1, - anon_sym_SEMI, + [67624] = 2, + ACTIONS(5511), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67530] = 2, - ACTIONS(5479), 1, - anon_sym_COLON, + [67632] = 2, + ACTIONS(5513), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67538] = 2, - ACTIONS(5481), 1, + [67640] = 2, + ACTIONS(5515), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67546] = 2, - ACTIONS(5483), 1, - anon_sym_SEMI, + [67648] = 2, + ACTIONS(5517), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67554] = 2, - ACTIONS(5485), 1, + [67656] = 2, + ACTIONS(5519), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67562] = 2, - ACTIONS(4039), 1, + [67664] = 2, + ACTIONS(5291), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67570] = 2, - ACTIONS(5487), 1, - anon_sym_COLON, + [67672] = 2, + ACTIONS(5521), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67578] = 2, - ACTIONS(5489), 1, - anon_sym_SEMI, + [67680] = 2, + ACTIONS(5523), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67586] = 2, - ACTIONS(2734), 1, + [67688] = 2, + ACTIONS(2676), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67594] = 2, - ACTIONS(5491), 1, + [67696] = 2, + ACTIONS(5525), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67602] = 2, - ACTIONS(3453), 1, - anon_sym_fn, + [67704] = 2, + ACTIONS(5527), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67610] = 2, - ACTIONS(4772), 1, - sym_identifier, + [67712] = 2, + ACTIONS(4007), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67618] = 2, - ACTIONS(5493), 1, - ts_builtin_sym_end, + [67720] = 2, + ACTIONS(5529), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67626] = 2, - ACTIONS(2774), 1, - anon_sym_COLON_COLON, + [67728] = 2, + ACTIONS(5531), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67634] = 2, - ACTIONS(4766), 1, - anon_sym_RBRACE, + [67736] = 2, + ACTIONS(5533), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67642] = 2, - ACTIONS(4608), 1, - sym_identifier, + [67744] = 2, + ACTIONS(5535), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67650] = 2, - ACTIONS(5495), 1, + [67752] = 2, + ACTIONS(4160), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67658] = 2, - ACTIONS(4776), 1, + [67760] = 2, + ACTIONS(5537), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67666] = 2, - ACTIONS(5497), 1, + [67768] = 2, + ACTIONS(5539), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67674] = 2, - ACTIONS(5499), 1, - sym_identifier, + [67776] = 2, + ACTIONS(5541), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67682] = 2, - ACTIONS(5501), 1, + [67784] = 2, + ACTIONS(5543), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67690] = 2, - ACTIONS(5503), 1, - sym_identifier, + [67792] = 2, + ACTIONS(4747), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67698] = 2, - ACTIONS(5505), 1, - sym_identifier, + [67800] = 2, + ACTIONS(4967), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67706] = 2, - ACTIONS(2413), 1, - anon_sym_EQ_GT, + [67808] = 2, + ACTIONS(2465), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67714] = 2, - ACTIONS(4067), 1, + [67816] = 2, + ACTIONS(4114), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67722] = 2, - ACTIONS(5507), 1, + [67824] = 2, + ACTIONS(5545), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67730] = 2, - ACTIONS(5509), 1, - anon_sym_SEMI, + [67832] = 2, + ACTIONS(5547), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67738] = 2, - ACTIONS(4167), 1, + [67840] = 2, + ACTIONS(4261), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67746] = 2, - ACTIONS(5511), 1, + [67848] = 2, + ACTIONS(5549), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67754] = 2, - ACTIONS(5513), 1, + [67856] = 2, + ACTIONS(5551), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67762] = 2, - ACTIONS(4217), 1, + [67864] = 2, + ACTIONS(4229), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67770] = 2, - ACTIONS(5515), 1, + [67872] = 2, + ACTIONS(5553), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67778] = 2, - ACTIONS(5133), 1, - anon_sym_SEMI, + [67880] = 2, + ACTIONS(4324), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67786] = 2, - ACTIONS(4816), 1, + [67888] = 2, + ACTIONS(5555), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67794] = 2, - ACTIONS(5517), 1, - anon_sym_SEMI, + [67896] = 2, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67802] = 2, - ACTIONS(5519), 1, - anon_sym_SEMI, + [67904] = 2, + ACTIONS(4617), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67810] = 2, - ACTIONS(5521), 1, + [67912] = 2, + ACTIONS(5557), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67818] = 2, - ACTIONS(5523), 1, + [67920] = 2, + ACTIONS(5559), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67826] = 2, - ACTIONS(5525), 1, + [67928] = 2, + ACTIONS(5561), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67834] = 2, - ACTIONS(5527), 1, - sym_identifier, + [67936] = 2, + ACTIONS(2782), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67842] = 2, - ACTIONS(5529), 1, - anon_sym_SEMI, + [67944] = 2, + ACTIONS(5013), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67850] = 2, - ACTIONS(5531), 1, + [67952] = 2, + ACTIONS(3203), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67858] = 2, - ACTIONS(5533), 1, - anon_sym_SEMI, + [67960] = 2, + ACTIONS(5563), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67866] = 2, - ACTIONS(5535), 1, + [67968] = 2, + ACTIONS(5565), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67874] = 2, - ACTIONS(5537), 1, + [67976] = 2, + ACTIONS(5567), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67882] = 2, - ACTIONS(5539), 1, + [67984] = 2, + ACTIONS(5569), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67890] = 2, - ACTIONS(5541), 1, - anon_sym_RPAREN, + [67992] = 2, + ACTIONS(5571), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67898] = 2, - ACTIONS(5543), 1, - anon_sym_SEMI, + [68000] = 2, + ACTIONS(5573), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67906] = 2, - ACTIONS(5545), 1, - anon_sym_COLON, + [68008] = 2, + ACTIONS(5575), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67914] = 2, - ACTIONS(5547), 1, - anon_sym_RBRACK, + [68016] = 2, + ACTIONS(5055), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67922] = 2, - ACTIONS(5549), 1, + [68024] = 2, + ACTIONS(5577), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67930] = 2, - ACTIONS(3973), 1, - anon_sym_SEMI, + [68032] = 2, + ACTIONS(2714), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67938] = 2, - ACTIONS(5551), 1, + [68040] = 2, + ACTIONS(5579), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67946] = 2, - ACTIONS(5553), 1, - anon_sym_RPAREN, + [68048] = 2, + ACTIONS(5581), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67954] = 2, - ACTIONS(4019), 1, - anon_sym_SEMI, + [68056] = 2, + ACTIONS(5583), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67962] = 2, - ACTIONS(5555), 1, - anon_sym_SEMI, + [68064] = 2, + ACTIONS(5585), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67970] = 2, - ACTIONS(5557), 1, - anon_sym_COLON, + [68072] = 2, + ACTIONS(5587), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67978] = 2, - ACTIONS(5559), 1, + [68080] = 2, + ACTIONS(5589), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67986] = 2, - ACTIONS(5561), 1, + [68088] = 2, + ACTIONS(5591), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67994] = 2, - ACTIONS(5563), 1, + [68096] = 2, + ACTIONS(5593), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68002] = 2, - ACTIONS(5565), 1, + [68104] = 2, + ACTIONS(5595), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68010] = 2, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, + [68112] = 2, + ACTIONS(5597), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68018] = 2, - ACTIONS(5567), 1, - sym_identifier, + [68120] = 2, + ACTIONS(4336), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68026] = 2, - ACTIONS(5569), 1, - anon_sym_SEMI, + [68128] = 2, + ACTIONS(5599), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68034] = 2, - ACTIONS(5571), 1, + [68136] = 2, + ACTIONS(5601), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68042] = 2, - ACTIONS(4944), 1, - anon_sym_RBRACE, + [68144] = 2, + ACTIONS(5603), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68050] = 2, - ACTIONS(5573), 1, + [68152] = 2, + ACTIONS(5605), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68058] = 2, - ACTIONS(5575), 1, - anon_sym_RPAREN, + [68160] = 2, + ACTIONS(5607), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68066] = 2, - ACTIONS(5577), 1, + [68168] = 2, + ACTIONS(5609), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68074] = 2, - ACTIONS(5579), 1, + [68176] = 2, + ACTIONS(5611), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68082] = 2, - ACTIONS(4308), 1, - anon_sym_RPAREN, + [68184] = 2, + ACTIONS(5613), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68090] = 2, - ACTIONS(5581), 1, - anon_sym_fn, + [68192] = 2, + ACTIONS(5615), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68098] = 2, - ACTIONS(5583), 1, - anon_sym_SEMI, + [68200] = 2, + ACTIONS(4674), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68106] = 2, - ACTIONS(5585), 1, - anon_sym_RBRACE, + [68208] = 2, + ACTIONS(5617), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68114] = 2, - ACTIONS(5587), 1, - anon_sym_SEMI, + [68216] = 2, + ACTIONS(5619), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68122] = 2, - ACTIONS(5589), 1, - sym_identifier, + [68224] = 2, + ACTIONS(5621), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68130] = 2, - ACTIONS(5591), 1, - anon_sym_LPAREN, + [68232] = 2, + ACTIONS(5623), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68138] = 2, - ACTIONS(3477), 1, + [68240] = 2, + ACTIONS(3497), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68146] = 2, - ACTIONS(5593), 1, - sym_identifier, + [68248] = 2, + ACTIONS(5109), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68154] = 2, - ACTIONS(5251), 1, + [68256] = 2, + ACTIONS(5625), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68162] = 2, - ACTIONS(5595), 1, + [68264] = 2, + ACTIONS(5627), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68170] = 2, - ACTIONS(5038), 1, - anon_sym_RBRACE, + [68272] = 2, + ACTIONS(5629), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68178] = 2, - ACTIONS(5597), 1, - anon_sym_SEMI, + [68280] = 2, + ACTIONS(5631), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68186] = 2, - ACTIONS(5599), 1, - anon_sym_SEMI, + [68288] = 2, + ACTIONS(5633), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68194] = 2, - ACTIONS(5601), 1, + [68296] = 2, + ACTIONS(5635), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68202] = 2, - ACTIONS(5603), 1, + [68304] = 2, + ACTIONS(5637), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68210] = 2, - ACTIONS(5605), 1, + [68312] = 2, + ACTIONS(5639), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68218] = 2, - ACTIONS(5607), 1, - anon_sym_RBRACE, + [68320] = 2, + ACTIONS(5159), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68226] = 2, - ACTIONS(5609), 1, - sym_identifier, + [68328] = 2, + ACTIONS(5153), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68234] = 2, - ACTIONS(5611), 1, + [68336] = 2, + ACTIONS(5641), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68242] = 2, - ACTIONS(5137), 1, - anon_sym_SEMI, + [68344] = 2, + ACTIONS(5643), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68250] = 2, - ACTIONS(5135), 1, - anon_sym_SEMI, + [68352] = 2, + ACTIONS(5645), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68258] = 2, - ACTIONS(5613), 1, - sym_identifier, + [68360] = 2, + ACTIONS(5647), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68266] = 2, - ACTIONS(5615), 1, - anon_sym_RBRACK, + [68368] = 2, + ACTIONS(5649), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68274] = 2, - ACTIONS(5617), 1, - anon_sym_SEMI, + [68376] = 2, + ACTIONS(5651), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68282] = 2, - ACTIONS(5619), 1, - sym_identifier, + [68384] = 2, + 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(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(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)] = 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)] = 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)] = 56128, + [SMALL_STATE(1630)] = 56142, + [SMALL_STATE(1631)] = 56156, + [SMALL_STATE(1632)] = 56182, + [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)] = 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)] = 62038, + [SMALL_STATE(1977)] = 62052, + [SMALL_STATE(1978)] = 62064, + [SMALL_STATE(1979)] = 62074, + [SMALL_STATE(1980)] = 62088, + [SMALL_STATE(1981)] = 62102, + [SMALL_STATE(1982)] = 62116, + [SMALL_STATE(1983)] = 62130, + [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)] = 62286, + [SMALL_STATE(1996)] = 62300, + [SMALL_STATE(1997)] = 62314, + [SMALL_STATE(1998)] = 62328, + [SMALL_STATE(1999)] = 62342, + [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[] = { @@ -128612,2717 +131127,2734 @@ 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), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [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(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), + [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(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), - [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), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [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(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), - [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), + [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(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), + [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(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(10), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [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(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(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(2455), + [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(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), + [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(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), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [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(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(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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), + [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_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), - [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), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [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), + [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(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(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), + [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(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), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [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(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(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), + [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(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(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(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(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(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), - [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), - [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), - [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), + [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(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(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 = 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, 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_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}}, 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