From a8445dcd61ea8cf79437054287e10e0d88bbfe8c Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 3 Nov 2022 10:09:38 -0700 Subject: [PATCH] Remove special cases for built-in attributes Parse all attribute using the general attribute syntax --- corpus/declarations.txt | 94 +- corpus/expressions.txt | 2 +- grammar.js | 89 +- src/grammar.json | 609 +- src/node-types.json | 89 +- src/parser.c | 144690 ++++++++++++++++++------------------- 6 files changed, 71075 insertions(+), 74498 deletions(-) diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 7f19d94d..11d0a94c 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 - (attr_item + (attribute (identifier))) (parameter pattern: (identifier) type: (primitive_type)) (attribute_item - (attr_item + (attribute (identifier))) (parameter pattern: (identifier) @@ -578,7 +578,7 @@ struct Inches(i32); (field_identifier) (primitive_type)) (attribute_item - (attr_item + (attribute (identifier))) (field_declaration (field_identifier) @@ -737,10 +737,10 @@ pub enum Node { (field_identifier) (primitive_type)))) (attribute_item - (attr_item + (attribute (identifier))) (attribute_item - (attr_item + (attribute (identifier))) (enum_variant (identifier) @@ -1030,50 +1030,44 @@ mod macos_only {} (source_file (attribute_item - (meta_item + (attribute (identifier))) (function_item name: (identifier) parameters: (parameters) body: (block)) (attribute_item - (meta_item + (attribute (identifier) - arguments: (meta_arguments - (meta_item - (identifier))))) + arguments: (token_tree + (identifier)))) (struct_item name: (type_identifier)) (attribute_item - (meta_item + (attribute (identifier) - arguments: (meta_arguments - (meta_item - (identifier)) - (meta_item - (identifier))))) + arguments: (token_tree + (identifier) + (identifier)))) (struct_item name: (type_identifier)) (attribute_item - (meta_item + (attribute (identifier) - arguments: (meta_arguments - (meta_item - (identifier) - value: (string_literal))))) + arguments: (token_tree + (identifier) + (string_literal)))) (mod_item name: (identifier) body: (declaration_list)) (inner_attribute_item - (meta_item + (attribute (identifier) - arguments: (meta_arguments - (meta_item - (scoped_identifier - path: (identifier) - name: (identifier)))))) + arguments: (token_tree + (identifier) + (identifier)))) (attribute_item - (attr_item + (attribute (scoped_identifier path: (identifier) name: (identifier)) @@ -1094,12 +1088,11 @@ mod macos_only { name: (identifier) body: (declaration_list (inner_attribute_item - (meta_item + (attribute (identifier) - arguments: (meta_arguments - (meta_item - (identifier) - value: (string_literal)))))))) + arguments: (token_tree + (identifier) + (string_literal))))))) ================================================================================ Key-Value Attribute Expressions @@ -1115,7 +1108,7 @@ fn baz() {} (source_file (attribute_item - (meta_item + (attribute (identifier) (macro_invocation (identifier) @@ -1126,7 +1119,7 @@ fn baz() {} (parameters) (block)) (attribute_item - (attr_item + (attribute (identifier) (scoped_identifier (identifier) @@ -1152,7 +1145,7 @@ foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); function: (identifier) arguments: (arguments (attribute_item - (attr_item + (attribute (identifier) arguments: (token_tree (identifier) @@ -1164,7 +1157,7 @@ foo(#[bar(some tokens are special in other contexts: $/';()*()+.)] x); function: (identifier) arguments: (arguments (attribute_item - (attr_item + (attribute (identifier) arguments: (token_tree (identifier) @@ -1203,19 +1196,17 @@ pub enum Error { (identifier) (identifier))) (attribute_item - (meta_item + (attribute (identifier) - (meta_arguments - (meta_item - (identifier)) - (meta_item - (identifier))))) + (token_tree + (identifier) + (identifier)))) (enum_item (visibility_modifier) (type_identifier) (enum_variant_list (attribute_item - (attr_item + (attribute (identifier) (token_tree (string_literal) @@ -1227,7 +1218,7 @@ pub enum Error { (ordered_field_declaration_list (type_identifier))) (attribute_item - (attr_item + (attribute (identifier) (token_tree (string_literal) @@ -1270,18 +1261,17 @@ fn foo() { arguments: (arguments (identifier) (attribute_item - (meta_item + (attribute (identifier) - arguments: (meta_arguments - (meta_item - (identifier) - value: (string_literal))))) + arguments: (token_tree + (identifier) + (string_literal)))) (identifier)))) (let_declaration pattern: (identifier) value: (array_expression (attribute_item - (attr_item + (attribute (identifier))) (integer_literal) (integer_literal) @@ -1290,7 +1280,7 @@ fn foo() { pattern: (identifier) value: (tuple_expression (attribute_item - (attr_item + (attribute (identifier))) (integer_literal) (integer_literal) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 7a2fc203..331488f3 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -612,7 +612,7 @@ let msg = match x { value: (integer_literal)) (match_arm (attribute_item - (attr_item + (attribute (identifier))) pattern: (match_pattern (integer_literal)) diff --git a/grammar.js b/grammar.js index cda1f6b8..9480f327 100644 --- a/grammar.js +++ b/grammar.js @@ -36,54 +36,6 @@ 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', @@ -259,7 +211,7 @@ module.exports = grammar({ attribute_item: $ => seq( '#', '[', - $._attr, + $.attribute, ']' ), @@ -267,16 +219,11 @@ module.exports = grammar({ '#', '!', '[', - $._attr, + $.attribute, ']' ), - _attr: $ => choice( - alias($.built_in_attr, $.meta_item), - alias($.custom_attr, $.attr_item), - ), - - custom_attr: $ => seq( + attribute: $ => seq( $._path, optional(choice( seq('=', field('value', $._expression)), @@ -284,36 +231,6 @@ module.exports = grammar({ )) ), - 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', $._expression)), - field('arguments', $.meta_arguments) - )) - ), - - meta_arguments: $ => seq( - '(', - sepBy(',', choice( - $.meta_item, - $._literal - )), - optional(','), - ')' - ), - mod_item: $ => seq( optional($.visibility_modifier), 'mod', diff --git a/src/grammar.json b/src/grammar.json index b05d2430..c49eb677 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -897,7 +897,7 @@ }, { "type": "SYMBOL", - "name": "_attr" + "name": "attribute" }, { "type": "STRING", @@ -922,7 +922,7 @@ }, { "type": "SYMBOL", - "name": "_attr" + "name": "attribute" }, { "type": "STRING", @@ -930,30 +930,7 @@ } ] }, - "_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": { + "attribute": { "type": "SEQ", "members": [ { @@ -1005,586 +982,6 @@ } ] }, - "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": [ - { - "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": "SYMBOL", - "name": "meta_arguments" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "meta_arguments": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "meta_item" - }, - { - "type": "SYMBOL", - "name": "_literal" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "meta_item" - }, - { - "type": "SYMBOL", - "name": "_literal" - } - ] - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, "mod_item": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index c6930213..8236723a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -644,7 +644,7 @@ } }, { - "type": "attr_item", + "type": "attribute", "named": true, "fields": { "arguments": { @@ -708,11 +708,7 @@ "required": true, "types": [ { - "type": "attr_item", - "named": true - }, - { - "type": "meta_item", + "type": "attribute", "named": true } ] @@ -2444,11 +2440,7 @@ "required": true, "types": [ { - "type": "attr_item", - "named": true - }, - { - "type": "meta_item", + "type": "attribute", "named": true } ] @@ -2751,81 +2743,6 @@ ] } }, - { - "type": "meta_arguments", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_literal", - "named": true - }, - { - "type": "meta_item", - "named": true - } - ] - } - }, - { - "type": "meta_item", - "named": true, - "fields": { - "arguments": { - "multiple": false, - "required": false, - "types": [ - { - "type": "meta_arguments", - "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": "mod_item", "named": true, diff --git a/src/parser.c b/src/parser.c index 4727f404..267f8555 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2620 -#define LARGE_STATE_COUNT 667 -#define SYMBOL_COUNT 368 +#define STATE_COUNT 2592 +#define LARGE_STATE_COUNT 657 +#define SYMBOL_COUNT 318 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 183 +#define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -95,298 +95,248 @@ enum { anon_sym_POUND = 76, anon_sym_BANG = 77, anon_sym_EQ = 78, - 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_else = 129, - anon_sym_COLON_COLON = 130, - anon_sym__ = 131, - anon_sym_AMP = 132, - anon_sym_DOT_DOT_DOT = 133, - anon_sym_in = 134, - anon_sym_LT2 = 135, - anon_sym_dyn = 136, - sym_mutable_specifier = 137, - anon_sym_DOT_DOT = 138, - anon_sym_DOT_DOT_EQ = 139, - anon_sym_DASH = 140, - anon_sym_AMP_AMP = 141, - anon_sym_PIPE_PIPE = 142, - anon_sym_PIPE = 143, - anon_sym_CARET = 144, - anon_sym_EQ_EQ = 145, - anon_sym_BANG_EQ = 146, - anon_sym_LT_EQ = 147, - anon_sym_GT_EQ = 148, - anon_sym_LT_LT = 149, - anon_sym_GT_GT = 150, - anon_sym_SLASH = 151, - anon_sym_PERCENT = 152, - anon_sym_PLUS_EQ = 153, - anon_sym_DASH_EQ = 154, - anon_sym_STAR_EQ = 155, - anon_sym_SLASH_EQ = 156, - anon_sym_PERCENT_EQ = 157, - anon_sym_AMP_EQ = 158, - anon_sym_PIPE_EQ = 159, - anon_sym_CARET_EQ = 160, - anon_sym_LT_LT_EQ = 161, - anon_sym_GT_GT_EQ = 162, - anon_sym_yield = 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, + 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_else = 85, + anon_sym_COLON_COLON = 86, + anon_sym__ = 87, + anon_sym_AMP = 88, + anon_sym_DOT_DOT_DOT = 89, + anon_sym_in = 90, + anon_sym_LT2 = 91, + anon_sym_dyn = 92, + sym_mutable_specifier = 93, + anon_sym_DOT_DOT = 94, + anon_sym_DOT_DOT_EQ = 95, + anon_sym_DASH = 96, + anon_sym_AMP_AMP = 97, + anon_sym_PIPE_PIPE = 98, + anon_sym_PIPE = 99, + anon_sym_CARET = 100, + anon_sym_EQ_EQ = 101, + anon_sym_BANG_EQ = 102, + anon_sym_LT_EQ = 103, + anon_sym_GT_EQ = 104, + anon_sym_LT_LT = 105, + anon_sym_GT_GT = 106, + anon_sym_SLASH = 107, + anon_sym_PERCENT = 108, + anon_sym_PLUS_EQ = 109, + anon_sym_DASH_EQ = 110, + anon_sym_STAR_EQ = 111, + anon_sym_SLASH_EQ = 112, + anon_sym_PERCENT_EQ = 113, + anon_sym_AMP_EQ = 114, + anon_sym_PIPE_EQ = 115, + anon_sym_CARET_EQ = 116, + anon_sym_LT_LT_EQ = 117, + anon_sym_GT_GT_EQ = 118, + anon_sym_yield = 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_attribute = 154, + sym_mod_item = 155, + sym_foreign_mod_item = 156, + sym_declaration_list = 157, + sym_struct_item = 158, + sym_union_item = 159, + sym_enum_item = 160, + sym_enum_variant_list = 161, + sym_enum_variant = 162, + sym_field_declaration_list = 163, + sym_field_declaration = 164, + sym_ordered_field_declaration_list = 165, + sym_extern_crate_declaration = 166, + sym_const_item = 167, + sym_static_item = 168, + sym_type_item = 169, + sym_function_item = 170, + sym_function_signature_item = 171, + sym_function_modifiers = 172, + sym_where_clause = 173, + sym_where_predicate = 174, + sym_impl_item = 175, + sym_trait_item = 176, + sym_associated_type = 177, + sym_trait_bounds = 178, + sym_higher_ranked_trait_bound = 179, + sym_removed_trait_bound = 180, + sym_type_parameters = 181, + sym_const_parameter = 182, + sym_constrained_type_parameter = 183, + sym_optional_type_parameter = 184, + sym_let_declaration = 185, + sym_use_declaration = 186, + sym__use_clause = 187, + sym_scoped_use_list = 188, + sym_use_list = 189, + sym_use_as_clause = 190, + sym_use_wildcard = 191, + sym_parameters = 192, + sym_self_parameter = 193, + sym_variadic_parameter = 194, + sym_parameter = 195, + sym_extern_modifier = 196, + sym_visibility_modifier = 197, + sym__type = 198, + sym_bracketed_type = 199, + sym_qualified_type = 200, + sym_lifetime = 201, + sym_array_type = 202, + sym_for_lifetimes = 203, + sym_function_type = 204, + sym_tuple_type = 205, + sym_unit_type = 206, + sym_generic_function = 207, + sym_generic_type = 208, + sym_generic_type_with_turbofish = 209, + sym_bounded_type = 210, + sym_type_arguments = 211, + sym_type_binding = 212, + sym_reference_type = 213, + sym_pointer_type = 214, + sym_empty_type = 215, + sym_abstract_type = 216, + sym_dynamic_type = 217, + sym__expression_except_range = 218, + sym__expression = 219, + sym_macro_invocation = 220, + sym_delim_token_tree = 221, + sym__delim_tokens = 222, + sym__non_delim_token = 223, + sym_scoped_identifier = 224, + sym_scoped_type_identifier_in_expression_position = 225, + sym_scoped_type_identifier = 226, + sym_range_expression = 227, + sym_unary_expression = 228, + sym_try_expression = 229, + sym_reference_expression = 230, + sym_binary_expression = 231, + sym_assignment_expression = 232, + sym_compound_assignment_expr = 233, + sym_type_cast_expression = 234, + sym_return_expression = 235, + sym_yield_expression = 236, + sym_call_expression = 237, + sym_arguments = 238, + sym_array_expression = 239, + sym_parenthesized_expression = 240, + sym_tuple_expression = 241, + sym_unit_expression = 242, + sym_struct_expression = 243, + sym_field_initializer_list = 244, + sym_shorthand_field_initializer = 245, + sym_field_initializer = 246, + sym_base_field_initializer = 247, + sym_if_expression = 248, + sym_if_let_expression = 249, + sym_else_clause = 250, + sym_match_expression = 251, + sym_match_block = 252, + sym_match_arm = 253, + sym_last_match_arm = 254, + sym_match_pattern = 255, + sym_while_expression = 256, + sym_while_let_expression = 257, + sym_loop_expression = 258, + sym_for_expression = 259, + sym_const_block = 260, + sym_closure_expression = 261, + sym_closure_parameters = 262, + sym_loop_label = 263, + sym_break_expression = 264, + sym_continue_expression = 265, + sym_index_expression = 266, + sym_await_expression = 267, + sym_field_expression = 268, + sym_unsafe_block = 269, + sym_async_block = 270, + sym_block = 271, + sym__pattern = 272, + sym_tuple_pattern = 273, + sym_slice_pattern = 274, + sym_tuple_struct_pattern = 275, + sym_struct_pattern = 276, + sym_field_pattern = 277, + sym_remaining_field_pattern = 278, + sym_mut_pattern = 279, + sym_range_pattern = 280, + sym_ref_pattern = 281, + sym_captured_pattern = 282, + sym_reference_pattern = 283, + sym_or_pattern = 284, + sym__literal = 285, + sym__literal_pattern = 286, + sym_negative_literal = 287, + sym_string_literal = 288, + sym_boolean_literal = 289, + aux_sym_source_file_repeat1 = 290, + aux_sym_macro_definition_repeat1 = 291, + aux_sym_token_tree_pattern_repeat1 = 292, + aux_sym_token_tree_repeat1 = 293, + aux_sym_declaration_list_repeat1 = 294, + aux_sym_enum_variant_list_repeat1 = 295, + aux_sym_enum_variant_list_repeat2 = 296, + aux_sym_field_declaration_list_repeat1 = 297, + aux_sym_ordered_field_declaration_list_repeat1 = 298, + aux_sym_function_modifiers_repeat1 = 299, + aux_sym_where_clause_repeat1 = 300, + aux_sym_trait_bounds_repeat1 = 301, + aux_sym_type_parameters_repeat1 = 302, + aux_sym_use_list_repeat1 = 303, + aux_sym_parameters_repeat1 = 304, + aux_sym_for_lifetimes_repeat1 = 305, + aux_sym_tuple_type_repeat1 = 306, + aux_sym_type_arguments_repeat1 = 307, + aux_sym_delim_token_tree_repeat1 = 308, + aux_sym_arguments_repeat1 = 309, + aux_sym_array_expression_repeat1 = 310, + aux_sym_tuple_expression_repeat1 = 311, + aux_sym_field_initializer_list_repeat1 = 312, + aux_sym_match_block_repeat1 = 313, + aux_sym_closure_parameters_repeat1 = 314, + aux_sym_tuple_pattern_repeat1 = 315, + aux_sym_struct_pattern_repeat1 = 316, + aux_sym_string_literal_repeat1 = 317, + alias_sym_field_identifier = 318, + alias_sym_shorthand_field_identifier = 319, + alias_sym_type_identifier = 320, }; static const char * const ts_symbol_names[] = { @@ -469,50 +419,6 @@ 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", @@ -588,12 +494,7 @@ 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_attribute] = "attribute", [sym_mod_item] = "mod_item", [sym_foreign_mod_item] = "foreign_mod_item", [sym_declaration_list] = "declaration_list", @@ -733,7 +634,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_macro_definition_repeat1] = "macro_definition_repeat1", [aux_sym_token_tree_pattern_repeat1] = "token_tree_pattern_repeat1", [aux_sym_token_tree_repeat1] = "token_tree_repeat1", - [aux_sym_meta_arguments_repeat1] = "meta_arguments_repeat1", [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", [aux_sym_enum_variant_list_repeat1] = "enum_variant_list_repeat1", [aux_sym_enum_variant_list_repeat2] = "enum_variant_list_repeat2", @@ -843,50 +743,6 @@ 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, @@ -962,12 +818,7 @@ 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_attribute] = sym_attribute, [sym_mod_item] = sym_mod_item, [sym_foreign_mod_item] = sym_foreign_mod_item, [sym_declaration_list] = sym_declaration_list, @@ -1107,7 +958,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_macro_definition_repeat1] = aux_sym_macro_definition_repeat1, [aux_sym_token_tree_pattern_repeat1] = aux_sym_token_tree_pattern_repeat1, [aux_sym_token_tree_repeat1] = aux_sym_token_tree_repeat1, - [aux_sym_meta_arguments_repeat1] = aux_sym_meta_arguments_repeat1, [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, [aux_sym_enum_variant_list_repeat1] = aux_sym_enum_variant_list_repeat1, [aux_sym_enum_variant_list_repeat2] = aux_sym_enum_variant_list_repeat2, @@ -1454,182 +1304,6 @@ 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, @@ -1930,27 +1604,7 @@ 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, - }, - [sym_meta_arguments] = { + [sym_attribute] = { .visible = true, .named = true, }, @@ -2515,10 +2169,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_meta_arguments_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_declaration_list_repeat1] = { .visible = false, .named = false, @@ -3906,35 +3556,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 4, - [5] = 2, + [4] = 2, + [5] = 5, [6] = 6, - [7] = 6, - [8] = 2, - [9] = 2, + [7] = 2, + [8] = 8, + [9] = 6, [10] = 6, - [11] = 11, - [12] = 6, + [11] = 6, + [12] = 2, [13] = 6, - [14] = 4, - [15] = 2, + [14] = 2, + [15] = 8, [16] = 6, [17] = 17, [18] = 18, [19] = 19, [20] = 20, - [21] = 20, + [21] = 19, [22] = 22, - [23] = 19, + [23] = 20, [24] = 24, [25] = 17, - [26] = 20, + [26] = 24, [27] = 22, - [28] = 24, + [28] = 20, [29] = 19, [30] = 19, - [31] = 18, - [32] = 20, + [31] = 20, + [32] = 18, [33] = 33, [34] = 34, [35] = 35, @@ -3955,25 +3605,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [50] = 50, [51] = 51, [52] = 52, - [53] = 53, + [53] = 52, [54] = 54, [55] = 55, - [56] = 56, + [56] = 54, [57] = 57, - [58] = 58, - [59] = 58, - [60] = 60, - [61] = 60, - [62] = 62, + [58] = 52, + [59] = 57, + [60] = 54, + [61] = 61, + [62] = 51, [63] = 63, - [64] = 51, + [64] = 57, [65] = 65, - [66] = 56, - [67] = 58, - [68] = 55, - [69] = 65, - [70] = 65, - [71] = 55, + [66] = 66, + [67] = 67, + [68] = 63, + [69] = 66, + [70] = 70, + [71] = 71, [72] = 72, [73] = 73, [74] = 74, @@ -3984,16 +3634,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [79] = 79, [80] = 80, [81] = 81, - [82] = 74, + [82] = 82, [83] = 83, [84] = 84, [85] = 85, [86] = 86, - [87] = 87, + [87] = 83, [88] = 88, [89] = 89, - [90] = 90, - [91] = 75, + [90] = 89, + [91] = 74, [92] = 92, [93] = 93, [94] = 94, @@ -4004,170 +3654,170 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [99] = 99, [100] = 100, [101] = 101, - [102] = 102, - [103] = 72, + [102] = 93, + [103] = 103, [104] = 104, [105] = 105, - [106] = 106, + [106] = 103, [107] = 107, - [108] = 90, - [109] = 78, + [108] = 108, + [109] = 109, [110] = 110, - [111] = 111, + [111] = 108, [112] = 112, - [113] = 113, + [113] = 79, [114] = 114, [115] = 115, [116] = 116, [117] = 117, [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, - [122] = 122, + [119] = 82, + [120] = 81, + [121] = 78, + [122] = 77, [123] = 123, - [124] = 88, - [125] = 125, + [124] = 124, + [125] = 112, [126] = 126, [127] = 127, [128] = 128, [129] = 129, [130] = 130, - [131] = 131, + [131] = 75, [132] = 132, [133] = 133, - [134] = 106, + [134] = 134, [135] = 135, [136] = 136, [137] = 137, - [138] = 72, + [138] = 116, [139] = 139, - [140] = 140, + [140] = 126, [141] = 141, - [142] = 142, - [143] = 140, - [144] = 106, - [145] = 95, - [146] = 126, - [147] = 95, - [148] = 81, + [142] = 128, + [143] = 143, + [144] = 130, + [145] = 145, + [146] = 141, + [147] = 147, + [148] = 148, [149] = 149, - [150] = 75, - [151] = 142, - [152] = 141, - [153] = 123, - [154] = 121, - [155] = 113, - [156] = 111, - [157] = 107, - [158] = 120, + [150] = 150, + [151] = 151, + [152] = 114, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 145, + [157] = 141, + [158] = 147, [159] = 159, - [160] = 92, - [161] = 102, - [162] = 137, + [160] = 151, + [161] = 132, + [162] = 162, [163] = 163, - [164] = 136, - [165] = 79, - [166] = 166, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 128, - [171] = 171, - [172] = 114, + [164] = 164, + [165] = 165, + [166] = 148, + [167] = 150, + [168] = 153, + [169] = 114, + [170] = 100, + [171] = 154, + [172] = 172, [173] = 173, [174] = 80, - [175] = 100, - [176] = 106, - [177] = 99, - [178] = 81, - [179] = 179, - [180] = 180, - [181] = 97, - [182] = 120, - [183] = 128, - [184] = 184, - [185] = 135, + [175] = 80, + [176] = 151, + [177] = 177, + [178] = 93, + [179] = 141, + [180] = 130, + [181] = 181, + [182] = 116, + [183] = 84, + [184] = 177, + [185] = 136, [186] = 186, [187] = 187, - [188] = 83, - [189] = 189, - [190] = 190, - [191] = 189, - [192] = 190, - [193] = 190, - [194] = 194, - [195] = 195, - [196] = 195, - [197] = 194, + [188] = 186, + [189] = 187, + [190] = 187, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 193, + [195] = 192, + [196] = 191, + [197] = 197, [198] = 198, - [199] = 198, - [200] = 200, + [199] = 199, + [200] = 199, [201] = 201, - [202] = 201, - [203] = 203, + [202] = 202, + [203] = 201, [204] = 204, - [205] = 205, + [205] = 201, [206] = 206, - [207] = 205, - [208] = 205, - [209] = 209, + [207] = 207, + [208] = 206, + [209] = 207, [210] = 210, - [211] = 209, - [212] = 212, - [213] = 213, - [214] = 210, - [215] = 212, - [216] = 210, - [217] = 213, - [218] = 212, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 220, - [223] = 46, - [224] = 220, - [225] = 221, - [226] = 220, - [227] = 220, - [228] = 50, - [229] = 63, - [230] = 62, - [231] = 54, - [232] = 86, - [233] = 233, - [234] = 163, - [235] = 76, - [236] = 125, - [237] = 149, - [238] = 180, - [239] = 166, - [240] = 167, - [241] = 132, - [242] = 159, - [243] = 184, - [244] = 101, - [245] = 245, - [246] = 246, - [247] = 245, - [248] = 104, - [249] = 84, + [211] = 211, + [212] = 211, + [213] = 210, + [214] = 206, + [215] = 210, + [216] = 216, + [217] = 50, + [218] = 45, + [219] = 61, + [220] = 71, + [221] = 65, + [222] = 96, + [223] = 101, + [224] = 224, + [225] = 225, + [226] = 149, + [227] = 227, + [228] = 92, + [229] = 139, + [230] = 227, + [231] = 72, + [232] = 117, + [233] = 104, + [234] = 115, + [235] = 181, + [236] = 159, + [237] = 110, + [238] = 162, + [239] = 85, + [240] = 240, + [241] = 224, + [242] = 143, + [243] = 163, + [244] = 99, + [245] = 133, + [246] = 94, + [247] = 247, + [248] = 248, + [249] = 247, [250] = 250, - [251] = 105, - [252] = 89, - [253] = 115, - [254] = 233, - [255] = 96, - [256] = 173, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 252, + [255] = 251, + [256] = 256, [257] = 257, [258] = 258, - [259] = 258, + [259] = 259, [260] = 260, [261] = 261, [262] = 262, [263] = 263, - [264] = 260, - [265] = 261, + [264] = 264, + [265] = 265, [266] = 266, [267] = 267, [268] = 268, @@ -4180,9 +3830,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [275] = 275, [276] = 276, [277] = 277, - [278] = 63, + [278] = 278, [279] = 279, - [280] = 54, + [280] = 280, [281] = 281, [282] = 282, [283] = 283, @@ -4190,7 +3840,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [285] = 285, [286] = 286, [287] = 287, - [288] = 62, + [288] = 288, [289] = 289, [290] = 290, [291] = 291, @@ -4263,7 +3913,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [358] = 358, [359] = 359, [360] = 360, - [361] = 308, + [361] = 276, [362] = 362, [363] = 363, [364] = 364, @@ -4283,10 +3933,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [378] = 378, [379] = 379, [380] = 380, - [381] = 381, + [381] = 276, [382] = 382, [383] = 383, - [384] = 308, + [384] = 384, [385] = 385, [386] = 386, [387] = 387, @@ -4345,18 +3995,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [440] = 440, [441] = 441, [442] = 442, - [443] = 443, + [443] = 71, [444] = 444, [445] = 445, [446] = 446, - [447] = 447, + [447] = 61, [448] = 448, [449] = 449, [450] = 450, [451] = 451, [452] = 452, [453] = 453, - [454] = 454, + [454] = 65, [455] = 455, [456] = 456, [457] = 457, @@ -4396,78 +4046,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [491] = 491, [492] = 492, [493] = 493, - [494] = 494, + [494] = 493, [495] = 495, - [496] = 496, + [496] = 495, [497] = 497, - [498] = 498, + [498] = 497, [499] = 499, [500] = 500, [501] = 501, [502] = 502, - [503] = 503, + [503] = 499, [504] = 504, - [505] = 505, - [506] = 504, - [507] = 507, + [505] = 504, + [506] = 501, + [507] = 500, [508] = 508, [509] = 509, - [510] = 505, - [511] = 503, + [510] = 499, + [511] = 511, [512] = 512, [513] = 513, - [514] = 505, - [515] = 502, + [514] = 514, + [515] = 515, [516] = 516, - [517] = 513, + [517] = 517, [518] = 518, - [519] = 518, - [520] = 516, - [521] = 521, + [519] = 513, + [520] = 520, + [521] = 520, [522] = 522, - [523] = 523, - [524] = 523, - [525] = 522, + [523] = 522, + [524] = 524, + [525] = 518, [526] = 526, - [527] = 522, - [528] = 523, - [529] = 529, - [530] = 530, + [527] = 524, + [528] = 514, + [529] = 512, + [530] = 518, [531] = 531, - [532] = 532, + [532] = 526, [533] = 533, [534] = 533, - [535] = 532, - [536] = 536, - [537] = 537, - [538] = 531, + [535] = 524, + [536] = 526, + [537] = 518, + [538] = 524, [539] = 539, - [540] = 540, - [541] = 541, - [542] = 530, - [543] = 526, - [544] = 523, - [545] = 531, - [546] = 529, - [547] = 529, - [548] = 523, - [549] = 522, - [550] = 531, - [551] = 530, - [552] = 539, - [553] = 540, - [554] = 541, - [555] = 526, - [556] = 529, - [557] = 522, - [558] = 529, - [559] = 526, - [560] = 530, - [561] = 536, - [562] = 531, + [540] = 539, + [541] = 517, + [542] = 533, + [543] = 516, + [544] = 533, + [545] = 539, + [546] = 539, + [547] = 514, + [548] = 539, + [549] = 533, + [550] = 526, + [551] = 518, + [552] = 514, + [553] = 524, + [554] = 526, + [555] = 514, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, [563] = 563, - [564] = 526, - [565] = 530, + [564] = 564, + [565] = 565, [566] = 566, [567] = 567, [568] = 568, @@ -4499,75 +4149,75 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [594] = 594, [595] = 595, [596] = 596, - [597] = 597, + [597] = 587, [598] = 598, [599] = 599, [600] = 600, - [601] = 601, + [601] = 599, [602] = 602, [603] = 603, - [604] = 604, - [605] = 605, + [604] = 124, + [605] = 603, [606] = 606, [607] = 607, - [608] = 129, + [608] = 607, [609] = 609, - [610] = 594, - [611] = 611, - [612] = 612, + [610] = 609, + [611] = 603, + [612] = 575, [613] = 613, - [614] = 614, - [615] = 615, + [614] = 606, + [615] = 609, [616] = 616, [617] = 617, [618] = 618, - [619] = 619, + [619] = 617, [620] = 620, [621] = 621, - [622] = 622, - [623] = 622, - [624] = 624, - [625] = 622, + [622] = 607, + [623] = 623, + [624] = 600, + [625] = 625, [626] = 626, [627] = 627, - [628] = 628, - [629] = 629, - [630] = 624, + [628] = 580, + [629] = 600, + [630] = 630, [631] = 631, - [632] = 613, - [633] = 585, + [632] = 164, + [633] = 633, [634] = 634, - [635] = 620, - [636] = 613, - [637] = 612, - [638] = 586, - [639] = 639, - [640] = 640, - [641] = 587, - [642] = 168, - [643] = 628, - [644] = 618, - [645] = 628, - [646] = 612, - [647] = 618, + [635] = 635, + [636] = 596, + [637] = 617, + [638] = 638, + [639] = 638, + [640] = 638, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 643, + [645] = 645, + [646] = 646, + [647] = 643, [648] = 648, [649] = 649, - [650] = 649, - [651] = 651, - [652] = 649, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 656, + [650] = 650, + [651] = 645, + [652] = 652, + [653] = 648, + [654] = 649, + [655] = 652, + [656] = 650, [657] = 657, [658] = 658, - [659] = 655, - [660] = 653, - [661] = 654, - [662] = 656, - [663] = 658, - [664] = 657, - [665] = 655, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 665, [666] = 666, [667] = 667, [668] = 668, @@ -4579,136 +4229,136 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [674] = 674, [675] = 675, [676] = 676, - [677] = 413, + [677] = 677, [678] = 678, [679] = 679, [680] = 680, [681] = 681, - [682] = 682, + [682] = 668, [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, + [684] = 683, + [685] = 659, + [686] = 669, + [687] = 664, [688] = 688, [689] = 689, - [690] = 679, + [690] = 667, [691] = 691, [692] = 692, - [693] = 675, - [694] = 684, - [695] = 688, + [693] = 677, + [694] = 694, + [695] = 695, [696] = 696, [697] = 697, [698] = 698, [699] = 699, [700] = 700, [701] = 701, - [702] = 667, + [702] = 702, [703] = 703, [704] = 704, [705] = 705, - [706] = 706, + [706] = 672, [707] = 707, [708] = 708, - [709] = 696, + [709] = 688, [710] = 710, - [711] = 689, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, + [711] = 696, + [712] = 663, + [713] = 677, + [714] = 702, + [715] = 679, [716] = 716, [717] = 717, - [718] = 718, - [719] = 719, - [720] = 719, - [721] = 721, + [718] = 662, + [719] = 660, + [720] = 698, + [721] = 703, [722] = 722, - [723] = 723, - [724] = 673, - [725] = 697, - [726] = 726, - [727] = 692, - [728] = 703, - [729] = 691, - [730] = 676, - [731] = 731, - [732] = 704, - [733] = 681, - [734] = 726, - [735] = 704, - [736] = 705, - [737] = 718, - [738] = 669, - [739] = 708, + [723] = 671, + [724] = 699, + [725] = 725, + [726] = 695, + [727] = 701, + [728] = 700, + [729] = 708, + [730] = 730, + [731] = 304, + [732] = 732, + [733] = 733, + [734] = 734, + [735] = 667, + [736] = 736, + [737] = 737, + [738] = 716, + [739] = 739, [740] = 740, - [741] = 741, - [742] = 713, - [743] = 682, - [744] = 744, + [741] = 670, + [742] = 678, + [743] = 676, + [744] = 669, [745] = 745, - [746] = 676, - [747] = 668, - [748] = 685, + [746] = 734, + [747] = 707, + [748] = 674, [749] = 749, - [750] = 750, - [751] = 683, + [750] = 680, + [751] = 751, [752] = 752, - [753] = 706, - [754] = 670, - [755] = 716, - [756] = 722, - [757] = 749, - [758] = 758, - [759] = 759, - [760] = 744, - [761] = 761, - [762] = 672, + [753] = 752, + [754] = 691, + [755] = 705, + [756] = 736, + [757] = 740, + [758] = 739, + [759] = 737, + [760] = 658, + [761] = 730, + [762] = 762, [763] = 763, - [764] = 691, - [765] = 678, - [766] = 710, - [767] = 714, + [764] = 661, + [765] = 765, + [766] = 766, + [767] = 767, [768] = 768, - [769] = 740, + [769] = 304, [770] = 770, - [771] = 731, - [772] = 745, - [773] = 768, - [774] = 752, + [771] = 771, + [772] = 772, + [773] = 773, + [774] = 774, [775] = 775, [776] = 776, [777] = 777, [778] = 778, - [779] = 413, + [779] = 779, [780] = 780, [781] = 781, [782] = 782, - [783] = 783, + [783] = 374, [784] = 784, - [785] = 785, + [785] = 339, [786] = 786, [787] = 787, [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 387, - [793] = 316, + [789] = 258, + [790] = 270, + [791] = 483, + [792] = 792, + [793] = 793, [794] = 794, [795] = 795, [796] = 796, [797] = 797, - [798] = 798, - [799] = 420, - [800] = 375, + [798] = 45, + [799] = 799, + [800] = 800, [801] = 801, - [802] = 469, + [802] = 802, [803] = 803, [804] = 804, [805] = 805, - [806] = 204, + [806] = 806, [807] = 807, [808] = 808, [809] = 809, @@ -4718,350 +4368,350 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [813] = 813, [814] = 814, [815] = 815, - [816] = 46, + [816] = 816, [817] = 817, [818] = 818, [819] = 819, - [820] = 820, + [820] = 204, [821] = 821, - [822] = 822, + [822] = 50, [823] = 823, - [824] = 50, + [824] = 824, [825] = 825, [826] = 826, [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 833, + [828] = 357, + [829] = 413, + [830] = 133, + [831] = 408, + [832] = 407, + [833] = 406, [834] = 834, [835] = 835, [836] = 836, - [837] = 413, - [838] = 587, + [837] = 837, + [838] = 838, [839] = 839, - [840] = 272, - [841] = 269, - [842] = 268, - [843] = 385, - [844] = 492, - [845] = 845, - [846] = 490, - [847] = 129, - [848] = 489, - [849] = 488, - [850] = 487, - [851] = 482, - [852] = 470, - [853] = 468, - [854] = 467, - [855] = 855, - [856] = 446, - [857] = 441, - [858] = 431, - [859] = 430, - [860] = 428, - [861] = 427, - [862] = 266, - [863] = 125, - [864] = 267, - [865] = 416, - [866] = 404, - [867] = 403, - [868] = 402, - [869] = 401, - [870] = 400, - [871] = 399, - [872] = 390, - [873] = 383, - [874] = 379, - [875] = 377, - [876] = 367, - [877] = 166, - [878] = 356, - [879] = 63, - [880] = 355, - [881] = 353, - [882] = 352, - [883] = 351, + [840] = 317, + [841] = 316, + [842] = 314, + [843] = 312, + [844] = 409, + [845] = 404, + [846] = 403, + [847] = 402, + [848] = 401, + [849] = 400, + [850] = 395, + [851] = 394, + [852] = 410, + [853] = 392, + [854] = 411, + [855] = 391, + [856] = 856, + [857] = 412, + [858] = 311, + [859] = 389, + [860] = 384, + [861] = 310, + [862] = 377, + [863] = 375, + [864] = 372, + [865] = 865, + [866] = 866, + [867] = 308, + [868] = 110, + [869] = 307, + [870] = 371, + [871] = 302, + [872] = 301, + [873] = 369, + [874] = 368, + [875] = 298, + [876] = 876, + [877] = 367, + [878] = 296, + [879] = 366, + [880] = 294, + [881] = 365, + [882] = 92, + [883] = 362, [884] = 884, - [885] = 885, - [886] = 347, - [887] = 345, - [888] = 343, - [889] = 340, + [885] = 422, + [886] = 423, + [887] = 360, + [888] = 359, + [889] = 889, [890] = 890, - [891] = 339, - [892] = 338, + [891] = 425, + [892] = 426, [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 332, - [899] = 585, - [900] = 54, - [901] = 901, - [902] = 328, - [903] = 326, - [904] = 904, - [905] = 325, - [906] = 320, - [907] = 317, - [908] = 312, - [909] = 62, - [910] = 180, - [911] = 294, - [912] = 291, - [913] = 913, - [914] = 284, - [915] = 915, - [916] = 916, - [917] = 282, - [918] = 281, - [919] = 271, - [920] = 920, - [921] = 921, - [922] = 277, - [923] = 279, - [924] = 594, - [925] = 286, - [926] = 287, - [927] = 290, - [928] = 300, - [929] = 303, - [930] = 323, - [931] = 931, - [932] = 324, - [933] = 327, - [934] = 934, - [935] = 329, - [936] = 936, - [937] = 334, - [938] = 938, - [939] = 939, - [940] = 344, - [941] = 354, - [942] = 359, - [943] = 374, - [944] = 406, - [945] = 407, - [946] = 411, - [947] = 947, - [948] = 412, - [949] = 414, - [950] = 418, - [951] = 419, - [952] = 425, - [953] = 110, - [954] = 133, - [955] = 115, - [956] = 436, - [957] = 447, - [958] = 472, - [959] = 959, - [960] = 397, - [961] = 396, - [962] = 391, - [963] = 388, - [964] = 964, - [965] = 376, - [966] = 372, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 89, - [972] = 86, - [973] = 330, - [974] = 319, - [975] = 318, + [894] = 115, + [895] = 390, + [896] = 117, + [897] = 439, + [898] = 441, + [899] = 356, + [900] = 446, + [901] = 353, + [902] = 416, + [903] = 351, + [904] = 449, + [905] = 347, + [906] = 417, + [907] = 418, + [908] = 450, + [909] = 345, + [910] = 344, + [911] = 911, + [912] = 124, + [913] = 343, + [914] = 342, + [915] = 398, + [916] = 419, + [917] = 334, + [918] = 285, + [919] = 318, + [920] = 72, + [921] = 284, + [922] = 282, + [923] = 330, + [924] = 321, + [925] = 451, + [926] = 453, + [927] = 278, + [928] = 273, + [929] = 329, + [930] = 326, + [931] = 324, + [932] = 267, + [933] = 322, + [934] = 266, + [935] = 323, + [936] = 320, + [937] = 424, + [938] = 319, + [939] = 434, + [940] = 261, + [941] = 263, + [942] = 428, + [943] = 309, + [944] = 305, + [945] = 264, + [946] = 71, + [947] = 61, + [948] = 65, + [949] = 325, + [950] = 265, + [951] = 271, + [952] = 303, + [953] = 300, + [954] = 295, + [955] = 397, + [956] = 293, + [957] = 124, + [958] = 281, + [959] = 429, + [960] = 292, + [961] = 291, + [962] = 289, + [963] = 287, + [964] = 283, + [965] = 288, + [966] = 458, + [967] = 290, + [968] = 259, + [969] = 260, + [970] = 297, + [971] = 262, + [972] = 972, + [973] = 299, + [974] = 306, + [975] = 313, [976] = 315, - [977] = 977, - [978] = 310, - [979] = 979, - [980] = 369, - [981] = 981, - [982] = 270, - [983] = 129, - [984] = 299, - [985] = 421, - [986] = 307, - [987] = 365, - [988] = 84, - [989] = 422, - [990] = 381, - [991] = 395, - [992] = 483, - [993] = 473, - [994] = 994, - [995] = 454, - [996] = 453, - [997] = 442, - [998] = 409, - [999] = 415, - [1000] = 311, - [1001] = 313, - [1002] = 296, - [1003] = 1003, - [1004] = 295, - [1005] = 293, - [1006] = 274, - [1007] = 273, - [1008] = 417, - [1009] = 276, - [1010] = 283, - [1011] = 285, - [1012] = 289, - [1013] = 304, - [1014] = 305, - [1015] = 306, - [1016] = 309, - [1017] = 423, - [1018] = 184, - [1019] = 337, + [977] = 268, + [978] = 104, + [979] = 269, + [980] = 337, + [981] = 338, + [982] = 982, + [983] = 393, + [984] = 340, + [985] = 341, + [986] = 596, + [987] = 430, + [988] = 396, + [989] = 349, + [990] = 139, + [991] = 991, + [992] = 350, + [993] = 272, + [994] = 352, + [995] = 431, + [996] = 432, + [997] = 436, + [998] = 274, + [999] = 999, + [1000] = 277, + [1001] = 164, + [1002] = 257, + [1003] = 580, + [1004] = 354, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 279, + [1011] = 280, + [1012] = 433, + [1013] = 65, + [1014] = 101, + [1015] = 385, + [1016] = 327, + [1017] = 328, + [1018] = 387, + [1019] = 1019, [1020] = 1020, - [1021] = 341, - [1022] = 1022, - [1023] = 342, - [1024] = 1024, + [1021] = 304, + [1022] = 256, + [1023] = 1023, + [1024] = 489, [1025] = 1025, - [1026] = 349, - [1027] = 350, - [1028] = 314, + [1026] = 96, + [1027] = 399, + [1028] = 460, [1029] = 1029, - [1030] = 1030, + [1030] = 143, [1031] = 1031, - [1032] = 424, - [1033] = 1033, - [1034] = 159, - [1035] = 298, - [1036] = 371, - [1037] = 321, - [1038] = 322, + [1032] = 437, + [1033] = 332, + [1034] = 461, + [1035] = 333, + [1036] = 465, + [1037] = 173, + [1038] = 99, [1039] = 380, - [1040] = 168, - [1041] = 62, - [1042] = 429, - [1043] = 498, - [1044] = 432, - [1045] = 1045, - [1046] = 466, - [1047] = 465, - [1048] = 444, - [1049] = 433, - [1050] = 1050, - [1051] = 110, - [1052] = 132, - [1053] = 405, - [1054] = 386, - [1055] = 382, - [1056] = 378, - [1057] = 1057, - [1058] = 373, - [1059] = 370, - [1060] = 364, - [1061] = 363, - [1062] = 167, - [1063] = 357, - [1064] = 173, - [1065] = 348, - [1066] = 346, - [1067] = 331, - [1068] = 1068, - [1069] = 333, + [1040] = 466, + [1041] = 388, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 95, + [1046] = 335, + [1047] = 467, + [1048] = 438, + [1049] = 420, + [1050] = 440, + [1051] = 421, + [1052] = 286, + [1053] = 336, + [1054] = 435, + [1055] = 164, + [1056] = 444, + [1057] = 575, + [1058] = 445, + [1059] = 1059, + [1060] = 1060, + [1061] = 71, + [1062] = 455, + [1063] = 485, + [1064] = 1064, + [1065] = 149, + [1066] = 1066, + [1067] = 1067, + [1068] = 468, + [1069] = 1069, [1070] = 1070, - [1071] = 335, - [1072] = 336, + [1071] = 469, + [1072] = 470, [1073] = 1073, [1074] = 1074, - [1075] = 358, - [1076] = 1076, - [1077] = 360, - [1078] = 1078, - [1079] = 1079, - [1080] = 362, - [1081] = 297, + [1075] = 163, + [1076] = 181, + [1077] = 383, + [1078] = 471, + [1079] = 379, + [1080] = 587, + [1081] = 472, [1082] = 1082, [1083] = 1083, - [1084] = 366, - [1085] = 275, - [1086] = 133, - [1087] = 434, - [1088] = 76, + [1084] = 1084, + [1085] = 427, + [1086] = 414, + [1087] = 473, + [1088] = 474, [1089] = 1089, - [1090] = 54, - [1091] = 435, - [1092] = 368, - [1093] = 389, - [1094] = 392, - [1095] = 393, - [1096] = 394, - [1097] = 437, - [1098] = 398, - [1099] = 301, - [1100] = 302, - [1101] = 408, - [1102] = 410, - [1103] = 438, - [1104] = 426, - [1105] = 445, - [1106] = 163, - [1107] = 149, - [1108] = 1108, - [1109] = 480, - [1110] = 1110, - [1111] = 481, - [1112] = 104, - [1113] = 101, - [1114] = 494, - [1115] = 63, - [1116] = 496, - [1117] = 439, - [1118] = 499, - [1119] = 501, - [1120] = 1120, - [1121] = 500, - [1122] = 440, - [1123] = 497, - [1124] = 495, - [1125] = 493, - [1126] = 443, - [1127] = 1127, - [1128] = 105, - [1129] = 491, - [1130] = 486, - [1131] = 448, - [1132] = 485, - [1133] = 484, - [1134] = 586, - [1135] = 96, - [1136] = 168, - [1137] = 1137, - [1138] = 1138, - [1139] = 479, - [1140] = 478, - [1141] = 477, - [1142] = 476, - [1143] = 475, - [1144] = 474, - [1145] = 449, - [1146] = 471, - [1147] = 464, - [1148] = 463, - [1149] = 462, - [1150] = 461, - [1151] = 460, - [1152] = 450, - [1153] = 459, - [1154] = 451, - [1155] = 458, - [1156] = 457, - [1157] = 456, - [1158] = 455, - [1159] = 452, + [1090] = 1090, + [1091] = 464, + [1092] = 1092, + [1093] = 463, + [1094] = 442, + [1095] = 448, + [1096] = 475, + [1097] = 476, + [1098] = 173, + [1099] = 376, + [1100] = 1100, + [1101] = 162, + [1102] = 405, + [1103] = 452, + [1104] = 477, + [1105] = 1105, + [1106] = 386, + [1107] = 1107, + [1108] = 382, + [1109] = 358, + [1110] = 378, + [1111] = 373, + [1112] = 61, + [1113] = 370, + [1114] = 1114, + [1115] = 364, + [1116] = 363, + [1117] = 159, + [1118] = 415, + [1119] = 457, + [1120] = 459, + [1121] = 478, + [1122] = 94, + [1123] = 348, + [1124] = 346, + [1125] = 462, + [1126] = 479, + [1127] = 355, + [1128] = 484, + [1129] = 1129, + [1130] = 480, + [1131] = 1131, + [1132] = 481, + [1133] = 95, + [1134] = 275, + [1135] = 1135, + [1136] = 1136, + [1137] = 482, + [1138] = 486, + [1139] = 487, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 488, + [1145] = 85, + [1146] = 456, + [1147] = 490, + [1148] = 491, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, [1160] = 1160, [1161] = 1161, [1162] = 1162, @@ -5072,7 +4722,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1167] = 1167, [1168] = 1168, [1169] = 1169, - [1170] = 1170, + [1170] = 642, [1171] = 1171, [1172] = 1172, [1173] = 1173, @@ -5080,483 +4730,483 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1175] = 1175, [1176] = 1176, [1177] = 1177, - [1178] = 648, + [1178] = 1178, [1179] = 1179, [1180] = 1180, - [1181] = 1181, + [1181] = 775, [1182] = 1182, [1183] = 1183, - [1184] = 1184, - [1185] = 1185, + [1184] = 1149, + [1185] = 304, [1186] = 1186, [1187] = 1187, [1188] = 1188, [1189] = 1189, - [1190] = 1190, - [1191] = 787, - [1192] = 1192, - [1193] = 1193, + [1190] = 1187, + [1191] = 1191, + [1192] = 1191, + [1193] = 775, [1194] = 1194, - [1195] = 1195, + [1195] = 815, [1196] = 1196, - [1197] = 1195, - [1198] = 1196, - [1199] = 1076, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, [1200] = 1200, - [1201] = 413, - [1202] = 1202, + [1201] = 1201, + [1202] = 792, [1203] = 1203, - [1204] = 1204, - [1205] = 813, - [1206] = 787, - [1207] = 1207, - [1208] = 1208, + [1204] = 815, + [1205] = 1205, + [1206] = 1206, + [1207] = 786, + [1208] = 803, [1209] = 1209, - [1210] = 1210, - [1211] = 1211, + [1210] = 784, + [1211] = 788, [1212] = 1212, - [1213] = 1213, - [1214] = 830, - [1215] = 1215, - [1216] = 1216, - [1217] = 813, - [1218] = 1218, + [1213] = 802, + [1214] = 818, + [1215] = 1083, + [1216] = 838, + [1217] = 1217, + [1218] = 1217, [1219] = 1219, - [1220] = 795, - [1221] = 801, + [1220] = 1220, + [1221] = 1221, [1222] = 1222, - [1223] = 1223, - [1224] = 797, - [1225] = 791, - [1226] = 831, - [1227] = 821, - [1228] = 1228, - [1229] = 1229, + [1223] = 1174, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1224, + [1229] = 1153, [1230] = 1230, - [1231] = 904, - [1232] = 1230, - [1233] = 839, + [1231] = 1157, + [1232] = 1164, + [1233] = 1168, [1234] = 1234, - [1235] = 1235, - [1236] = 1236, - [1237] = 1182, - [1238] = 1167, + [1235] = 1169, + [1236] = 1171, + [1237] = 1237, + [1238] = 1176, [1239] = 1239, [1240] = 1240, - [1241] = 1241, - [1242] = 1179, - [1243] = 1243, - [1244] = 1244, + [1241] = 1180, + [1242] = 1150, + [1243] = 1166, + [1244] = 1221, [1245] = 1245, - [1246] = 1243, + [1246] = 1246, [1247] = 1247, [1248] = 1248, [1249] = 1249, - [1250] = 1250, + [1250] = 1248, [1251] = 1251, - [1252] = 1252, - [1253] = 1163, - [1254] = 1252, - [1255] = 1235, - [1256] = 1256, + [1252] = 1234, + [1253] = 1155, + [1254] = 1254, + [1255] = 1255, + [1256] = 1248, [1257] = 1257, - [1258] = 1171, - [1259] = 1180, - [1260] = 1257, - [1261] = 1261, + [1258] = 1246, + [1259] = 1254, + [1260] = 1221, + [1261] = 1227, [1262] = 1262, [1263] = 1263, - [1264] = 1244, - [1265] = 1247, - [1266] = 1261, + [1264] = 1163, + [1265] = 1224, + [1266] = 1266, [1267] = 1267, - [1268] = 1268, - [1269] = 1170, - [1270] = 1161, - [1271] = 1271, - [1272] = 1250, - [1273] = 1257, - [1274] = 1168, - [1275] = 1241, + [1268] = 1257, + [1269] = 1220, + [1270] = 1270, + [1271] = 1248, + [1272] = 1272, + [1273] = 1154, + [1274] = 1227, + [1275] = 1240, [1276] = 1276, - [1277] = 1268, - [1278] = 1235, - [1279] = 1250, + [1277] = 1267, + [1278] = 1278, + [1279] = 1220, [1280] = 1280, - [1281] = 1280, - [1282] = 1257, + [1281] = 1226, + [1282] = 1230, [1283] = 1283, - [1284] = 1267, - [1285] = 1285, - [1286] = 1250, - [1287] = 1287, - [1288] = 1250, - [1289] = 1165, - [1290] = 1239, - [1291] = 1285, - [1292] = 1257, - [1293] = 1293, - [1294] = 1293, - [1295] = 1295, - [1296] = 1296, - [1297] = 1297, - [1298] = 1280, - [1299] = 1299, + [1284] = 1246, + [1285] = 1234, + [1286] = 1222, + [1287] = 1240, + [1288] = 1257, + [1289] = 1289, + [1290] = 1151, + [1291] = 1234, + [1292] = 1248, + [1293] = 1177, + [1294] = 1234, + [1295] = 1179, + [1296] = 1276, + [1297] = 1226, + [1298] = 1234, + [1299] = 1178, [1300] = 1267, - [1301] = 1247, - [1302] = 1302, - [1303] = 1244, - [1304] = 1243, - [1305] = 1176, - [1306] = 1183, - [1307] = 1186, - [1308] = 1187, - [1309] = 1189, - [1310] = 1250, - [1311] = 1268, - [1312] = 1239, - [1313] = 1190, - [1314] = 1293, - [1315] = 1257, - [1316] = 1185, - [1317] = 1160, - [1318] = 1173, - [1319] = 1181, + [1301] = 1158, + [1302] = 1175, + [1303] = 1248, + [1304] = 1304, + [1305] = 1305, + [1306] = 1306, + [1307] = 1307, + [1308] = 1308, + [1309] = 1309, + [1310] = 1310, + [1311] = 1311, + [1312] = 1304, + [1313] = 1305, + [1314] = 1314, + [1315] = 1315, + [1316] = 1315, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, [1320] = 1320, - [1321] = 1321, + [1321] = 1319, [1322] = 1322, [1323] = 1323, [1324] = 1324, [1325] = 1325, - [1326] = 1321, + [1326] = 1306, [1327] = 1327, - [1328] = 1328, + [1328] = 1323, [1329] = 1329, - [1330] = 1329, + [1330] = 1309, [1331] = 1331, [1332] = 1332, - [1333] = 1333, + [1333] = 1332, [1334] = 1334, - [1335] = 1323, + [1335] = 1331, [1336] = 1336, [1337] = 1337, [1338] = 1338, - [1339] = 1334, - [1340] = 1340, + [1339] = 1339, + [1340] = 1339, [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1328, - [1345] = 1345, - [1346] = 1331, - [1347] = 1337, - [1348] = 1348, - [1349] = 1349, + [1342] = 1341, + [1343] = 1339, + [1344] = 1339, + [1345] = 1339, + [1346] = 1346, + [1347] = 1346, + [1348] = 580, + [1349] = 575, [1350] = 1350, - [1351] = 1350, - [1352] = 1348, - [1353] = 1353, - [1354] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1356, - [1358] = 587, - [1359] = 586, - [1360] = 1360, - [1361] = 780, - [1362] = 782, - [1363] = 788, - [1364] = 784, - [1365] = 788, - [1366] = 790, - [1367] = 790, - [1368] = 786, - [1369] = 784, - [1370] = 781, - [1371] = 786, - [1372] = 1372, - [1373] = 1373, - [1374] = 1374, - [1375] = 785, - [1376] = 789, - [1377] = 783, - [1378] = 129, + [1351] = 770, + [1352] = 772, + [1353] = 774, + [1354] = 779, + [1355] = 780, + [1356] = 774, + [1357] = 776, + [1358] = 779, + [1359] = 776, + [1360] = 780, + [1361] = 771, + [1362] = 1362, + [1363] = 778, + [1364] = 777, + [1365] = 1365, + [1366] = 773, + [1367] = 1367, + [1368] = 124, + [1369] = 1369, + [1370] = 173, + [1371] = 1371, + [1372] = 95, + [1373] = 164, + [1374] = 1369, + [1375] = 794, + [1376] = 811, + [1377] = 821, + [1378] = 1149, [1379] = 1379, - [1380] = 168, - [1381] = 1379, - [1382] = 1382, - [1383] = 820, - [1384] = 110, - [1385] = 133, - [1386] = 1386, - [1387] = 803, - [1388] = 817, - [1389] = 826, - [1390] = 1076, - [1391] = 1212, - [1392] = 804, - [1393] = 812, - [1394] = 818, - [1395] = 805, - [1396] = 825, - [1397] = 832, - [1398] = 1218, - [1399] = 835, - [1400] = 1210, - [1401] = 809, - [1402] = 1211, - [1403] = 1403, + [1380] = 826, + [1381] = 1209, + [1382] = 800, + [1383] = 799, + [1384] = 1203, + [1385] = 819, + [1386] = 823, + [1387] = 808, + [1388] = 1201, + [1389] = 793, + [1390] = 807, + [1391] = 825, + [1392] = 816, + [1393] = 587, + [1394] = 824, + [1395] = 810, + [1396] = 1396, + [1397] = 1206, + [1398] = 817, + [1399] = 1396, + [1400] = 814, + [1401] = 797, + [1402] = 813, + [1403] = 1396, [1404] = 1404, - [1405] = 1404, - [1406] = 814, - [1407] = 829, - [1408] = 833, - [1409] = 585, - [1410] = 836, - [1411] = 834, - [1412] = 1412, - [1413] = 822, - [1414] = 1404, - [1415] = 823, - [1416] = 815, - [1417] = 810, - [1418] = 807, - [1419] = 1419, - [1420] = 808, - [1421] = 970, - [1422] = 1108, + [1405] = 795, + [1406] = 796, + [1407] = 1407, + [1408] = 812, + [1409] = 1409, + [1410] = 801, + [1411] = 1006, + [1412] = 1140, + [1413] = 889, + [1414] = 1005, + [1415] = 890, + [1416] = 884, + [1417] = 876, + [1418] = 1418, + [1419] = 893, + [1420] = 1420, + [1421] = 1042, + [1422] = 1422, [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 968, - [1427] = 896, - [1428] = 893, - [1429] = 1078, - [1430] = 1110, - [1431] = 967, - [1432] = 964, - [1433] = 1433, - [1434] = 890, - [1435] = 1070, - [1436] = 1074, - [1437] = 959, - [1438] = 1438, - [1439] = 1029, - [1440] = 1030, - [1441] = 1068, - [1442] = 884, - [1443] = 885, - [1444] = 1025, - [1445] = 1024, + [1424] = 787, + [1425] = 1059, + [1426] = 1019, + [1427] = 1129, + [1428] = 1060, + [1429] = 1092, + [1430] = 1430, + [1431] = 1131, + [1432] = 1114, + [1433] = 1023, + [1434] = 1025, + [1435] = 1029, + [1436] = 1143, + [1437] = 1135, + [1438] = 1136, + [1439] = 1064, + [1440] = 1440, + [1441] = 65, + [1442] = 1442, + [1443] = 71, + [1444] = 1444, + [1445] = 1423, [1446] = 1446, - [1447] = 1031, - [1448] = 1033, - [1449] = 798, - [1450] = 1073, - [1451] = 54, - [1452] = 62, - [1453] = 63, - [1454] = 1454, + [1447] = 61, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 774, [1455] = 1455, - [1456] = 1438, + [1456] = 1456, [1457] = 1457, - [1458] = 1458, + [1458] = 99, [1459] = 1459, [1460] = 1460, [1461] = 1461, - [1462] = 1462, - [1463] = 788, + [1462] = 1423, + [1463] = 1463, [1464] = 1464, - [1465] = 1465, + [1465] = 780, [1466] = 1466, [1467] = 1467, - [1468] = 1468, + [1468] = 776, [1469] = 1469, - [1470] = 784, - [1471] = 790, + [1470] = 1470, + [1471] = 1471, [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 788, + [1475] = 779, [1476] = 1476, - [1477] = 1477, + [1477] = 779, [1478] = 1478, [1479] = 1479, - [1480] = 786, - [1481] = 1481, - [1482] = 104, + [1480] = 1480, + [1481] = 774, + [1482] = 780, [1483] = 1483, [1484] = 1484, - [1485] = 790, - [1486] = 1486, - [1487] = 786, - [1488] = 1488, + [1485] = 776, + [1486] = 779, + [1487] = 774, + [1488] = 780, [1489] = 1489, [1490] = 1490, - [1491] = 1491, - [1492] = 784, + [1491] = 776, + [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 786, + [1496] = 1496, [1497] = 1497, [1498] = 1498, [1499] = 1499, [1500] = 1500, - [1501] = 1501, - [1502] = 1438, - [1503] = 1503, - [1504] = 790, - [1505] = 784, - [1506] = 788, - [1507] = 1507, - [1508] = 1508, + [1501] = 1497, + [1502] = 1502, + [1503] = 1498, + [1504] = 1504, + [1505] = 1504, + [1506] = 1502, + [1507] = 1500, + [1508] = 1499, [1509] = 1509, - [1510] = 1510, + [1510] = 1509, [1511] = 1511, - [1512] = 1510, + [1512] = 1512, [1513] = 1513, - [1514] = 1509, - [1515] = 1508, - [1516] = 1507, - [1517] = 1511, - [1518] = 1513, + [1514] = 1512, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, [1519] = 1519, - [1520] = 1520, + [1520] = 1518, [1521] = 1521, [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1524, - [1526] = 1519, + [1525] = 1525, + [1526] = 1523, [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, [1532] = 1532, - [1533] = 1533, - [1534] = 1529, + [1533] = 1530, + [1534] = 1519, [1535] = 1535, - [1536] = 1536, + [1536] = 1531, [1537] = 1537, - [1538] = 1382, + [1538] = 1538, [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1540, + [1540] = 1525, + [1541] = 1535, + [1542] = 1528, + [1543] = 1543, [1544] = 1544, - [1545] = 1528, + [1545] = 1544, [1546] = 1546, - [1547] = 1544, - [1548] = 1542, - [1549] = 1549, - [1550] = 1550, - [1551] = 1551, - [1552] = 1537, - [1553] = 1553, - [1554] = 1533, - [1555] = 1551, - [1556] = 1556, - [1557] = 1527, - [1558] = 1558, + [1547] = 1371, + [1548] = 1532, + [1549] = 1517, + [1550] = 1543, + [1551] = 1521, + [1552] = 1552, + [1553] = 1537, + [1554] = 1554, + [1555] = 1552, + [1556] = 1539, + [1557] = 1554, + [1558] = 1538, [1559] = 1559, - [1560] = 1546, - [1561] = 1535, - [1562] = 1541, - [1563] = 1556, - [1564] = 1553, - [1565] = 1550, - [1566] = 1536, - [1567] = 1532, - [1568] = 1558, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1379, + [1566] = 1566, + [1567] = 1561, + [1568] = 1568, [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1572, + [1572] = 1371, [1573] = 1573, [1574] = 1574, [1575] = 1575, - [1576] = 1382, + [1576] = 1575, [1577] = 1577, [1578] = 1578, [1579] = 1579, - [1580] = 1386, - [1581] = 1581, - [1582] = 1582, + [1580] = 1580, + [1581] = 1561, + [1582] = 1571, [1583] = 1583, [1584] = 1584, [1585] = 1585, [1586] = 1586, - [1587] = 1574, + [1587] = 1587, [1588] = 1588, [1589] = 1589, - [1590] = 1590, + [1590] = 1584, [1591] = 1591, [1592] = 1592, - [1593] = 1581, - [1594] = 1594, - [1595] = 1594, - [1596] = 1588, + [1593] = 1593, + [1594] = 1562, + [1595] = 1588, + [1596] = 1596, [1597] = 1597, - [1598] = 1598, - [1599] = 1599, + [1598] = 1570, + [1599] = 1560, [1600] = 1600, [1601] = 1601, - [1602] = 1569, + [1602] = 1602, [1603] = 1603, - [1604] = 1578, + [1604] = 1601, [1605] = 1605, - [1606] = 1586, - [1607] = 1605, + [1606] = 1606, + [1607] = 1607, [1608] = 1608, - [1609] = 1569, + [1609] = 1609, [1610] = 1610, - [1611] = 1611, + [1611] = 1610, [1612] = 1612, [1613] = 1613, [1614] = 1614, - [1615] = 1614, + [1615] = 1615, [1616] = 1616, - [1617] = 1617, + [1617] = 1371, [1618] = 1618, [1619] = 1619, [1620] = 1620, - [1621] = 1386, + [1621] = 1621, [1622] = 1622, [1623] = 1623, - [1624] = 1624, - [1625] = 1625, - [1626] = 1626, + [1624] = 1608, + [1625] = 1612, + [1626] = 1606, [1627] = 1627, [1628] = 1628, - [1629] = 1622, + [1629] = 1629, [1630] = 1630, - [1631] = 1625, + [1631] = 1616, [1632] = 1632, [1633] = 1633, - [1634] = 1617, - [1635] = 1630, + [1634] = 1628, + [1635] = 1602, [1636] = 1636, - [1637] = 1382, - [1638] = 1638, - [1639] = 1639, - [1640] = 1626, - [1641] = 1638, - [1642] = 1619, - [1643] = 1643, - [1644] = 1632, + [1637] = 1637, + [1638] = 1637, + [1639] = 1627, + [1640] = 1379, + [1641] = 1607, + [1642] = 1642, + [1643] = 1629, + [1644] = 1619, [1645] = 1645, [1646] = 1646, [1647] = 1647, - [1648] = 1633, - [1649] = 1612, + [1648] = 1648, + [1649] = 1649, [1650] = 1650, - [1651] = 1616, + [1651] = 1651, [1652] = 1652, [1653] = 1653, - [1654] = 1636, + [1654] = 1654, [1655] = 1655, [1656] = 1656, [1657] = 1657, @@ -5566,262 +5216,262 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1661] = 1661, [1662] = 1662, [1663] = 1663, - [1664] = 1664, - [1665] = 1665, + [1664] = 1662, + [1665] = 1379, [1666] = 1666, - [1667] = 1667, - [1668] = 1668, + [1667] = 1649, + [1668] = 1650, [1669] = 1669, [1670] = 1670, - [1671] = 1671, + [1671] = 1663, [1672] = 1672, [1673] = 1673, [1674] = 1674, - [1675] = 1675, + [1675] = 1655, [1676] = 1676, [1677] = 1677, - [1678] = 1678, - [1679] = 1679, + [1678] = 1669, + [1679] = 1676, [1680] = 1680, - [1681] = 1681, - [1682] = 1682, - [1683] = 1666, - [1684] = 1675, + [1681] = 1660, + [1682] = 1651, + [1683] = 1652, + [1684] = 1684, [1685] = 1685, - [1686] = 1658, + [1686] = 1686, [1687] = 1687, [1688] = 1688, - [1689] = 1661, - [1690] = 1690, - [1691] = 1691, + [1689] = 1689, + [1690] = 1686, + [1691] = 1647, [1692] = 1692, [1693] = 1693, [1694] = 1694, - [1695] = 1386, - [1696] = 1691, + [1695] = 1666, + [1696] = 1685, [1697] = 1697, - [1698] = 1676, - [1699] = 1699, - [1700] = 1697, + [1698] = 1698, + [1699] = 1689, + [1700] = 1660, [1701] = 1701, [1702] = 1702, - [1703] = 1701, - [1704] = 1704, - [1705] = 1677, - [1706] = 1662, - [1707] = 1707, - [1708] = 1702, - [1709] = 1709, - [1710] = 1688, + [1703] = 1703, + [1704] = 1684, + [1705] = 1688, + [1706] = 1706, + [1707] = 1648, + [1708] = 1692, + [1709] = 1694, + [1710] = 1653, [1711] = 1711, [1712] = 1712, - [1713] = 1713, - [1714] = 1663, - [1715] = 1715, - [1716] = 1668, + [1713] = 1658, + [1714] = 1714, + [1715] = 1703, + [1716] = 1702, [1717] = 1712, - [1718] = 1692, - [1719] = 1682, - [1720] = 1720, - [1721] = 1721, - [1722] = 1667, - [1723] = 1669, + [1718] = 1693, + [1719] = 1719, + [1720] = 1654, + [1721] = 1711, + [1722] = 1702, + [1723] = 1701, [1724] = 1724, - [1725] = 1678, - [1726] = 1707, - [1727] = 1727, - [1728] = 1728, - [1729] = 1693, - [1730] = 1727, - [1731] = 1709, - [1732] = 1715, - [1733] = 1674, - [1734] = 1734, - [1735] = 1659, - [1736] = 1734, + [1725] = 1677, + [1726] = 1719, + [1727] = 1673, + [1728] = 1672, + [1729] = 1680, + [1730] = 1730, + [1731] = 1706, + [1732] = 1670, + [1733] = 1698, + [1734] = 1666, + [1735] = 1657, + [1736] = 1656, [1737] = 1737, - [1738] = 1704, - [1739] = 1669, - [1740] = 1660, - [1741] = 1724, - [1742] = 1720, - [1743] = 1713, - [1744] = 1679, - [1745] = 1721, - [1746] = 1693, - [1747] = 1664, - [1748] = 1680, - [1749] = 1720, - [1750] = 1665, - [1751] = 1670, - [1752] = 1690, - [1753] = 1681, - [1754] = 1754, + [1738] = 1724, + [1739] = 1697, + [1740] = 1740, + [1741] = 1741, + [1742] = 1742, + [1743] = 1743, + [1744] = 1159, + [1745] = 1745, + [1746] = 1746, + [1747] = 1160, + [1748] = 1748, + [1749] = 1749, + [1750] = 1750, + [1751] = 1751, + [1752] = 1752, + [1753] = 1753, + [1754] = 1745, [1755] = 1755, [1756] = 1756, - [1757] = 1164, - [1758] = 1169, + [1757] = 1757, + [1758] = 1741, [1759] = 1759, - [1760] = 1759, - [1761] = 1754, - [1762] = 1762, - [1763] = 1763, + [1760] = 1743, + [1761] = 1741, + [1762] = 1745, + [1763] = 1759, [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, - [1768] = 1768, - [1769] = 1769, + [1765] = 1748, + [1766] = 1167, + [1767] = 1173, + [1768] = 1753, + [1769] = 1755, [1770] = 1770, [1771] = 1771, - [1772] = 1772, + [1772] = 1770, [1773] = 1773, [1774] = 1774, [1775] = 1775, - [1776] = 1776, - [1777] = 1768, - [1778] = 1778, + [1776] = 1172, + [1777] = 1777, + [1778] = 1162, [1779] = 1779, - [1780] = 1780, + [1780] = 1756, [1781] = 1781, [1782] = 1782, [1783] = 1783, - [1784] = 1779, - [1785] = 1785, + [1784] = 1784, + [1785] = 1756, [1786] = 1786, [1787] = 1759, - [1788] = 1783, + [1788] = 1742, [1789] = 1789, - [1790] = 1782, - [1791] = 1782, + [1790] = 1764, + [1791] = 1791, [1792] = 1792, - [1793] = 1188, - [1794] = 1172, + [1793] = 1793, + [1794] = 1794, [1795] = 1795, - [1796] = 1778, + [1796] = 1796, [1797] = 1797, [1798] = 1798, [1799] = 1799, - [1800] = 1755, - [1801] = 1755, - [1802] = 1770, - [1803] = 1798, - [1804] = 1770, - [1805] = 1792, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1797, + [1804] = 1804, + [1805] = 1805, [1806] = 1806, - [1807] = 1174, - [1808] = 1184, - [1809] = 1809, - [1810] = 1810, + [1807] = 1807, + [1808] = 1808, + [1809] = 1802, + [1810] = 1797, [1811] = 1811, [1812] = 1812, - [1813] = 1813, + [1813] = 1804, [1814] = 1814, [1815] = 1815, - [1816] = 1816, - [1817] = 1817, - [1818] = 1814, + [1816] = 1805, + [1817] = 1805, + [1818] = 1818, [1819] = 1819, [1820] = 1820, [1821] = 1821, [1822] = 1822, [1823] = 1823, - [1824] = 1822, + [1824] = 1821, [1825] = 1825, [1826] = 1826, [1827] = 1827, [1828] = 1828, - [1829] = 1829, + [1829] = 1818, [1830] = 1830, [1831] = 1831, [1832] = 1832, [1833] = 1833, [1834] = 1834, [1835] = 1835, - [1836] = 1811, - [1837] = 1810, + [1836] = 1836, + [1837] = 1837, [1838] = 1838, - [1839] = 1839, + [1839] = 1835, [1840] = 1840, - [1841] = 1835, - [1842] = 1842, - [1843] = 1843, - [1844] = 1833, - [1845] = 1831, - [1846] = 1846, - [1847] = 1847, + [1841] = 1841, + [1842] = 1838, + [1843] = 1799, + [1844] = 1844, + [1845] = 1845, + [1846] = 1822, + [1847] = 1823, [1848] = 1848, - [1849] = 1849, - [1850] = 1830, - [1851] = 1823, + [1849] = 1828, + [1850] = 1850, + [1851] = 1851, [1852] = 1852, - [1853] = 1853, + [1853] = 1850, [1854] = 1854, - [1855] = 1817, - [1856] = 1856, - [1857] = 1813, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1810, - [1862] = 1832, - [1863] = 1826, + [1855] = 1845, + [1856] = 1848, + [1857] = 1830, + [1858] = 1852, + [1859] = 1832, + [1860] = 1825, + [1861] = 1807, + [1862] = 1862, + [1863] = 1863, [1864] = 1864, - [1865] = 1810, - [1866] = 1832, - [1867] = 1827, - [1868] = 1815, + [1865] = 1802, + [1866] = 1797, + [1867] = 1867, + [1868] = 1831, [1869] = 1869, [1870] = 1870, - [1871] = 1816, - [1872] = 1872, - [1873] = 1815, - [1874] = 1874, - [1875] = 1870, - [1876] = 1876, - [1877] = 1870, + [1871] = 1804, + [1872] = 1808, + [1873] = 1873, + [1874] = 1805, + [1875] = 1804, + [1876] = 1802, + [1877] = 1851, [1878] = 1878, [1879] = 1879, - [1880] = 1820, - [1881] = 1881, - [1882] = 1876, + [1880] = 1880, + [1881] = 1836, + [1882] = 1882, [1883] = 1883, - [1884] = 1828, + [1884] = 1833, [1885] = 1885, - [1886] = 1819, + [1886] = 1840, [1887] = 1887, - [1888] = 1888, - [1889] = 1879, + [1888] = 1863, + [1889] = 1834, [1890] = 1890, - [1891] = 1842, + [1891] = 1891, [1892] = 1892, [1893] = 1893, [1894] = 1894, - [1895] = 1821, - [1896] = 1832, - [1897] = 1812, - [1898] = 1834, - [1899] = 1815, - [1900] = 1870, - [1901] = 1860, - [1902] = 1902, - [1903] = 1829, + [1895] = 1895, + [1896] = 1896, + [1897] = 1897, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 584, + [1902] = 1894, + [1903] = 1891, [1904] = 1904, - [1905] = 1905, + [1905] = 1895, [1906] = 1906, - [1907] = 1907, + [1907] = 1895, [1908] = 1908, - [1909] = 1909, + [1909] = 1894, [1910] = 1910, [1911] = 1911, [1912] = 1912, - [1913] = 1908, + [1913] = 1913, [1914] = 1914, [1915] = 1915, - [1916] = 1912, + [1916] = 1916, [1917] = 1917, [1918] = 1918, - [1919] = 1908, + [1919] = 1919, [1920] = 1920, [1921] = 1921, [1922] = 1922, @@ -5843,19 +5493,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1938] = 1938, [1939] = 1939, [1940] = 1940, - [1941] = 1933, - [1942] = 1942, + [1941] = 1941, + [1942] = 1894, [1943] = 1943, [1944] = 1944, - [1945] = 1942, - [1946] = 596, - [1947] = 1917, - [1948] = 1918, - [1949] = 1949, + [1945] = 1940, + [1946] = 1946, + [1947] = 1947, + [1948] = 1948, + [1949] = 1895, [1950] = 1950, - [1951] = 1925, + [1951] = 1951, [1952] = 1952, - [1953] = 1926, + [1953] = 1953, [1954] = 1954, [1955] = 1955, [1956] = 1956, @@ -5864,9 +5514,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1959] = 1959, [1960] = 1960, [1961] = 1961, - [1962] = 1957, - [1963] = 1963, - [1964] = 1964, + [1962] = 1962, + [1963] = 1915, + [1964] = 1961, [1965] = 1965, [1966] = 1966, [1967] = 1967, @@ -5876,400 +5526,400 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1971] = 1971, [1972] = 1972, [1973] = 1973, - [1974] = 1974, - [1975] = 1935, - [1976] = 588, - [1977] = 1977, + [1974] = 1956, + [1975] = 1925, + [1976] = 1976, + [1977] = 1899, [1978] = 1978, [1979] = 1979, [1980] = 1980, [1981] = 1981, [1982] = 1982, [1983] = 1983, - [1984] = 1980, + [1984] = 1984, [1985] = 1985, [1986] = 1986, [1987] = 1987, - [1988] = 1939, - [1989] = 1907, - [1990] = 1990, - [1991] = 1991, + [1988] = 1988, + [1989] = 1989, + [1990] = 1924, + [1991] = 1926, [1992] = 1992, - [1993] = 1993, + [1993] = 1973, [1994] = 1994, - [1995] = 1979, - [1996] = 1954, - [1997] = 1954, + [1995] = 1995, + [1996] = 1996, + [1997] = 1927, [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 2001, - [2002] = 1935, - [2003] = 2003, + [1999] = 1892, + [2000] = 1936, + [2001] = 1941, + [2002] = 2002, + [2003] = 1961, [2004] = 2004, - [2005] = 2005, + [2005] = 1917, [2006] = 2006, - [2007] = 1936, - [2008] = 2008, + [2007] = 2007, + [2008] = 1895, [2009] = 2009, [2010] = 2010, - [2011] = 2011, + [2011] = 1919, [2012] = 2012, - [2013] = 1994, - [2014] = 2014, - [2015] = 1990, - [2016] = 2016, - [2017] = 2017, - [2018] = 1935, - [2019] = 2019, + [2013] = 2013, + [2014] = 1995, + [2015] = 2015, + [2016] = 1894, + [2017] = 1898, + [2018] = 2018, + [2019] = 1895, [2020] = 2020, [2021] = 2021, - [2022] = 2022, - [2023] = 1991, - [2024] = 2024, + [2022] = 586, + [2023] = 1894, + [2024] = 2002, [2025] = 2025, [2026] = 2026, [2027] = 2027, [2028] = 2028, - [2029] = 2028, - [2030] = 2030, + [2029] = 2020, + [2030] = 2007, [2031] = 2031, [2032] = 2032, - [2033] = 1959, + [2033] = 2033, [2034] = 2034, - [2035] = 2004, + [2035] = 2035, [2036] = 2036, [2037] = 2037, [2038] = 2038, [2039] = 2039, [2040] = 2040, - [2041] = 2005, + [2041] = 2041, [2042] = 2042, - [2043] = 2043, - [2044] = 1922, - [2045] = 2045, + [2043] = 1920, + [2044] = 2044, + [2045] = 2031, [2046] = 2046, - [2047] = 1908, + [2047] = 2047, [2048] = 2048, [2049] = 2049, [2050] = 2050, - [2051] = 1912, - [2052] = 1912, - [2053] = 2043, + [2051] = 2051, + [2052] = 2025, + [2053] = 2053, [2054] = 2054, [2055] = 2055, [2056] = 2056, - [2057] = 2057, + [2057] = 1922, [2058] = 2058, - [2059] = 2049, - [2060] = 2060, + [2059] = 2059, + [2060] = 2032, [2061] = 2061, [2062] = 2062, - [2063] = 2063, + [2063] = 2037, [2064] = 2064, [2065] = 2065, - [2066] = 2066, - [2067] = 2067, - [2068] = 2068, + [2066] = 2040, + [2067] = 2054, + [2068] = 2051, [2069] = 2069, [2070] = 2070, - [2071] = 1961, + [2071] = 1987, [2072] = 2072, [2073] = 2073, [2074] = 2074, [2075] = 2075, - [2076] = 1908, - [2077] = 2077, + [2076] = 2076, + [2077] = 1944, [2078] = 2078, - [2079] = 1924, - [2080] = 2080, - [2081] = 1911, - [2082] = 2016, - [2083] = 2034, - [2084] = 2084, - [2085] = 2000, - [2086] = 2086, - [2087] = 2087, + [2079] = 2079, + [2080] = 2021, + [2081] = 2041, + [2082] = 2012, + [2083] = 2010, + [2084] = 2035, + [2085] = 2038, + [2086] = 1992, + [2087] = 2069, [2088] = 2088, [2089] = 2089, - [2090] = 2090, - [2091] = 2027, - [2092] = 2092, + [2090] = 2026, + [2091] = 2091, + [2092] = 2065, [2093] = 2093, - [2094] = 2040, - [2095] = 2095, - [2096] = 2096, - [2097] = 2001, - [2098] = 2098, - [2099] = 1992, - [2100] = 1931, - [2101] = 2061, + [2094] = 1958, + [2095] = 2061, + [2096] = 1914, + [2097] = 1985, + [2098] = 1912, + [2099] = 2099, + [2100] = 2100, + [2101] = 1955, [2102] = 2102, [2103] = 2103, - [2104] = 1912, - [2105] = 2056, - [2106] = 2020, - [2107] = 2008, - [2108] = 2108, - [2109] = 2080, - [2110] = 1912, - [2111] = 1970, - [2112] = 1908, + [2104] = 2104, + [2105] = 2105, + [2106] = 2048, + [2107] = 1984, + [2108] = 2049, + [2109] = 2109, + [2110] = 2027, + [2111] = 1920, + [2112] = 1965, [2113] = 2113, - [2114] = 1977, - [2115] = 2068, - [2116] = 2116, - [2117] = 2024, - [2118] = 2118, - [2119] = 2119, + [2114] = 2015, + [2115] = 1953, + [2116] = 2072, + [2117] = 2117, + [2118] = 1943, + [2119] = 1935, [2120] = 2120, - [2121] = 2067, - [2122] = 2086, - [2123] = 2096, + [2121] = 2121, + [2122] = 2122, + [2123] = 1934, [2124] = 2124, - [2125] = 2125, - [2126] = 2103, + [2125] = 2120, + [2126] = 2126, [2127] = 2127, [2128] = 2128, - [2129] = 2095, - [2130] = 1993, - [2131] = 2131, - [2132] = 1967, - [2133] = 2133, + [2129] = 1928, + [2130] = 2059, + [2131] = 1969, + [2132] = 1961, + [2133] = 1937, [2134] = 2134, [2135] = 2135, - [2136] = 1910, + [2136] = 2034, [2137] = 2137, - [2138] = 2138, - [2139] = 1921, + [2138] = 2053, + [2139] = 2033, [2140] = 2140, [2141] = 2141, - [2142] = 1930, + [2142] = 2142, [2143] = 2143, [2144] = 2144, - [2145] = 2140, + [2145] = 2145, [2146] = 2146, - [2147] = 2055, - [2148] = 1955, - [2149] = 2133, - [2150] = 2125, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 2150, [2151] = 2151, [2152] = 2152, - [2153] = 1982, - [2154] = 2036, - [2155] = 1915, + [2153] = 2153, + [2154] = 2151, + [2155] = 2155, [2156] = 2156, - [2157] = 1934, - [2158] = 1999, - [2159] = 2038, - [2160] = 2087, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, + [2160] = 2160, [2161] = 2161, [2162] = 2162, - [2163] = 2131, + [2163] = 2163, [2164] = 2164, [2165] = 2165, - [2166] = 2165, + [2166] = 2166, [2167] = 2167, [2168] = 2168, [2169] = 2169, [2170] = 2170, - [2171] = 2171, + [2171] = 1605, [2172] = 2172, [2173] = 2173, - [2174] = 2174, + [2174] = 2172, [2175] = 2175, [2176] = 2176, - [2177] = 2177, + [2177] = 2161, [2178] = 2178, [2179] = 2179, [2180] = 2180, [2181] = 2181, [2182] = 2182, - [2183] = 2182, + [2183] = 2175, [2184] = 2184, - [2185] = 2185, - [2186] = 2186, - [2187] = 2169, - [2188] = 2185, - [2189] = 2186, - [2190] = 2190, + [2185] = 2142, + [2186] = 2141, + [2187] = 2187, + [2188] = 2142, + [2189] = 2189, + [2190] = 2150, [2191] = 2191, [2192] = 2192, [2193] = 2193, - [2194] = 2192, - [2195] = 2178, - [2196] = 2191, + [2194] = 2194, + [2195] = 2157, + [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 2198, - [2200] = 2181, - [2201] = 2201, + [2199] = 2199, + [2200] = 2192, + [2201] = 2159, [2202] = 2202, [2203] = 2203, [2204] = 2204, [2205] = 2205, - [2206] = 2206, - [2207] = 1610, + [2206] = 2199, + [2207] = 2180, [2208] = 2208, [2209] = 2209, - [2210] = 2210, + [2210] = 2170, [2211] = 2211, - [2212] = 2212, + [2212] = 2198, [2213] = 2213, [2214] = 2214, - [2215] = 2215, - [2216] = 2216, + [2215] = 2197, + [2216] = 2194, [2217] = 2217, [2218] = 2218, [2219] = 2219, - [2220] = 2167, + [2220] = 2220, [2221] = 2221, [2222] = 2222, - [2223] = 2223, - [2224] = 2174, + [2223] = 2211, + [2224] = 2196, [2225] = 2225, [2226] = 2226, - [2227] = 2227, - [2228] = 2228, - [2229] = 2180, + [2227] = 2205, + [2228] = 2175, + [2229] = 2229, [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [2233] = 2233, + [2231] = 2187, + [2232] = 2214, + [2233] = 2153, [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 2213, + [2235] = 2220, + [2236] = 2226, + [2237] = 2229, + [2238] = 2230, + [2239] = 2239, [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2208, - [2244] = 2244, - [2245] = 2217, + [2241] = 2152, + [2242] = 2156, + [2243] = 2243, + [2244] = 2182, + [2245] = 2181, [2246] = 2246, - [2247] = 2164, + [2247] = 2247, [2248] = 2248, [2249] = 2249, [2250] = 2250, - [2251] = 2251, + [2251] = 2146, [2252] = 2252, [2253] = 2253, [2254] = 2254, [2255] = 2255, [2256] = 2256, - [2257] = 2257, - [2258] = 2190, + [2257] = 2184, + [2258] = 596, [2259] = 2259, - [2260] = 2249, + [2260] = 2178, [2261] = 2261, [2262] = 2262, - [2263] = 2204, - [2264] = 2262, - [2265] = 2265, - [2266] = 2266, - [2267] = 2205, - [2268] = 2265, - [2269] = 2254, + [2263] = 2263, + [2264] = 2221, + [2265] = 2218, + [2266] = 2263, + [2267] = 2240, + [2268] = 2268, + [2269] = 2178, [2270] = 2270, - [2271] = 2266, - [2272] = 2272, + [2271] = 2271, + [2272] = 2262, [2273] = 2273, - [2274] = 2274, - [2275] = 2170, + [2274] = 2271, + [2275] = 2275, [2276] = 2276, - [2277] = 2277, + [2277] = 2240, [2278] = 2278, - [2279] = 2279, + [2279] = 2278, [2280] = 2280, - [2281] = 2281, - [2282] = 2206, + [2281] = 2276, + [2282] = 2243, [2283] = 2283, [2284] = 2284, - [2285] = 2285, - [2286] = 2261, - [2287] = 2240, - [2288] = 2214, - [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2256, - [2294] = 2228, - [2295] = 2280, - [2296] = 2171, - [2297] = 2297, - [2298] = 2236, - [2299] = 2227, - [2300] = 967, - [2301] = 2172, - [2302] = 2270, - [2303] = 2242, - [2304] = 2205, - [2305] = 2250, - [2306] = 2306, - [2307] = 2190, - [2308] = 1029, - [2309] = 1030, - [2310] = 2177, - [2311] = 2221, - [2312] = 2226, - [2313] = 2225, - [2314] = 2173, - [2315] = 2315, - [2316] = 2212, - [2317] = 2231, - [2318] = 2179, - [2319] = 2319, - [2320] = 1070, - [2321] = 2321, - [2322] = 2209, + [2285] = 2271, + [2286] = 2164, + [2287] = 2165, + [2288] = 2254, + [2289] = 2189, + [2290] = 2247, + [2291] = 2208, + [2292] = 2217, + [2293] = 2278, + [2294] = 2294, + [2295] = 2295, + [2296] = 1135, + [2297] = 2284, + [2298] = 2298, + [2299] = 2209, + [2300] = 2249, + [2301] = 2301, + [2302] = 2302, + [2303] = 2303, + [2304] = 2304, + [2305] = 2305, + [2306] = 2166, + [2307] = 2250, + [2308] = 2149, + [2309] = 2309, + [2310] = 2310, + [2311] = 2261, + [2312] = 2173, + [2313] = 2270, + [2314] = 2314, + [2315] = 2147, + [2316] = 2259, + [2317] = 2280, + [2318] = 2276, + [2319] = 2145, + [2320] = 2252, + [2321] = 2167, + [2322] = 2295, [2323] = 2256, - [2324] = 2201, - [2325] = 2210, - [2326] = 2255, - [2327] = 2219, - [2328] = 2216, - [2329] = 2202, - [2330] = 2330, - [2331] = 2222, - [2332] = 2218, - [2333] = 2289, - [2334] = 2219, - [2335] = 2335, - [2336] = 594, - [2337] = 2184, + [2324] = 2209, + [2325] = 2273, + [2326] = 889, + [2327] = 2163, + [2328] = 2298, + [2329] = 2234, + [2330] = 2193, + [2331] = 2247, + [2332] = 2150, + [2333] = 1019, + [2334] = 2305, + [2335] = 1023, + [2336] = 2169, + [2337] = 2191, [2338] = 2248, - [2339] = 2339, - [2340] = 2175, - [2341] = 2339, + [2339] = 2162, + [2340] = 2143, + [2341] = 2148, [2342] = 2342, - [2343] = 2259, + [2343] = 2343, [2344] = 2344, - [2345] = 2278, + [2345] = 2345, [2346] = 2346, [2347] = 2347, - [2348] = 2280, - [2349] = 2315, - [2350] = 2335, - [2351] = 2230, - [2352] = 2259, - [2353] = 2278, - [2354] = 2272, - [2355] = 2223, - [2356] = 2335, - [2357] = 2330, - [2358] = 2270, + [2348] = 2348, + [2349] = 2349, + [2350] = 2350, + [2351] = 2351, + [2352] = 2352, + [2353] = 2345, + [2354] = 2349, + [2355] = 2347, + [2356] = 2345, + [2357] = 2346, + [2358] = 2344, [2359] = 2344, - [2360] = 2232, - [2361] = 2203, - [2362] = 2285, - [2363] = 2235, - [2364] = 2291, - [2365] = 2315, - [2366] = 2234, - [2367] = 2215, + [2360] = 2346, + [2361] = 2347, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 2366, + [2367] = 2367, [2368] = 2368, [2369] = 2369, [2370] = 2370, @@ -6279,249 +5929,221 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2374] = 2374, [2375] = 2375, [2376] = 2376, - [2377] = 2376, - [2378] = 2375, - [2379] = 2374, - [2380] = 2372, + [2377] = 2377, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, [2381] = 2381, - [2382] = 2370, - [2383] = 2383, - [2384] = 2370, - [2385] = 2385, - [2386] = 2372, + [2382] = 2382, + [2383] = 2349, + [2384] = 2347, + [2385] = 2346, + [2386] = 2344, [2387] = 2387, - [2388] = 2374, - [2389] = 2375, + [2388] = 2388, + [2389] = 2389, [2390] = 2390, [2391] = 2391, - [2392] = 2392, - [2393] = 2393, + [2392] = 2345, + [2393] = 2344, [2394] = 2394, [2395] = 2395, [2396] = 2396, [2397] = 2397, [2398] = 2398, [2399] = 2399, - [2400] = 2400, - [2401] = 2376, - [2402] = 2402, - [2403] = 2403, - [2404] = 2375, - [2405] = 2405, - [2406] = 2374, - [2407] = 2407, - [2408] = 2372, + [2400] = 2346, + [2401] = 2401, + [2402] = 2397, + [2403] = 2347, + [2404] = 2368, + [2405] = 2351, + [2406] = 2348, + [2407] = 2352, + [2408] = 2343, [2409] = 2409, [2410] = 2410, [2411] = 2411, [2412] = 2412, - [2413] = 2396, - [2414] = 2370, + [2413] = 2413, + [2414] = 2374, [2415] = 2415, [2416] = 2416, [2417] = 2417, - [2418] = 2418, + [2418] = 2415, [2419] = 2419, [2420] = 2420, - [2421] = 2421, + [2421] = 2420, [2422] = 2422, - [2423] = 2369, + [2423] = 2423, [2424] = 2424, [2425] = 2425, - [2426] = 2426, - [2427] = 598, + [2426] = 2378, + [2427] = 2427, [2428] = 2428, - [2429] = 2429, - [2430] = 2415, - [2431] = 2417, + [2429] = 2342, + [2430] = 2430, + [2431] = 2431, [2432] = 2432, [2433] = 2433, [2434] = 2434, - [2435] = 2435, + [2435] = 2395, [2436] = 2436, [2437] = 2437, - [2438] = 2438, + [2438] = 2380, [2439] = 2439, - [2440] = 2440, + [2440] = 2422, [2441] = 2441, [2442] = 2442, [2443] = 2443, - [2444] = 2416, + [2444] = 2444, [2445] = 2445, [2446] = 2446, - [2447] = 2447, + [2447] = 2366, [2448] = 2448, - [2449] = 2449, + [2449] = 2349, [2450] = 2450, - [2451] = 2385, + [2451] = 2390, [2452] = 2452, - [2453] = 2453, - [2454] = 2449, - [2455] = 2440, - [2456] = 2370, - [2457] = 2457, - [2458] = 2458, - [2459] = 2410, - [2460] = 2383, - [2461] = 2461, - [2462] = 2462, - [2463] = 2421, - [2464] = 2387, - [2465] = 2387, - [2466] = 2466, + [2453] = 2450, + [2454] = 2452, + [2455] = 2347, + [2456] = 2401, + [2457] = 2346, + [2458] = 2389, + [2459] = 2459, + [2460] = 2460, + [2461] = 2344, + [2462] = 2388, + [2463] = 2463, + [2464] = 2363, + [2465] = 2465, + [2466] = 2350, [2467] = 2467, - [2468] = 2468, - [2469] = 2385, - [2470] = 2432, + [2468] = 2376, + [2469] = 2469, + [2470] = 2430, [2471] = 2471, - [2472] = 2472, - [2473] = 2473, - [2474] = 2474, + [2472] = 2390, + [2473] = 2345, + [2474] = 2345, [2475] = 2475, [2476] = 2476, - [2477] = 2390, + [2477] = 2477, [2478] = 2478, - [2479] = 2466, + [2479] = 2479, [2480] = 2480, - [2481] = 2418, + [2481] = 2349, [2482] = 2482, - [2483] = 2411, - [2484] = 2428, + [2483] = 2475, + [2484] = 2484, [2485] = 2485, - [2486] = 2447, + [2486] = 2486, [2487] = 2487, - [2488] = 2419, - [2489] = 2390, - [2490] = 2480, - [2491] = 2491, + [2488] = 2488, + [2489] = 2433, + [2490] = 2424, + [2491] = 2434, [2492] = 2492, - [2493] = 2493, + [2493] = 2446, [2494] = 2494, - [2495] = 2495, - [2496] = 2445, - [2497] = 2497, - [2498] = 2443, - [2499] = 2499, - [2500] = 2376, + [2495] = 2445, + [2496] = 2496, + [2497] = 2442, + [2498] = 2498, + [2499] = 2379, + [2500] = 2500, [2501] = 2501, - [2502] = 2502, - [2503] = 2503, - [2504] = 2504, + [2502] = 2441, + [2503] = 2388, + [2504] = 2389, [2505] = 2505, - [2506] = 2433, - [2507] = 2424, - [2508] = 2375, - [2509] = 2509, - [2510] = 2374, - [2511] = 2372, - [2512] = 2434, - [2513] = 2435, - [2514] = 2407, + [2506] = 2506, + [2507] = 2507, + [2508] = 2508, + [2509] = 2377, + [2510] = 2510, + [2511] = 2511, + [2512] = 2512, + [2513] = 2513, + [2514] = 2477, [2515] = 2515, - [2516] = 2516, - [2517] = 2517, + [2516] = 2439, + [2517] = 2380, [2518] = 2518, - [2519] = 2436, - [2520] = 2520, - [2521] = 2405, - [2522] = 2502, - [2523] = 2523, - [2524] = 2505, - [2525] = 2452, - [2526] = 2453, - [2527] = 2446, - [2528] = 2528, - [2529] = 2396, + [2519] = 2388, + [2520] = 2389, + [2521] = 2521, + [2522] = 2522, + [2523] = 2388, + [2524] = 2389, + [2525] = 2372, + [2526] = 2388, + [2527] = 2389, + [2528] = 2437, + [2529] = 2529, [2530] = 2530, - [2531] = 2416, - [2532] = 2417, - [2533] = 2370, - [2534] = 2534, - [2535] = 2438, - [2536] = 2478, + [2531] = 2436, + [2532] = 2496, + [2533] = 2487, + [2534] = 2478, + [2535] = 2432, + [2536] = 2536, [2537] = 2537, [2538] = 2538, - [2539] = 601, - [2540] = 2534, - [2541] = 2541, - [2542] = 2542, - [2543] = 2400, - [2544] = 2399, - [2545] = 2545, - [2546] = 2437, - [2547] = 2416, - [2548] = 2417, - [2549] = 2549, - [2550] = 2398, - [2551] = 2416, - [2552] = 2417, - [2553] = 2520, - [2554] = 2416, - [2555] = 2417, - [2556] = 2491, - [2557] = 2557, - [2558] = 2426, - [2559] = 2476, - [2560] = 2503, - [2561] = 2487, - [2562] = 2475, - [2563] = 2425, - [2564] = 2448, - [2565] = 2565, - [2566] = 2566, - [2567] = 2371, - [2568] = 2457, - [2569] = 2569, - [2570] = 2570, - [2571] = 2493, - [2572] = 2572, - [2573] = 2473, - [2574] = 2574, - [2575] = 2575, - [2576] = 2576, - [2577] = 2372, - [2578] = 2494, - [2579] = 2579, - [2580] = 2495, - [2581] = 2581, - [2582] = 2374, - [2583] = 2509, - [2584] = 2394, - [2585] = 2422, - [2586] = 2586, - [2587] = 2462, - [2588] = 2485, - [2589] = 2497, - [2590] = 2403, - [2591] = 2461, - [2592] = 2503, - [2593] = 2487, - [2594] = 2581, - [2595] = 2420, - [2596] = 2596, - [2597] = 2375, - [2598] = 2598, - [2599] = 2599, - [2600] = 2376, - [2601] = 2517, - [2602] = 2397, - [2603] = 2603, - [2604] = 2391, - [2605] = 2605, - [2606] = 2606, - [2607] = 2607, - [2608] = 2515, - [2609] = 2538, - [2610] = 2610, - [2611] = 2611, - [2612] = 2492, - [2613] = 2474, - [2614] = 2392, - [2615] = 2576, - [2616] = 2610, - [2617] = 2542, - [2618] = 2504, - [2619] = 2450, + [2539] = 2413, + [2540] = 2373, + [2541] = 2431, + [2542] = 2460, + [2543] = 2543, + [2544] = 2544, + [2545] = 592, + [2546] = 2546, + [2547] = 2428, + [2548] = 2444, + [2549] = 2374, + [2550] = 2550, + [2551] = 2427, + [2552] = 2552, + [2553] = 2488, + [2554] = 2378, + [2555] = 2555, + [2556] = 2521, + [2557] = 2425, + [2558] = 2367, + [2559] = 2559, + [2560] = 2544, + [2561] = 2423, + [2562] = 2559, + [2563] = 2479, + [2564] = 2496, + [2565] = 2487, + [2566] = 585, + [2567] = 2419, + [2568] = 2568, + [2569] = 2417, + [2570] = 2396, + [2571] = 2371, + [2572] = 2412, + [2573] = 2506, + [2574] = 2370, + [2575] = 2411, + [2576] = 2416, + [2577] = 2577, + [2578] = 2410, + [2579] = 2409, + [2580] = 2381, + [2581] = 2362, + [2582] = 2443, + [2583] = 2583, + [2584] = 2369, + [2585] = 2543, + [2586] = 2399, + [2587] = 2398, + [2588] = 2364, + [2589] = 2589, + [2590] = 2394, + [2591] = 2480, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -13150,35 +12772,28 @@ 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(95); + if (lookahead == '=') ADVANCE(92); 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(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + lookahead == ' ') SKIP(8) if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 5: @@ -13275,6 +12890,33 @@ 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); @@ -13296,10 +12938,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(8) + lookahead == ' ') SKIP(9) if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); - case 9: + case 10: if (lookahead == '!') ADVANCE(32); if (lookahead == '%') ADVANCE(127); if (lookahead == '&') ADVANCE(104); @@ -13327,10 +12969,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(9) + lookahead == ' ') SKIP(10) if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); - case 10: + case 11: if (lookahead == '"') ADVANCE(149); if (lookahead == '$') ADVANCE(73); if (lookahead == '\'') ADVANCE(88); @@ -13349,14 +12991,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(10) + 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 11: + case 12: if (lookahead == '"') ADVANCE(149); if (lookahead == '$') ADVANCE(73); if (lookahead == '\'') ADVANCE(88); @@ -13374,14 +13016,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(11) + 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 12: + case 13: if (lookahead == '"') ADVANCE(149); if (lookahead == '$') ADVANCE(72); if (lookahead == '\'') ADVANCE(88); @@ -13399,14 +13041,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(12) + lookahead == ' ') SKIP(13) 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 14: if (lookahead == '"') ADVANCE(149); if (lookahead == '/') ADVANCE(24); if (lookahead == ':') ADVANCE(69); @@ -13416,24 +13058,6 @@ 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' || @@ -14326,19 +13950,17 @@ 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 == '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 == '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 == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -14348,1659 +13970,696 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym__); END_STATE(); case 2: - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 's') ADVANCE(22); - if (lookahead == 'u') ADVANCE(23); - if (lookahead == 'w') ADVANCE(24); + if (lookahead == 's') ADVANCE(19); + if (lookahead == 'w') ADVANCE(20); END_STATE(); case 3: - if (lookahead == 'l') ADVANCE(25); - if (lookahead == 'o') ADVANCE(26); - if (lookahead == 'r') ADVANCE(27); + if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'o') ADVANCE(22); + if (lookahead == 'r') ADVANCE(23); END_STATE(); case 4: - if (lookahead == 'f') ADVANCE(28); - if (lookahead == 'h') ADVANCE(29); - if (lookahead == 'o') ADVANCE(30); - if (lookahead == 'r') ADVANCE(31); + if (lookahead == 'h') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'r') ADVANCE(26); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(32); - if (lookahead == 'o') ADVANCE(33); - if (lookahead == 'y') ADVANCE(34); + if (lookahead == 'e') ADVANCE(27); + if (lookahead == 'y') ADVANCE(28); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(35); - if (lookahead == 'n') ADVANCE(36); - if (lookahead == 'x') ADVANCE(37); + if (lookahead == 'l') ADVANCE(29); + if (lookahead == 'n') ADVANCE(30); + if (lookahead == 'x') ADVANCE(31); END_STATE(); case 7: - if (lookahead == '3') ADVANCE(38); - if (lookahead == '6') ADVANCE(39); - if (lookahead == 'a') ADVANCE(40); - if (lookahead == 'e') ADVANCE(41); - if (lookahead == 'n') ADVANCE(42); - if (lookahead == 'o') ADVANCE(43); + 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 == 'l') ADVANCE(44); + 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); END_STATE(); case 9: - 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); + if (lookahead == 'e') ADVANCE(47); + if (lookahead == 'i') ADVANCE(48); + if (lookahead == 'o') ADVANCE(49); END_STATE(); case 10: - if (lookahead == 'e') ADVANCE(56); - if (lookahead == 'i') ADVANCE(57); - if (lookahead == 'o') ADVANCE(58); + if (lookahead == 'a') ADVANCE(50); + if (lookahead == 'e') ADVANCE(51); + if (lookahead == 'o') ADVANCE(52); + if (lookahead == 'u') ADVANCE(53); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(59); - if (lookahead == 'e') ADVANCE(60); - if (lookahead == 'o') ADVANCE(61); - if (lookahead == 'u') ADVANCE(62); + if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'u') ADVANCE(55); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(63); + if (lookahead == 'e') ADVANCE(56); END_STATE(); case 13: - if (lookahead == 'a') ADVANCE(64); - if (lookahead == 'r') ADVANCE(65); - if (lookahead == 'u') ADVANCE(66); + if (lookahead == 'e') ADVANCE(57); + if (lookahead == 't') ADVANCE(58); + if (lookahead == 'u') ADVANCE(59); END_STATE(); case 14: - if (lookahead == 'e') ADVANCE(67); + if (lookahead == 'r') ADVANCE(60); + if (lookahead == 't') ADVANCE(61); + if (lookahead == 'y') ADVANCE(62); END_STATE(); case 15: - if (lookahead == 'e') ADVANCE(68); - if (lookahead == 'h') ADVANCE(69); - if (lookahead == 't') ADVANCE(70); - if (lookahead == 'u') ADVANCE(71); + 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); END_STATE(); case 16: - 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); + if (lookahead == 'i') ADVANCE(69); END_STATE(); case 17: - 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); + if (lookahead == 'h') ADVANCE(70); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(83); + if (lookahead == 'i') ADVANCE(71); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(84); - if (lookahead == 'h') ADVANCE(85); - if (lookahead == 'i') ADVANCE(86); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(72); END_STATE(); case 20: - if (lookahead == 'i') ADVANCE(87); + if (lookahead == 'a') ADVANCE(73); END_STATE(); case 21: - if (lookahead == 'l') ADVANCE(88); + if (lookahead == 'o') ADVANCE(74); END_STATE(); case 22: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(89); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 23: - if (lookahead == 't') ADVANCE(90); + if (lookahead == 'e') ADVANCE(76); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(91); + if (lookahead == 'a') ADVANCE(77); END_STATE(); case 25: - if (lookahead == 'o') ADVANCE(92); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 26: - if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'a') ADVANCE(79); END_STATE(); case 27: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'f') ADVANCE(80); END_STATE(); case 28: - if (lookahead == 'g') ADVANCE(95); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 29: - if (lookahead == 'a') ADVANCE(96); + if (lookahead == 's') ADVANCE(82); END_STATE(); case 30: - if (lookahead == 'l') ADVANCE(97); - if (lookahead == 'n') ADVANCE(98); + if (lookahead == 'u') ADVANCE(83); END_STATE(); case 31: - if (lookahead == 'a') ADVANCE(99); + if (lookahead == 'p') ADVANCE(84); + if (lookahead == 't') ADVANCE(85); END_STATE(); case 32: - if (lookahead == 'f') ADVANCE(100); - if (lookahead == 'n') ADVANCE(101); - if (lookahead == 'p') ADVANCE(102); - if (lookahead == 'r') ADVANCE(103); + if (lookahead == '2') ADVANCE(86); END_STATE(); case 33: - if (lookahead == 'c') ADVANCE(104); + if (lookahead == '4') ADVANCE(87); END_STATE(); case 34: - if (lookahead == 'n') ADVANCE(105); + if (lookahead == 'l') ADVANCE(88); END_STATE(); case 35: - if (lookahead == 's') ADVANCE(106); + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 36: - if (lookahead == 'u') ADVANCE(107); + if (lookahead == 'r') ADVANCE(89); END_STATE(); case 37: - if (lookahead == 'p') ADVANCE(108); - if (lookahead == 't') ADVANCE(109); + if (lookahead == '2') ADVANCE(90); + if (lookahead == '6') ADVANCE(91); END_STATE(); case 38: - if (lookahead == '2') ADVANCE(110); + if (lookahead == '2') ADVANCE(92); END_STATE(); case 39: - if (lookahead == '4') ADVANCE(111); + if (lookahead == '4') ADVANCE(93); END_STATE(); case 40: - if (lookahead == 'l') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(113); + if (lookahead == 'e') ADVANCE(94); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_fn); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 43: - if (lookahead == 'r') ADVANCE(114); + if (lookahead == 'p') ADVANCE(95); END_STATE(); case 44: - if (lookahead == 'o') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 45: - if (lookahead == '2') ADVANCE(116); - if (lookahead == '6') ADVANCE(117); + if (lookahead == 'i') ADVANCE(96); END_STATE(); case 46: - if (lookahead == '2') ADVANCE(118); + if (lookahead == 'e') ADVANCE(97); END_STATE(); case 47: - if (lookahead == '4') ADVANCE(119); + if (lookahead == 't') ADVANCE(98); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_i8); + if (lookahead == 'f') ADVANCE(99); + if (lookahead == 't') ADVANCE(100); END_STATE(); case 49: - if (lookahead == 'e') ADVANCE(120); + if (lookahead == 'o') ADVANCE(101); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 51: - if (lookahead == 'n') ADVANCE(121); + if (lookahead == 't') ADVANCE(103); END_STATE(); case 52: - if (lookahead == 'p') ADVANCE(122); + if (lookahead == 'd') ADVANCE(104); + if (lookahead == 'v') ADVANCE(105); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'l') ADVANCE(123); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(124); + if (lookahead == 't') ADVANCE(107); END_STATE(); case 55: - if (lookahead == 'e') ADVANCE(125); + if (lookahead == 'b') ADVANCE(108); END_STATE(); case 56: - if (lookahead == 't') ADVANCE(126); + if (lookahead == 'f') ADVANCE(109); + if (lookahead == 't') ADVANCE(110); END_STATE(); case 57: - if (lookahead == 'f') ADVANCE(127); - if (lookahead == 'n') ADVANCE(128); - if (lookahead == 't') ADVANCE(129); + if (lookahead == 'l') ADVANCE(111); END_STATE(); case 58: - if (lookahead == 'o') ADVANCE(130); + if (lookahead == 'a') ADVANCE(112); + if (lookahead == 'm') ADVANCE(113); + if (lookahead == 'r') ADVANCE(114); END_STATE(); case 59: - if (lookahead == 'c') ADVANCE(131); - if (lookahead == 't') ADVANCE(132); + if (lookahead == 'p') ADVANCE(115); END_STATE(); case 60: - if (lookahead == 't') ADVANCE(133); + if (lookahead == 'a') ADVANCE(116); + if (lookahead == 'u') ADVANCE(117); END_STATE(); case 61: - if (lookahead == 'd') ADVANCE(134); - if (lookahead == 'v') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 62: - if (lookahead == 's') ADVANCE(136); - if (lookahead == 't') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(118); END_STATE(); case 63: - if (lookahead == '_') ADVANCE(138); - if (lookahead == 'n') ADVANCE(139); + if (lookahead == '2') ADVANCE(119); + if (lookahead == '6') ADVANCE(120); END_STATE(); case 64: - if (lookahead == 'n') ADVANCE(140); - if (lookahead == 't') ADVANCE(141); + if (lookahead == '2') ADVANCE(121); END_STATE(); case 65: - if (lookahead == 'o') ADVANCE(142); + if (lookahead == '4') ADVANCE(122); END_STATE(); case 66: - if (lookahead == 'b') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 67: - if (lookahead == 'c') ADVANCE(144); - if (lookahead == 'f') ADVANCE(145); - if (lookahead == 'p') ADVANCE(146); - if (lookahead == 't') ADVANCE(147); + if (lookahead == 'i') ADVANCE(123); + if (lookahead == 's') ADVANCE(124); END_STATE(); case 68: - if (lookahead == 'l') ADVANCE(148); + if (lookahead == 'e') ADVANCE(125); + if (lookahead == 'i') ADVANCE(126); END_STATE(); case 69: - if (lookahead == 'o') ADVANCE(149); + if (lookahead == 's') ADVANCE(127); END_STATE(); case 70: - if (lookahead == 'a') ADVANCE(150); - if (lookahead == 'm') ADVANCE(151); - if (lookahead == 'r') ADVANCE(152); + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'i') ADVANCE(129); END_STATE(); case 71: - if (lookahead == 'p') ADVANCE(153); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 72: - if (lookahead == 'r') ADVANCE(154); + if (lookahead == 'n') ADVANCE(131); END_STATE(); case 73: - if (lookahead == 's') ADVANCE(155); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(156); - if (lookahead == 'u') ADVANCE(157); + if (lookahead == 'c') ADVANCE(133); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_tt); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(158); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 77: - if (lookahead == '2') ADVANCE(159); - if (lookahead == '6') ADVANCE(160); + if (lookahead == 'r') ADVANCE(136); END_STATE(); case 78: - if (lookahead == '2') ADVANCE(161); + if (lookahead == 's') ADVANCE(137); + if (lookahead == 't') ADVANCE(138); END_STATE(); case 79: - if (lookahead == '4') ADVANCE(162); + if (lookahead == 't') ADVANCE(139); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == 'a') ADVANCE(140); END_STATE(); case 81: - if (lookahead == 'i') ADVANCE(163); - if (lookahead == 's') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(165); - if (lookahead == 'i') ADVANCE(166); + if (lookahead == 'e') ADVANCE(141); END_STATE(); case 83: - if (lookahead == 's') ADVANCE(167); + if (lookahead == 'm') ADVANCE(142); END_STATE(); case 84: - if (lookahead == 'r') ADVANCE(168); + if (lookahead == 'r') ADVANCE(143); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(169); - if (lookahead == 'i') ADVANCE(170); + if (lookahead == 'e') ADVANCE(144); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 88: - if (lookahead == 'o') ADVANCE(173); + if (lookahead == 's') ADVANCE(145); END_STATE(); case 89: - if (lookahead == 'n') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 90: - if (lookahead == 'o') ADVANCE(175); + if (lookahead == '8') ADVANCE(146); END_STATE(); case 91: - if (lookahead == 'i') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 92: - if (lookahead == 'c') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 93: - if (lookahead == 'l') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 94: - if (lookahead == 'a') ADVANCE(179); + if (lookahead == 'n') ADVANCE(147); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_cfg); - if (lookahead == '_') ADVANCE(180); + if (lookahead == 'l') ADVANCE(148); END_STATE(); case 96: - if (lookahead == 'r') ADVANCE(181); + if (lookahead == 'z') ADVANCE(149); END_STATE(); case 97: - if (lookahead == 'd') ADVANCE(182); + if (lookahead == 'm') ADVANCE(150); END_STATE(); case 98: - if (lookahead == 's') ADVANCE(183); - if (lookahead == 't') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 99: - if (lookahead == 't') ADVANCE(185); + if (lookahead == 'e') ADVANCE(151); END_STATE(); case 100: - if (lookahead == 'a') ADVANCE(186); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 101: - if (lookahead == 'y') ADVANCE(187); + if (lookahead == 'p') ADVANCE(153); END_STATE(); case 102: - if (lookahead == 'r') ADVANCE(188); + if (lookahead == 'c') ADVANCE(154); END_STATE(); case 103: - if (lookahead == 'i') ADVANCE(189); + if (lookahead == 'a') ADVANCE(155); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_doc); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_dyn); + if (lookahead == 'e') ADVANCE(156); END_STATE(); case 106: - if (lookahead == 'e') ADVANCE(190); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 107: - if (lookahead == 'm') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(157); END_STATE(); case 108: - if (lookahead == 'o') ADVANCE(192); - if (lookahead == 'r') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 109: - if (lookahead == 'e') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'u') ADVANCE(158); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == 'f') ADVANCE(159); END_STATE(); case 112: - if (lookahead == 's') ADVANCE(195); + if (lookahead == 't') ADVANCE(160); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(196); + if (lookahead == 't') ADVANCE(161); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == 'b') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(162); END_STATE(); case 115: - if (lookahead == 'b') ADVANCE(198); + if (lookahead == 'e') ADVANCE(163); END_STATE(); case 116: - if (lookahead == '8') ADVANCE(199); + if (lookahead == 'i') ADVANCE(164); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == 'e') ADVANCE(165); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_i32); + if (lookahead == 'e') ADVANCE(166); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_i64); + if (lookahead == '8') ADVANCE(167); END_STATE(); case 120: - if (lookahead == 'n') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 121: - if (lookahead == 'o') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 122: - if (lookahead == 'l') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 123: - if (lookahead == 'i') ADVANCE(203); + if (lookahead == 'o') ADVANCE(168); END_STATE(); case 124: - if (lookahead == 'z') ADVANCE(204); + if (lookahead == 'a') ADVANCE(169); END_STATE(); case 125: - if (lookahead == 'm') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'z') ADVANCE(170); END_STATE(); case 127: - if (lookahead == 'e') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 128: - if (lookahead == 'k') ADVANCE(207); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 129: - if (lookahead == 'e') ADVANCE(208); + if (lookahead == 'l') ADVANCE(172); END_STATE(); case 130: - if (lookahead == 'p') ADVANCE(209); + if (lookahead == 'l') ADVANCE(173); END_STATE(); case 131: - if (lookahead == 'r') ADVANCE(210); + if (lookahead == 'c') ADVANCE(174); END_STATE(); case 132: - if (lookahead == 'c') ADVANCE(211); + if (lookahead == 't') ADVANCE(175); END_STATE(); case 133: - if (lookahead == 'a') ADVANCE(212); + if (lookahead == 'k') ADVANCE(176); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 135: - if (lookahead == 'e') ADVANCE(213); + if (lookahead == 'k') ADVANCE(177); END_STATE(); case 136: - if (lookahead == 't') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 137: - ACCEPT_TOKEN(sym_mutable_specifier); + if (lookahead == 't') ADVANCE(178); END_STATE(); case 138: - 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); + if (lookahead == 'i') ADVANCE(179); END_STATE(); case 139: - if (lookahead == '_') ADVANCE(220); + if (lookahead == 'e') ADVANCE(180); END_STATE(); case 140: - if (lookahead == 'i') ADVANCE(221); + if (lookahead == 'u') ADVANCE(181); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 142: - if (lookahead == 'c') ADVANCE(223); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 144: - if (lookahead == 'u') ADVANCE(224); + if (lookahead == 'r') ADVANCE(182); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_ref); + if (lookahead == 'e') ADVANCE(183); END_STATE(); case 146: - if (lookahead == 'r') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 147: - if (lookahead == 'u') ADVANCE(226); + if (lookahead == 't') ADVANCE(184); END_STATE(); case 148: - if (lookahead == 'f') ADVANCE(227); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 149: - if (lookahead == 'u') ADVANCE(228); + if (lookahead == 'e') ADVANCE(185); END_STATE(); case 150: - if (lookahead == 't') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 151: - if (lookahead == 't') ADVANCE(230); + if (lookahead == 't') ADVANCE(186); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(231); + if (lookahead == 'r') ADVANCE(187); END_STATE(); case 153: - if (lookahead == 'e') ADVANCE(232); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 154: - if (lookahead == 'g') ADVANCE(233); + if (lookahead == 'h') ADVANCE(188); END_STATE(); case 155: - if (lookahead == 't') ADVANCE(234); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 156: - if (lookahead == 'c') ADVANCE(235); - if (lookahead == 'i') ADVANCE(236); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 157: - if (lookahead == 'e') ADVANCE(237); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 158: - if (lookahead == 'e') ADVANCE(238); + if (lookahead == 'r') ADVANCE(189); END_STATE(); case 159: - if (lookahead == '8') ADVANCE(239); + ACCEPT_TOKEN(sym_self); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'i') ADVANCE(190); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_u32); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_u64); + if (lookahead == 'c') ADVANCE(191); END_STATE(); case 163: - if (lookahead == 'o') ADVANCE(240); + if (lookahead == 'r') ADVANCE(192); END_STATE(); case 164: - if (lookahead == 'a') ADVANCE(241); + if (lookahead == 't') ADVANCE(193); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_use); - if (lookahead == 'd') ADVANCE(242); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 166: - if (lookahead == 'z') ADVANCE(243); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_vis); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 168: - if (lookahead == 'n') ADVANCE(244); + if (lookahead == 'n') ADVANCE(194); END_STATE(); case 169: - if (lookahead == 'r') ADVANCE(245); + if (lookahead == 'f') ADVANCE(195); END_STATE(); case 170: - if (lookahead == 'l') ADVANCE(246); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 171: - if (lookahead == 'd') ADVANCE(247); + if (lookahead == 'e') ADVANCE(197); END_STATE(); case 172: - if (lookahead == 'l') ADVANCE(248); + if (lookahead == 'e') ADVANCE(198); END_STATE(); case 173: - if (lookahead == 'w') ADVANCE(249); + if (lookahead == 'd') ADVANCE(199); END_STATE(); case 174: - if (lookahead == 'c') ADVANCE(250); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 175: - if (lookahead == 'm') ADVANCE(251); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 176: - if (lookahead == 't') ADVANCE(252); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 177: - if (lookahead == 'k') ADVANCE(253); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_bool); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 179: - if (lookahead == 'k') ADVANCE(254); + if (lookahead == 'n') ADVANCE(200); END_STATE(); case 180: - if (lookahead == 'a') ADVANCE(255); + ACCEPT_TOKEN(sym_crate); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_char); + if (lookahead == 'l') ADVANCE(201); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_cold); + if (lookahead == 'n') ADVANCE(202); END_STATE(); case 183: - if (lookahead == 't') ADVANCE(256); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 184: - if (lookahead == 'i') ADVANCE(257); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 185: - if (lookahead == 'e') ADVANCE(258); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 186: - if (lookahead == 'u') ADVANCE(259); + if (lookahead == 'i') ADVANCE(203); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_deny); + if (lookahead == 'a') ADVANCE(204); END_STATE(); case 188: - if (lookahead == 'e') ADVANCE(260); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 189: - if (lookahead == 'v') ADVANCE(261); + if (lookahead == 'n') ADVANCE(205); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'c') ADVANCE(206); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 't') ADVANCE(207); END_STATE(); case 192: - if (lookahead == 'r') ADVANCE(262); + ACCEPT_TOKEN(sym_super); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_expr); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 194: - if (lookahead == 'r') ADVANCE(263); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 195: - if (lookahead == 'e') ADVANCE(264); + if (lookahead == 'e') ADVANCE(208); END_STATE(); case 196: - if (lookahead == 'u') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 197: - if (lookahead == 'i') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 198: - if (lookahead == 'a') ADVANCE(267); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_i128); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 200: - if (lookahead == 't') ADVANCE(268); + if (lookahead == 'u') ADVANCE(209); END_STATE(); case 201: - if (lookahead == 'r') ADVANCE(269); + if (lookahead == 't') ADVANCE(210); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_impl); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 203: - if (lookahead == 'n') ADVANCE(270); + if (lookahead == 'm') ADVANCE(211); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(271); + if (lookahead == 'l') ADVANCE(212); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_item); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 206: - if (lookahead == 't') ADVANCE(272); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_link); - if (lookahead == '_') ADVANCE(273); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 208: - if (lookahead == 'r') ADVANCE(274); + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == 'e') ADVANCE(213); END_STATE(); case 210: - if (lookahead == 'o') ADVANCE(275); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 211: - if (lookahead == 'h') ADVANCE(276); + if (lookahead == 'e') ADVANCE(214); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_meta); + ACCEPT_TOKEN(anon_sym_literal); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_move); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 214: - if (lookahead == '_') ADVANCE(277); - END_STATE(); - case 215: - if (lookahead == 'u') ADVANCE(278); - END_STATE(); - case 216: - if (lookahead == 'm') ADVANCE(279); - END_STATE(); - case 217: - if (lookahead == 'i') ADVANCE(280); - END_STATE(); - case 218: - if (lookahead == 'a') ADVANCE(281); - END_STATE(); - case 219: - if (lookahead == 't') ADVANCE(282); - END_STATE(); - case 220: - if (lookahead == 'e') ADVANCE(283); - END_STATE(); - case 221: - if (lookahead == 'c') ADVANCE(284); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_path); - END_STATE(); - case 223: - if (lookahead == '_') ADVANCE(285); - END_STATE(); - case 224: - if (lookahead == 'r') ADVANCE(286); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_repr); - END_STATE(); - case 226: - if (lookahead == 'r') ADVANCE(287); - END_STATE(); - case 227: - ACCEPT_TOKEN(sym_self); - END_STATE(); - case 228: - if (lookahead == 'l') ADVANCE(288); - END_STATE(); - case 229: - if (lookahead == 'i') ADVANCE(289); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_stmt); - END_STATE(); - case 231: - if (lookahead == 'c') ADVANCE(290); - END_STATE(); - case 232: - if (lookahead == 'r') ADVANCE(291); - END_STATE(); - case 233: - if (lookahead == 'e') ADVANCE(292); - END_STATE(); - case 234: - ACCEPT_TOKEN(anon_sym_test); - END_STATE(); - case 235: - if (lookahead == 'k') ADVANCE(293); - END_STATE(); - case 236: - if (lookahead == 't') ADVANCE(294); - END_STATE(); - case 237: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 238: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == '_') ADVANCE(295); - END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_u128); - END_STATE(); - case 240: - if (lookahead == 'n') ADVANCE(296); - END_STATE(); - case 241: - if (lookahead == 'f') ADVANCE(297); - END_STATE(); - case 242: - ACCEPT_TOKEN(anon_sym_used); - END_STATE(); - case 243: - if (lookahead == 'e') ADVANCE(298); - END_STATE(); - case 244: - ACCEPT_TOKEN(anon_sym_warn); - END_STATE(); - case 245: - if (lookahead == 'e') ADVANCE(299); - END_STATE(); - case 246: - if (lookahead == 'e') ADVANCE(300); - END_STATE(); - case 247: - if (lookahead == 'o') ADVANCE(301); - END_STATE(); - case 248: - if (lookahead == 'd') ADVANCE(302); - END_STATE(); - case 249: - ACCEPT_TOKEN(anon_sym_allow); - END_STATE(); - case 250: - ACCEPT_TOKEN(anon_sym_async); - END_STATE(); - case 251: - if (lookahead == 'a') ADVANCE(303); - END_STATE(); - case 252: - ACCEPT_TOKEN(anon_sym_await); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_block); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_break); - END_STATE(); - case 255: - if (lookahead == 't') ADVANCE(304); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_const); - END_STATE(); - case 257: - if (lookahead == 'n') ADVANCE(305); - END_STATE(); - case 258: - ACCEPT_TOKEN(sym_crate); - if (lookahead == '_') ADVANCE(306); - END_STATE(); - case 259: - if (lookahead == 'l') ADVANCE(307); - END_STATE(); - case 260: - if (lookahead == 'c') ADVANCE(308); - END_STATE(); - case 261: - if (lookahead == 'e') ADVANCE(309); - END_STATE(); - case 262: - if (lookahead == 't') ADVANCE(310); - END_STATE(); - case 263: - if (lookahead == 'n') ADVANCE(311); - END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 265: - if (lookahead == 'r') ADVANCE(312); - END_STATE(); - case 266: - if (lookahead == 'd') ADVANCE(313); - END_STATE(); - case 267: - if (lookahead == 'l') ADVANCE(314); - END_STATE(); - case 268: - ACCEPT_TOKEN(anon_sym_ident); - END_STATE(); - case 269: - if (lookahead == 'e') ADVANCE(315); - END_STATE(); - case 270: - if (lookahead == 'e') ADVANCE(316); - END_STATE(); - case 271: - ACCEPT_TOKEN(anon_sym_isize); - END_STATE(); - case 272: - if (lookahead == 'i') ADVANCE(317); - END_STATE(); - case 273: - if (lookahead == 'n') ADVANCE(318); - if (lookahead == 's') ADVANCE(319); - END_STATE(); - case 274: - if (lookahead == 'a') ADVANCE(320); - END_STATE(); - case 275: - if (lookahead == '_') ADVANCE(321); - END_STATE(); - case 276: - ACCEPT_TOKEN(anon_sym_match); - END_STATE(); - case 277: - if (lookahead == 'u') ADVANCE(322); - END_STATE(); - case 278: - if (lookahead == 'i') ADVANCE(323); - END_STATE(); - case 279: - if (lookahead == 'p') ADVANCE(324); - END_STATE(); - case 280: - if (lookahead == 'n') ADVANCE(325); - END_STATE(); - case 281: - if (lookahead == 'i') ADVANCE(326); - if (lookahead == 'n') ADVANCE(327); - END_STATE(); - case 282: - if (lookahead == 'd') ADVANCE(328); - END_STATE(); - case 283: - if (lookahead == 'x') ADVANCE(329); - END_STATE(); - case 284: - if (lookahead == '_') ADVANCE(330); - END_STATE(); - case 285: - if (lookahead == 'm') ADVANCE(331); - END_STATE(); - case 286: - if (lookahead == 's') ADVANCE(332); - END_STATE(); - case 287: - if (lookahead == 'n') ADVANCE(333); - END_STATE(); - case 288: - if (lookahead == 'd') ADVANCE(334); - END_STATE(); - case 289: - if (lookahead == 'c') ADVANCE(335); - END_STATE(); - case 290: - if (lookahead == 't') ADVANCE(336); - END_STATE(); - case 291: - ACCEPT_TOKEN(sym_super); - END_STATE(); - case 292: - if (lookahead == 't') ADVANCE(337); - END_STATE(); - case 293: - if (lookahead == '_') ADVANCE(338); - END_STATE(); - case 294: - ACCEPT_TOKEN(anon_sym_trait); - END_STATE(); - case 295: - if (lookahead == 'l') ADVANCE(339); - END_STATE(); - case 296: - ACCEPT_TOKEN(anon_sym_union); - END_STATE(); - case 297: - if (lookahead == 'e') ADVANCE(340); - END_STATE(); - case 298: - ACCEPT_TOKEN(anon_sym_usize); - END_STATE(); - case 299: - ACCEPT_TOKEN(anon_sym_where); - END_STATE(); - case 300: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 301: - if (lookahead == 'w') ADVANCE(341); - END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_yield); - END_STATE(); - case 303: - if (lookahead == 't') ADVANCE(342); - END_STATE(); - case 304: - if (lookahead == 't') ADVANCE(343); - END_STATE(); - case 305: - if (lookahead == 'u') ADVANCE(344); - END_STATE(); - case 306: - if (lookahead == 'n') ADVANCE(345); - if (lookahead == 't') ADVANCE(346); - END_STATE(); - case 307: - if (lookahead == 't') ADVANCE(347); - END_STATE(); - case 308: - if (lookahead == 'a') ADVANCE(348); - END_STATE(); - case 309: - ACCEPT_TOKEN(anon_sym_derive); - END_STATE(); - case 310: - if (lookahead == '_') ADVANCE(349); - END_STATE(); - case 311: - ACCEPT_TOKEN(anon_sym_extern); - END_STATE(); - case 312: - if (lookahead == 'e') ADVANCE(350); - END_STATE(); - case 313: - ACCEPT_TOKEN(anon_sym_forbid); - END_STATE(); - case 314: - if (lookahead == '_') ADVANCE(351); - END_STATE(); - case 315: - ACCEPT_TOKEN(anon_sym_ignore); - END_STATE(); - case 316: - ACCEPT_TOKEN(anon_sym_inline); - END_STATE(); - case 317: - if (lookahead == 'm') ADVANCE(352); - END_STATE(); - case 318: - if (lookahead == 'a') ADVANCE(353); - END_STATE(); - case 319: - if (lookahead == 'e') ADVANCE(354); - END_STATE(); - case 320: - if (lookahead == 'l') ADVANCE(355); - END_STATE(); - case 321: - if (lookahead == 'e') ADVANCE(356); - if (lookahead == 'u') ADVANCE(357); - END_STATE(); - case 322: - if (lookahead == 's') ADVANCE(358); - END_STATE(); - case 323: - if (lookahead == 'l') ADVANCE(359); - END_STATE(); - case 324: - if (lookahead == 'l') ADVANCE(360); - END_STATE(); - case 325: - if (lookahead == 'k') ADVANCE(361); - END_STATE(); - case 326: - if (lookahead == 'n') ADVANCE(362); - END_STATE(); - case 327: - if (lookahead == 'g') ADVANCE(363); - END_STATE(); - case 328: - ACCEPT_TOKEN(anon_sym_no_std); - END_STATE(); - case 329: - if (lookahead == 'h') ADVANCE(364); - END_STATE(); - case 330: - if (lookahead == 'h') ADVANCE(365); - END_STATE(); - case 331: - if (lookahead == 'a') ADVANCE(366); - END_STATE(); - case 332: - if (lookahead == 'i') ADVANCE(367); - END_STATE(); - case 333: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 334: - if (lookahead == '_') ADVANCE(368); - END_STATE(); - case 335: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 336: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 337: - if (lookahead == '_') ADVANCE(369); - END_STATE(); - case 338: - if (lookahead == 'c') ADVANCE(370); - END_STATE(); - case 339: - if (lookahead == 'e') ADVANCE(371); - END_STATE(); - case 340: - ACCEPT_TOKEN(anon_sym_unsafe); - END_STATE(); - case 341: - if (lookahead == 's') ADVANCE(372); - END_STATE(); - case 342: - if (lookahead == 'i') ADVANCE(373); - END_STATE(); - case 343: - if (lookahead == 'r') ADVANCE(374); - END_STATE(); - case 344: - if (lookahead == 'e') ADVANCE(375); - END_STATE(); - case 345: - if (lookahead == 'a') ADVANCE(376); - END_STATE(); - case 346: - if (lookahead == 'y') ADVANCE(377); - END_STATE(); - case 347: - ACCEPT_TOKEN(anon_sym_default); - END_STATE(); - case 348: - if (lookahead == 't') ADVANCE(378); - END_STATE(); - case 349: - if (lookahead == 'n') ADVANCE(379); - END_STATE(); - case 350: - ACCEPT_TOKEN(anon_sym_feature); - END_STATE(); - case 351: - if (lookahead == 'a') ADVANCE(380); - END_STATE(); - case 352: - if (lookahead == 'e') ADVANCE(381); - END_STATE(); - case 353: - if (lookahead == 'm') ADVANCE(382); - END_STATE(); - case 354: - if (lookahead == 'c') ADVANCE(383); - END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_literal); - END_STATE(); - case 356: - if (lookahead == 'x') ADVANCE(384); - END_STATE(); - case 357: - if (lookahead == 's') ADVANCE(385); - END_STATE(); - case 358: - if (lookahead == 'e') ADVANCE(386); - END_STATE(); - case 359: - if (lookahead == 't') ADVANCE(387); - END_STATE(); - case 360: - if (lookahead == 'i') ADVANCE(388); - END_STATE(); - case 361: - ACCEPT_TOKEN(anon_sym_no_link); - END_STATE(); - case 362: - ACCEPT_TOKEN(anon_sym_no_main); - END_STATE(); - case 363: - if (lookahead == 'l') ADVANCE(389); - END_STATE(); - case 364: - if (lookahead == 'a') ADVANCE(390); - END_STATE(); - case 365: - if (lookahead == 'a') ADVANCE(391); - END_STATE(); - case 366: - if (lookahead == 'c') ADVANCE(392); - END_STATE(); - case 367: - if (lookahead == 'o') ADVANCE(393); - END_STATE(); - case 368: - if (lookahead == 'p') ADVANCE(394); - END_STATE(); - case 369: - if (lookahead == 'f') ADVANCE(395); - END_STATE(); - case 370: - if (lookahead == 'a') ADVANCE(396); - END_STATE(); - case 371: - if (lookahead == 'n') ADVANCE(397); - END_STATE(); - case 372: - if (lookahead == '_') ADVANCE(398); - END_STATE(); - case 373: - if (lookahead == 'c') ADVANCE(399); - END_STATE(); - case 374: - ACCEPT_TOKEN(anon_sym_cfg_attr); - END_STATE(); - case 375: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 376: - if (lookahead == 'm') ADVANCE(400); - END_STATE(); - case 377: - if (lookahead == 'p') ADVANCE(401); - END_STATE(); - case 378: - if (lookahead == 'e') ADVANCE(402); - END_STATE(); - case 379: - if (lookahead == 'a') ADVANCE(403); - END_STATE(); - case 380: - if (lookahead == 'l') ADVANCE(404); - END_STATE(); - case 381: - ACCEPT_TOKEN(anon_sym_lifetime); - END_STATE(); - 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); + ACCEPT_TOKEN(anon_sym_lifetime); END_STATE(); default: return false; @@ -16053,8 +14712,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 5, .external_lex_state = 2}, - [46] = {.lex_state = 57, .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 = 5, .external_lex_state = 2}, @@ -16062,25 +14721,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [54] = {.lex_state = 5, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, [56] = {.lex_state = 5, .external_lex_state = 2}, [57] = {.lex_state = 5, .external_lex_state = 2}, [58] = {.lex_state = 5, .external_lex_state = 2}, [59] = {.lex_state = 5, .external_lex_state = 2}, [60] = {.lex_state = 5, .external_lex_state = 2}, - [61] = {.lex_state = 5, .external_lex_state = 2}, - [62] = {.lex_state = 57, .external_lex_state = 2}, - [63] = {.lex_state = 57, .external_lex_state = 2}, + [61] = {.lex_state = 57, .external_lex_state = 2}, + [62] = {.lex_state = 5, .external_lex_state = 2}, + [63] = {.lex_state = 5, .external_lex_state = 2}, [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.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 = 5, .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 = 5, .external_lex_state = 2}, + [71] = {.lex_state = 57, .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}, @@ -16091,29 +14750,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5, .external_lex_state = 2}, - [86] = {.lex_state = 57, .external_lex_state = 2}, - [87] = {.lex_state = 57, .external_lex_state = 2}, + [83] = {.lex_state = 5, .external_lex_state = 2}, + [84] = {.lex_state = 5, .external_lex_state = 2}, + [85] = {.lex_state = 57, .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 = 57, .external_lex_state = 2}, + [89] = {.lex_state = 5, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 5, .external_lex_state = 2}, + [92] = {.lex_state = 57, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 5, .external_lex_state = 2}, + [94] = {.lex_state = 57, .external_lex_state = 2}, + [95] = {.lex_state = 57, .external_lex_state = 2}, [96] = {.lex_state = 57, .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}, + [99] = {.lex_state = 57, .external_lex_state = 2}, [100] = {.lex_state = 5, .external_lex_state = 2}, [101] = {.lex_state = 57, .external_lex_state = 2}, [102] = {.lex_state = 5, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, [104] = {.lex_state = 57, .external_lex_state = 2}, - [105] = {.lex_state = 57, .external_lex_state = 2}, + [105] = {.lex_state = 5, .external_lex_state = 2}, [106] = {.lex_state = 5, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, [108] = {.lex_state = 5, .external_lex_state = 2}, @@ -16125,33 +14784,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [117] = {.lex_state = 57, .external_lex_state = 2}, [118] = {.lex_state = 5, .external_lex_state = 2}, [119] = {.lex_state = 5, .external_lex_state = 2}, [120] = {.lex_state = 5, .external_lex_state = 2}, [121] = {.lex_state = 5, .external_lex_state = 2}, [122] = {.lex_state = 5, .external_lex_state = 2}, [123] = {.lex_state = 5, .external_lex_state = 2}, - [124] = {.lex_state = 5, .external_lex_state = 2}, - [125] = {.lex_state = 57, .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}, + [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 = 57, .external_lex_state = 2}, + [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 57, .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}, + [136] = {.lex_state = 57, .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}, + [139] = {.lex_state = 57, .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}, + [143] = {.lex_state = 57, .external_lex_state = 2}, [144] = {.lex_state = 5, .external_lex_state = 2}, [145] = {.lex_state = 5, .external_lex_state = 2}, [146] = {.lex_state = 5, .external_lex_state = 2}, @@ -16170,13 +14829,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [162] = {.lex_state = 57, .external_lex_state = 2}, [163] = {.lex_state = 57, .external_lex_state = 2}, - [164] = {.lex_state = 5, .external_lex_state = 2}, + [164] = {.lex_state = 57, .external_lex_state = 2}, [165] = {.lex_state = 5, .external_lex_state = 2}, - [166] = {.lex_state = 57, .external_lex_state = 2}, - [167] = {.lex_state = 57, .external_lex_state = 2}, - [168] = {.lex_state = 57, .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 = 5, .external_lex_state = 2}, @@ -16188,15 +14847,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 57, .external_lex_state = 2}, - [181] = {.lex_state = 5, .external_lex_state = 2}, + [180] = {.lex_state = 5, .external_lex_state = 2}, + [181] = {.lex_state = 57, .external_lex_state = 2}, [182] = {.lex_state = 5, .external_lex_state = 2}, [183] = {.lex_state = 5, .external_lex_state = 2}, - [184] = {.lex_state = 57, .external_lex_state = 2}, - [185] = {.lex_state = 5, .external_lex_state = 2}, - [186] = {.lex_state = 5, .external_lex_state = 2}, - [187] = {.lex_state = 5, .external_lex_state = 2}, - [188] = {.lex_state = 57, .external_lex_state = 2}, + [184] = {.lex_state = 5, .external_lex_state = 2}, + [185] = {.lex_state = 57, .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}, @@ -16209,9 +14868,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [198] = {.lex_state = 6, .external_lex_state = 2}, [199] = {.lex_state = 6, .external_lex_state = 2}, [200] = {.lex_state = 6, .external_lex_state = 2}, - [201] = {.lex_state = 6, .external_lex_state = 2}, - [202] = {.lex_state = 6, .external_lex_state = 2}, - [203] = {.lex_state = 6, .external_lex_state = 2}, + [201] = {.lex_state = 5, .external_lex_state = 2}, + [202] = {.lex_state = 5, .external_lex_state = 2}, + [203] = {.lex_state = 5, .external_lex_state = 2}, [204] = {.lex_state = 1, .external_lex_state = 2}, [205] = {.lex_state = 5, .external_lex_state = 2}, [206] = {.lex_state = 5, .external_lex_state = 2}, @@ -16225,23 +14884,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [214] = {.lex_state = 5, .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}, + [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 = 1, .external_lex_state = 2}, [223] = {.lex_state = 1, .external_lex_state = 2}, - [224] = {.lex_state = 4, .external_lex_state = 3}, - [225] = {.lex_state = 4, .external_lex_state = 3}, - [226] = {.lex_state = 4, .external_lex_state = 3}, - [227] = {.lex_state = 4, .external_lex_state = 3}, + [224] = {.lex_state = 5, .external_lex_state = 2}, + [225] = {.lex_state = 1, .external_lex_state = 2}, + [226] = {.lex_state = 1, .external_lex_state = 2}, + [227] = {.lex_state = 5, .external_lex_state = 2}, [228] = {.lex_state = 1, .external_lex_state = 2}, [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 1, .external_lex_state = 2}, + [230] = {.lex_state = 5, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 2}, - [233] = {.lex_state = 5, .external_lex_state = 2}, + [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, @@ -16249,31 +14908,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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 = 1, .external_lex_state = 2}, [247] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, - [255] = {.lex_state = 1, .external_lex_state = 2}, - [256] = {.lex_state = 1, .external_lex_state = 2}, - [257] = {.lex_state = 5, .external_lex_state = 2}, - [258] = {.lex_state = 5, .external_lex_state = 2}, - [259] = {.lex_state = 5, .external_lex_state = 2}, - [260] = {.lex_state = 14, .external_lex_state = 3}, - [261] = {.lex_state = 14, .external_lex_state = 3}, - [262] = {.lex_state = 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}, + [248] = {.lex_state = 5, .external_lex_state = 2}, + [249] = {.lex_state = 5, .external_lex_state = 2}, + [250] = {.lex_state = 12, .external_lex_state = 2}, + [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 = 4, .external_lex_state = 3}, + [255] = {.lex_state = 4, .external_lex_state = 3}, + [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}, [266] = {.lex_state = 58, .external_lex_state = 2}, [267] = {.lex_state = 58, .external_lex_state = 2}, [268] = {.lex_state = 58, .external_lex_state = 2}, @@ -16284,7 +14943,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [273] = {.lex_state = 58, .external_lex_state = 2}, [274] = {.lex_state = 58, .external_lex_state = 2}, [275] = {.lex_state = 58, .external_lex_state = 2}, - [276] = {.lex_state = 58, .external_lex_state = 2}, + [276] = {.lex_state = 5, .external_lex_state = 2}, [277] = {.lex_state = 58, .external_lex_state = 2}, [278] = {.lex_state = 58, .external_lex_state = 2}, [279] = {.lex_state = 58, .external_lex_state = 2}, @@ -16316,7 +14975,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [305] = {.lex_state = 58, .external_lex_state = 2}, [306] = {.lex_state = 58, .external_lex_state = 2}, [307] = {.lex_state = 58, .external_lex_state = 2}, - [308] = {.lex_state = 5, .external_lex_state = 2}, + [308] = {.lex_state = 58, .external_lex_state = 2}, [309] = {.lex_state = 58, .external_lex_state = 2}, [310] = {.lex_state = 58, .external_lex_state = 2}, [311] = {.lex_state = 58, .external_lex_state = 2}, @@ -16389,10 +15048,10 @@ 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 = 58, .external_lex_state = 2}, + [381] = {.lex_state = 5, .external_lex_state = 2}, [382] = {.lex_state = 58, .external_lex_state = 2}, [383] = {.lex_state = 58, .external_lex_state = 2}, - [384] = {.lex_state = 5, .external_lex_state = 2}, + [384] = {.lex_state = 58, .external_lex_state = 2}, [385] = {.lex_state = 58, .external_lex_state = 2}, [386] = {.lex_state = 58, .external_lex_state = 2}, [387] = {.lex_state = 58, .external_lex_state = 2}, @@ -16500,321 +15159,321 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 58, .external_lex_state = 2}, - [495] = {.lex_state = 58, .external_lex_state = 2}, - [496] = {.lex_state = 58, .external_lex_state = 2}, - [497] = {.lex_state = 58, .external_lex_state = 2}, - [498] = {.lex_state = 58, .external_lex_state = 2}, - [499] = {.lex_state = 58, .external_lex_state = 2}, - [500] = {.lex_state = 58, .external_lex_state = 2}, - [501] = {.lex_state = 58, .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 = 11, .external_lex_state = 2}, - [507] = {.lex_state = 11, .external_lex_state = 2}, + [492] = {.lex_state = 12, .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 = 5, .external_lex_state = 2}, + [500] = {.lex_state = 12, .external_lex_state = 2}, + [501] = {.lex_state = 12, .external_lex_state = 2}, + [502] = {.lex_state = 13, .external_lex_state = 2}, + [503] = {.lex_state = 5, .external_lex_state = 2}, + [504] = {.lex_state = 12, .external_lex_state = 2}, + [505] = {.lex_state = 12, .external_lex_state = 2}, + [506] = {.lex_state = 12, .external_lex_state = 2}, + [507] = {.lex_state = 12, .external_lex_state = 2}, [508] = {.lex_state = 12, .external_lex_state = 2}, - [509] = {.lex_state = 11, .external_lex_state = 2}, + [509] = {.lex_state = 12, .external_lex_state = 2}, [510] = {.lex_state = 5, .external_lex_state = 2}, - [511] = {.lex_state = 11, .external_lex_state = 2}, - [512] = {.lex_state = 11, .external_lex_state = 2}, - [513] = {.lex_state = 11, .external_lex_state = 2}, - [514] = {.lex_state = 5, .external_lex_state = 2}, - [515] = {.lex_state = 11, .external_lex_state = 2}, - [516] = {.lex_state = 11, .external_lex_state = 2}, - [517] = {.lex_state = 11, .external_lex_state = 2}, - [518] = {.lex_state = 11, .external_lex_state = 2}, - [519] = {.lex_state = 11, .external_lex_state = 2}, - [520] = {.lex_state = 11, .external_lex_state = 2}, - [521] = {.lex_state = 5, .external_lex_state = 2}, + [511] = {.lex_state = 5, .external_lex_state = 2}, + [512] = {.lex_state = 12, .external_lex_state = 2}, + [513] = {.lex_state = 12, .external_lex_state = 2}, + [514] = {.lex_state = 13, .external_lex_state = 2}, + [515] = {.lex_state = 12, .external_lex_state = 2}, + [516] = {.lex_state = 12, .external_lex_state = 2}, + [517] = {.lex_state = 12, .external_lex_state = 2}, + [518] = {.lex_state = 13, .external_lex_state = 2}, + [519] = {.lex_state = 12, .external_lex_state = 2}, + [520] = {.lex_state = 12, .external_lex_state = 2}, + [521] = {.lex_state = 12, .external_lex_state = 2}, [522] = {.lex_state = 12, .external_lex_state = 2}, [523] = {.lex_state = 12, .external_lex_state = 2}, - [524] = {.lex_state = 12, .external_lex_state = 2}, - [525] = {.lex_state = 12, .external_lex_state = 2}, - [526] = {.lex_state = 12, .external_lex_state = 2}, - [527] = {.lex_state = 12, .external_lex_state = 2}, - [528] = {.lex_state = 12, .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 = 12, .external_lex_state = 2}, - [530] = {.lex_state = 12, .external_lex_state = 2}, + [530] = {.lex_state = 13, .external_lex_state = 2}, [531] = {.lex_state = 12, .external_lex_state = 2}, - [532] = {.lex_state = 11, .external_lex_state = 2}, - [533] = {.lex_state = 11, .external_lex_state = 2}, - [534] = {.lex_state = 11, .external_lex_state = 2}, - [535] = {.lex_state = 11, .external_lex_state = 2}, - [536] = {.lex_state = 11, .external_lex_state = 2}, - [537] = {.lex_state = 11, .external_lex_state = 2}, - [538] = {.lex_state = 12, .external_lex_state = 2}, - [539] = {.lex_state = 11, .external_lex_state = 2}, - [540] = {.lex_state = 11, .external_lex_state = 2}, - [541] = {.lex_state = 11, .external_lex_state = 2}, - [542] = {.lex_state = 12, .external_lex_state = 2}, + [532] = {.lex_state = 13, .external_lex_state = 2}, + [533] = {.lex_state = 13, .external_lex_state = 2}, + [534] = {.lex_state = 13, .external_lex_state = 2}, + [535] = {.lex_state = 13, .external_lex_state = 2}, + [536] = {.lex_state = 13, .external_lex_state = 2}, + [537] = {.lex_state = 13, .external_lex_state = 2}, + [538] = {.lex_state = 13, .external_lex_state = 2}, + [539] = {.lex_state = 13, .external_lex_state = 2}, + [540] = {.lex_state = 13, .external_lex_state = 2}, + [541] = {.lex_state = 12, .external_lex_state = 2}, + [542] = {.lex_state = 13, .external_lex_state = 2}, [543] = {.lex_state = 12, .external_lex_state = 2}, - [544] = {.lex_state = 12, .external_lex_state = 2}, - [545] = {.lex_state = 12, .external_lex_state = 2}, - [546] = {.lex_state = 12, .external_lex_state = 2}, - [547] = {.lex_state = 12, .external_lex_state = 2}, - [548] = {.lex_state = 12, .external_lex_state = 2}, - [549] = {.lex_state = 12, .external_lex_state = 2}, - [550] = {.lex_state = 12, .external_lex_state = 2}, - [551] = {.lex_state = 12, .external_lex_state = 2}, - [552] = {.lex_state = 11, .external_lex_state = 2}, - [553] = {.lex_state = 11, .external_lex_state = 2}, - [554] = {.lex_state = 11, .external_lex_state = 2}, - [555] = {.lex_state = 12, .external_lex_state = 2}, - [556] = {.lex_state = 12, .external_lex_state = 2}, - [557] = {.lex_state = 12, .external_lex_state = 2}, - [558] = {.lex_state = 12, .external_lex_state = 2}, - [559] = {.lex_state = 12, .external_lex_state = 2}, - [560] = {.lex_state = 12, .external_lex_state = 2}, - [561] = {.lex_state = 11, .external_lex_state = 2}, - [562] = {.lex_state = 12, .external_lex_state = 2}, - [563] = {.lex_state = 11, .external_lex_state = 2}, - [564] = {.lex_state = 12, .external_lex_state = 2}, - [565] = {.lex_state = 12, .external_lex_state = 2}, + [544] = {.lex_state = 13, .external_lex_state = 2}, + [545] = {.lex_state = 13, .external_lex_state = 2}, + [546] = {.lex_state = 13, .external_lex_state = 2}, + [547] = {.lex_state = 13, .external_lex_state = 2}, + [548] = {.lex_state = 13, .external_lex_state = 2}, + [549] = {.lex_state = 13, .external_lex_state = 2}, + [550] = {.lex_state = 13, .external_lex_state = 2}, + [551] = {.lex_state = 13, .external_lex_state = 2}, + [552] = {.lex_state = 13, .external_lex_state = 2}, + [553] = {.lex_state = 13, .external_lex_state = 2}, + [554] = {.lex_state = 13, .external_lex_state = 2}, + [555] = {.lex_state = 13, .external_lex_state = 2}, + [556] = {.lex_state = 5, .external_lex_state = 2}, + [557] = {.lex_state = 7, .external_lex_state = 3}, + [558] = {.lex_state = 5, .external_lex_state = 2}, + [559] = {.lex_state = 7, .external_lex_state = 3}, + [560] = {.lex_state = 7, .external_lex_state = 3}, + [561] = {.lex_state = 7, .external_lex_state = 3}, + [562] = {.lex_state = 7, .external_lex_state = 3}, + [563] = {.lex_state = 7, .external_lex_state = 3}, + [564] = {.lex_state = 7, .external_lex_state = 3}, + [565] = {.lex_state = 5, .external_lex_state = 2}, [566] = {.lex_state = 5, .external_lex_state = 2}, - [567] = {.lex_state = 5, .external_lex_state = 2}, - [568] = {.lex_state = 4, .external_lex_state = 3}, - [569] = {.lex_state = 4, .external_lex_state = 3}, - [570] = {.lex_state = 4, .external_lex_state = 3}, - [571] = {.lex_state = 4, .external_lex_state = 3}, - [572] = {.lex_state = 4, .external_lex_state = 3}, - [573] = {.lex_state = 4, .external_lex_state = 3}, - [574] = {.lex_state = 4, .external_lex_state = 3}, - [575] = {.lex_state = 10, .external_lex_state = 2}, + [567] = {.lex_state = 7, .external_lex_state = 3}, + [568] = {.lex_state = 5, .external_lex_state = 2}, + [569] = {.lex_state = 7, .external_lex_state = 3}, + [570] = {.lex_state = 7, .external_lex_state = 3}, + [571] = {.lex_state = 5, .external_lex_state = 2}, + [572] = {.lex_state = 11, .external_lex_state = 2}, + [573] = {.lex_state = 12, .external_lex_state = 2}, + [574] = {.lex_state = 7, .external_lex_state = 3}, + [575] = {.lex_state = 12, .external_lex_state = 2}, [576] = {.lex_state = 5, .external_lex_state = 2}, [577] = {.lex_state = 5, .external_lex_state = 2}, - [578] = {.lex_state = 4, .external_lex_state = 3}, - [579] = {.lex_state = 4, .external_lex_state = 3}, - [580] = {.lex_state = 4, .external_lex_state = 3}, - [581] = {.lex_state = 5, .external_lex_state = 2}, - [582] = {.lex_state = 5, .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 = 4, .external_lex_state = 3}, + [578] = {.lex_state = 12, .external_lex_state = 2}, + [579] = {.lex_state = 5, .external_lex_state = 2}, + [580] = {.lex_state = 12, .external_lex_state = 2}, + [581] = {.lex_state = 12, .external_lex_state = 2}, + [582] = {.lex_state = 12, .external_lex_state = 2}, + [583] = {.lex_state = 12, .external_lex_state = 2}, + [584] = {.lex_state = 12, .external_lex_state = 2}, + [585] = {.lex_state = 12, .external_lex_state = 2}, + [586] = {.lex_state = 12, .external_lex_state = 2}, + [587] = {.lex_state = 12, .external_lex_state = 2}, + [588] = {.lex_state = 12, .external_lex_state = 2}, + [589] = {.lex_state = 12, .external_lex_state = 2}, + [590] = {.lex_state = 12, .external_lex_state = 2}, [591] = {.lex_state = 5, .external_lex_state = 2}, - [592] = {.lex_state = 11, .external_lex_state = 2}, + [592] = {.lex_state = 12, .external_lex_state = 2}, [593] = {.lex_state = 5, .external_lex_state = 2}, - [594] = {.lex_state = 11, .external_lex_state = 2}, - [595] = {.lex_state = 11, .external_lex_state = 2}, - [596] = {.lex_state = 11, .external_lex_state = 2}, - [597] = {.lex_state = 11, .external_lex_state = 2}, - [598] = {.lex_state = 11, .external_lex_state = 2}, + [594] = {.lex_state = 5, .external_lex_state = 2}, + [595] = {.lex_state = 5, .external_lex_state = 2}, + [596] = {.lex_state = 12, .external_lex_state = 2}, + [597] = {.lex_state = 13, .external_lex_state = 2}, + [598] = {.lex_state = 5, .external_lex_state = 2}, [599] = {.lex_state = 5, .external_lex_state = 2}, - [600] = {.lex_state = 11, .external_lex_state = 2}, - [601] = {.lex_state = 11, .external_lex_state = 2}, + [600] = {.lex_state = 5, .external_lex_state = 2}, + [601] = {.lex_state = 5, .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 = 11, .external_lex_state = 2}, - [606] = {.lex_state = 11, .external_lex_state = 2}, - [607] = {.lex_state = 4, .external_lex_state = 3}, - [608] = {.lex_state = 12, .external_lex_state = 2}, + [604] = {.lex_state = 13, .external_lex_state = 2}, + [605] = {.lex_state = 5, .external_lex_state = 2}, + [606] = {.lex_state = 5, .external_lex_state = 2}, + [607] = {.lex_state = 5, .external_lex_state = 2}, + [608] = {.lex_state = 5, .external_lex_state = 2}, [609] = {.lex_state = 5, .external_lex_state = 2}, - [610] = {.lex_state = 12, .external_lex_state = 2}, + [610] = {.lex_state = 5, .external_lex_state = 2}, [611] = {.lex_state = 5, .external_lex_state = 2}, - [612] = {.lex_state = 5, .external_lex_state = 2}, - [613] = {.lex_state = 5, .external_lex_state = 2}, + [612] = {.lex_state = 13, .external_lex_state = 2}, + [613] = {.lex_state = 7, .external_lex_state = 3}, [614] = {.lex_state = 5, .external_lex_state = 2}, [615] = {.lex_state = 5, .external_lex_state = 2}, - [616] = {.lex_state = 5, .external_lex_state = 2}, + [616] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, [621] = {.lex_state = 5, .external_lex_state = 2}, [622] = {.lex_state = 5, .external_lex_state = 2}, - [623] = {.lex_state = 5, .external_lex_state = 2}, + [623] = {.lex_state = 7, .external_lex_state = 3}, [624] = {.lex_state = 5, .external_lex_state = 2}, [625] = {.lex_state = 5, .external_lex_state = 2}, - [626] = {.lex_state = 4, .external_lex_state = 3}, - [627] = {.lex_state = 4, .external_lex_state = 3}, - [628] = {.lex_state = 5, .external_lex_state = 2}, - [629] = {.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 = 13, .external_lex_state = 2}, + [629] = {.lex_state = 5, .external_lex_state = 2}, [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 = 12, .external_lex_state = 2}, + [632] = {.lex_state = 13, .external_lex_state = 2}, + [633] = {.lex_state = 5, .external_lex_state = 2}, [634] = {.lex_state = 5, .external_lex_state = 2}, [635] = {.lex_state = 5, .external_lex_state = 2}, - [636] = {.lex_state = 5, .external_lex_state = 2}, + [636] = {.lex_state = 13, .external_lex_state = 2}, [637] = {.lex_state = 5, .external_lex_state = 2}, - [638] = {.lex_state = 12, .external_lex_state = 2}, - [639] = {.lex_state = 5, .external_lex_state = 2}, - [640] = {.lex_state = 5, .external_lex_state = 2}, - [641] = {.lex_state = 12, .external_lex_state = 2}, - [642] = {.lex_state = 12, .external_lex_state = 2}, - [643] = {.lex_state = 5, .external_lex_state = 2}, - [644] = {.lex_state = 5, .external_lex_state = 2}, - [645] = {.lex_state = 5, .external_lex_state = 2}, - [646] = {.lex_state = 5, .external_lex_state = 2}, - [647] = {.lex_state = 5, .external_lex_state = 2}, - [648] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 5, .external_lex_state = 2}, - [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 = 4, .external_lex_state = 3}, - [753] = {.lex_state = 4, .external_lex_state = 3}, - [754] = {.lex_state = 4, .external_lex_state = 3}, - [755] = {.lex_state = 4, .external_lex_state = 3}, - [756] = {.lex_state = 4, .external_lex_state = 3}, - [757] = {.lex_state = 4, .external_lex_state = 3}, - [758] = {.lex_state = 4, .external_lex_state = 3}, - [759] = {.lex_state = 4, .external_lex_state = 3}, - [760] = {.lex_state = 4, .external_lex_state = 3}, - [761] = {.lex_state = 4, .external_lex_state = 3}, - [762] = {.lex_state = 4, .external_lex_state = 3}, - [763] = {.lex_state = 4, .external_lex_state = 3}, - [764] = {.lex_state = 4, .external_lex_state = 3}, - [765] = {.lex_state = 4, .external_lex_state = 3}, - [766] = {.lex_state = 4, .external_lex_state = 3}, - [767] = {.lex_state = 4, .external_lex_state = 3}, - [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.lex_state = 4, .external_lex_state = 3}, - [770] = {.lex_state = 4, .external_lex_state = 3}, - [771] = {.lex_state = 4, .external_lex_state = 3}, - [772] = {.lex_state = 4, .external_lex_state = 3}, - [773] = {.lex_state = 4, .external_lex_state = 3}, - [774] = {.lex_state = 4, .external_lex_state = 3}, - [775] = {.lex_state = 5, .external_lex_state = 2}, - [776] = {.lex_state = 5, .external_lex_state = 2}, - [777] = {.lex_state = 5, .external_lex_state = 2}, - [778] = {.lex_state = 5, .external_lex_state = 2}, - [779] = {.lex_state = 6, .external_lex_state = 2}, + [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 = 5, .external_lex_state = 2}, + [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 = 7, .external_lex_state = 3}, + [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 = 5, .external_lex_state = 2}, + [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 = 7, .external_lex_state = 3}, + [758] = {.lex_state = 7, .external_lex_state = 3}, + [759] = {.lex_state = 7, .external_lex_state = 3}, + [760] = {.lex_state = 7, .external_lex_state = 3}, + [761] = {.lex_state = 7, .external_lex_state = 3}, + [762] = {.lex_state = 7, .external_lex_state = 3}, + [763] = {.lex_state = 7, .external_lex_state = 3}, + [764] = {.lex_state = 7, .external_lex_state = 3}, + [765] = {.lex_state = 5, .external_lex_state = 2}, + [766] = {.lex_state = 5, .external_lex_state = 2}, + [767] = {.lex_state = 5, .external_lex_state = 2}, + [768] = {.lex_state = 5, .external_lex_state = 2}, + [769] = {.lex_state = 6, .external_lex_state = 2}, + [770] = {.lex_state = 3, .external_lex_state = 3}, + [771] = {.lex_state = 3, .external_lex_state = 3}, + [772] = {.lex_state = 3, .external_lex_state = 3}, + [773] = {.lex_state = 3, .external_lex_state = 3}, + [774] = {.lex_state = 3, .external_lex_state = 3}, + [775] = {.lex_state = 2, .external_lex_state = 3}, + [776] = {.lex_state = 3, .external_lex_state = 3}, + [777] = {.lex_state = 3, .external_lex_state = 3}, + [778] = {.lex_state = 3, .external_lex_state = 3}, + [779] = {.lex_state = 3, .external_lex_state = 3}, [780] = {.lex_state = 3, .external_lex_state = 3}, - [781] = {.lex_state = 3, .external_lex_state = 3}, - [782] = {.lex_state = 3, .external_lex_state = 3}, - [783] = {.lex_state = 3, .external_lex_state = 3}, - [784] = {.lex_state = 3, .external_lex_state = 3}, - [785] = {.lex_state = 3, .external_lex_state = 3}, - [786] = {.lex_state = 3, .external_lex_state = 3}, + [781] = {.lex_state = 2, .external_lex_state = 3}, + [782] = {.lex_state = 2, .external_lex_state = 3}, + [783] = {.lex_state = 4, .external_lex_state = 3}, + [784] = {.lex_state = 2, .external_lex_state = 3}, + [785] = {.lex_state = 4, .external_lex_state = 3}, + [786] = {.lex_state = 2, .external_lex_state = 3}, [787] = {.lex_state = 2, .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 = 14, .external_lex_state = 3}, - [793] = {.lex_state = 14, .external_lex_state = 3}, - [794] = {.lex_state = 2, .external_lex_state = 3}, + [788] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, + [793] = {.lex_state = 2, .external_lex_state = 3}, + [794] = {.lex_state = 3, .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 = 14, .external_lex_state = 3}, - [800] = {.lex_state = 14, .external_lex_state = 3}, + [799] = {.lex_state = 2, .external_lex_state = 3}, + [800] = {.lex_state = 2, .external_lex_state = 3}, [801] = {.lex_state = 2, .external_lex_state = 3}, - [802] = {.lex_state = 14, .external_lex_state = 3}, + [802] = {.lex_state = 2, .external_lex_state = 3}, [803] = {.lex_state = 2, .external_lex_state = 3}, [804] = {.lex_state = 2, .external_lex_state = 3}, [805] = {.lex_state = 2, .external_lex_state = 3}, - [806] = {.lex_state = 9, .external_lex_state = 3}, + [806] = {.lex_state = 2, .external_lex_state = 3}, [807] = {.lex_state = 2, .external_lex_state = 3}, [808] = {.lex_state = 2, .external_lex_state = 3}, [809] = {.lex_state = 2, .external_lex_state = 3}, @@ -16828,7 +15487,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [817] = {.lex_state = 2, .external_lex_state = 3}, [818] = {.lex_state = 2, .external_lex_state = 3}, [819] = {.lex_state = 2, .external_lex_state = 3}, - [820] = {.lex_state = 3, .external_lex_state = 3}, + [820] = {.lex_state = 10, .external_lex_state = 3}, [821] = {.lex_state = 2, .external_lex_state = 3}, [822] = {.lex_state = 2, .external_lex_state = 3}, [823] = {.lex_state = 2, .external_lex_state = 3}, @@ -16836,411 +15495,411 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [825] = {.lex_state = 2, .external_lex_state = 3}, [826] = {.lex_state = 2, .external_lex_state = 3}, [827] = {.lex_state = 2, .external_lex_state = 3}, - [828] = {.lex_state = 2, .external_lex_state = 3}, - [829] = {.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 = 2, .external_lex_state = 3}, - [832] = {.lex_state = 2, .external_lex_state = 3}, - [833] = {.lex_state = 2, .external_lex_state = 3}, + [831] = {.lex_state = 4, .external_lex_state = 3}, + [832] = {.lex_state = 4, .external_lex_state = 3}, + [833] = {.lex_state = 4, .external_lex_state = 3}, [834] = {.lex_state = 2, .external_lex_state = 3}, [835] = {.lex_state = 2, .external_lex_state = 3}, [836] = {.lex_state = 2, .external_lex_state = 3}, - [837] = {.lex_state = 14, .external_lex_state = 3}, + [837] = {.lex_state = 2, .external_lex_state = 3}, [838] = {.lex_state = 2, .external_lex_state = 3}, [839] = {.lex_state = 2, .external_lex_state = 3}, - [840] = {.lex_state = 14, .external_lex_state = 3}, - [841] = {.lex_state = 14, .external_lex_state = 3}, - [842] = {.lex_state = 14, .external_lex_state = 3}, - [843] = {.lex_state = 14, .external_lex_state = 3}, - [844] = {.lex_state = 14, .external_lex_state = 3}, - [845] = {.lex_state = 2, .external_lex_state = 3}, - [846] = {.lex_state = 14, .external_lex_state = 3}, - [847] = {.lex_state = 14, .external_lex_state = 3}, - [848] = {.lex_state = 14, .external_lex_state = 3}, - [849] = {.lex_state = 14, .external_lex_state = 3}, - [850] = {.lex_state = 14, .external_lex_state = 3}, - [851] = {.lex_state = 14, .external_lex_state = 3}, - [852] = {.lex_state = 14, .external_lex_state = 3}, - [853] = {.lex_state = 14, .external_lex_state = 3}, - [854] = {.lex_state = 14, .external_lex_state = 3}, - [855] = {.lex_state = 2, .external_lex_state = 3}, - [856] = {.lex_state = 14, .external_lex_state = 3}, - [857] = {.lex_state = 14, .external_lex_state = 3}, - [858] = {.lex_state = 14, .external_lex_state = 3}, - [859] = {.lex_state = 14, .external_lex_state = 3}, - [860] = {.lex_state = 14, .external_lex_state = 3}, - [861] = {.lex_state = 14, .external_lex_state = 3}, - [862] = {.lex_state = 14, .external_lex_state = 3}, - [863] = {.lex_state = 2, .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 = 14, .external_lex_state = 3}, - [872] = {.lex_state = 14, .external_lex_state = 3}, - [873] = {.lex_state = 14, .external_lex_state = 3}, - [874] = {.lex_state = 14, .external_lex_state = 3}, - [875] = {.lex_state = 14, .external_lex_state = 3}, - [876] = {.lex_state = 14, .external_lex_state = 3}, - [877] = {.lex_state = 2, .external_lex_state = 3}, - [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}, + [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 = 4, .external_lex_state = 3}, + [849] = {.lex_state = 4, .external_lex_state = 3}, + [850] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, + [855] = {.lex_state = 4, .external_lex_state = 3}, + [856] = {.lex_state = 2, .external_lex_state = 3}, + [857] = {.lex_state = 4, .external_lex_state = 3}, + [858] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, + [866] = {.lex_state = 2, .external_lex_state = 3}, + [867] = {.lex_state = 4, .external_lex_state = 3}, + [868] = {.lex_state = 2, .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 = 4, .external_lex_state = 3}, + [876] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, + [883] = {.lex_state = 4, .external_lex_state = 3}, [884] = {.lex_state = 2, .external_lex_state = 3}, - [885] = {.lex_state = 2, .external_lex_state = 3}, - [886] = {.lex_state = 14, .external_lex_state = 3}, - [887] = {.lex_state = 14, .external_lex_state = 3}, - [888] = {.lex_state = 14, .external_lex_state = 3}, - [889] = {.lex_state = 14, .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 = 2, .external_lex_state = 3}, [890] = {.lex_state = 2, .external_lex_state = 3}, - [891] = {.lex_state = 14, .external_lex_state = 3}, - [892] = {.lex_state = 14, .external_lex_state = 3}, + [891] = {.lex_state = 4, .external_lex_state = 3}, + [892] = {.lex_state = 4, .external_lex_state = 3}, [893] = {.lex_state = 2, .external_lex_state = 3}, [894] = {.lex_state = 2, .external_lex_state = 3}, - [895] = {.lex_state = 2, .external_lex_state = 3}, + [895] = {.lex_state = 4, .external_lex_state = 3}, [896] = {.lex_state = 2, .external_lex_state = 3}, - [897] = {.lex_state = 2, .external_lex_state = 3}, - [898] = {.lex_state = 14, .external_lex_state = 3}, - [899] = {.lex_state = 2, .external_lex_state = 3}, - [900] = {.lex_state = 14, .external_lex_state = 3}, - [901] = {.lex_state = 2, .external_lex_state = 3}, - [902] = {.lex_state = 14, .external_lex_state = 3}, - [903] = {.lex_state = 14, .external_lex_state = 3}, - [904] = {.lex_state = 2, .external_lex_state = 3}, - [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 = 2, .external_lex_state = 3}, - [911] = {.lex_state = 14, .external_lex_state = 3}, - [912] = {.lex_state = 14, .external_lex_state = 3}, - [913] = {.lex_state = 2, .external_lex_state = 3}, - [914] = {.lex_state = 14, .external_lex_state = 3}, - [915] = {.lex_state = 2, .external_lex_state = 3}, - [916] = {.lex_state = 2, .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}, + [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 = 4, .external_lex_state = 3}, + [906] = {.lex_state = 4, .external_lex_state = 3}, + [907] = {.lex_state = 4, .external_lex_state = 3}, + [908] = {.lex_state = 4, .external_lex_state = 3}, + [909] = {.lex_state = 4, .external_lex_state = 3}, + [910] = {.lex_state = 4, .external_lex_state = 3}, + [911] = {.lex_state = 2, .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 = 4, .external_lex_state = 3}, [920] = {.lex_state = 2, .external_lex_state = 3}, - [921] = {.lex_state = 2, .external_lex_state = 3}, - [922] = {.lex_state = 14, .external_lex_state = 3}, - [923] = {.lex_state = 14, .external_lex_state = 3}, - [924] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [932] = {.lex_state = 14, .external_lex_state = 3}, - [933] = {.lex_state = 14, .external_lex_state = 3}, - [934] = {.lex_state = 2, .external_lex_state = 3}, - [935] = {.lex_state = 14, .external_lex_state = 3}, - [936] = {.lex_state = 2, .external_lex_state = 3}, - [937] = {.lex_state = 14, .external_lex_state = 3}, - [938] = {.lex_state = 2, .external_lex_state = 3}, - [939] = {.lex_state = 2, .external_lex_state = 3}, - [940] = {.lex_state = 14, .external_lex_state = 3}, - [941] = {.lex_state = 14, .external_lex_state = 3}, - [942] = {.lex_state = 14, .external_lex_state = 3}, - [943] = {.lex_state = 14, .external_lex_state = 3}, - [944] = {.lex_state = 14, .external_lex_state = 3}, - [945] = {.lex_state = 14, .external_lex_state = 3}, - [946] = {.lex_state = 14, .external_lex_state = 3}, - [947] = {.lex_state = 2, .external_lex_state = 3}, - [948] = {.lex_state = 14, .external_lex_state = 3}, - [949] = {.lex_state = 14, .external_lex_state = 3}, - [950] = {.lex_state = 14, .external_lex_state = 3}, - [951] = {.lex_state = 14, .external_lex_state = 3}, - [952] = {.lex_state = 14, .external_lex_state = 3}, - [953] = {.lex_state = 14, .external_lex_state = 3}, - [954] = {.lex_state = 14, .external_lex_state = 3}, - [955] = {.lex_state = 2, .external_lex_state = 3}, - [956] = {.lex_state = 14, .external_lex_state = 3}, - [957] = {.lex_state = 14, .external_lex_state = 3}, - [958] = {.lex_state = 14, .external_lex_state = 3}, - [959] = {.lex_state = 2, .external_lex_state = 3}, - [960] = {.lex_state = 14, .external_lex_state = 3}, - [961] = {.lex_state = 14, .external_lex_state = 3}, - [962] = {.lex_state = 14, .external_lex_state = 3}, - [963] = {.lex_state = 14, .external_lex_state = 3}, - [964] = {.lex_state = 2, .external_lex_state = 3}, - [965] = {.lex_state = 14, .external_lex_state = 3}, - [966] = {.lex_state = 14, .external_lex_state = 3}, - [967] = {.lex_state = 2, .external_lex_state = 3}, - [968] = {.lex_state = 2, .external_lex_state = 3}, - [969] = {.lex_state = 2, .external_lex_state = 3}, - [970] = {.lex_state = 2, .external_lex_state = 3}, - [971] = {.lex_state = 2, .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 = 4, .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 = 4, .external_lex_state = 3}, + [948] = {.lex_state = 4, .external_lex_state = 3}, + [949] = {.lex_state = 4, .external_lex_state = 3}, + [950] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, + [958] = {.lex_state = 4, .external_lex_state = 3}, + [959] = {.lex_state = 4, .external_lex_state = 3}, + [960] = {.lex_state = 4, .external_lex_state = 3}, + [961] = {.lex_state = 4, .external_lex_state = 3}, + [962] = {.lex_state = 4, .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 = 2, .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 = 2, .external_lex_state = 3}, - [978] = {.lex_state = 14, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, - [980] = {.lex_state = 14, .external_lex_state = 3}, - [981] = {.lex_state = 2, .external_lex_state = 3}, - [982] = {.lex_state = 14, .external_lex_state = 3}, - [983] = {.lex_state = 2, .external_lex_state = 3}, - [984] = {.lex_state = 14, .external_lex_state = 3}, - [985] = {.lex_state = 14, .external_lex_state = 3}, - [986] = {.lex_state = 14, .external_lex_state = 3}, - [987] = {.lex_state = 14, .external_lex_state = 3}, - [988] = {.lex_state = 2, .external_lex_state = 3}, - [989] = {.lex_state = 14, .external_lex_state = 3}, - [990] = {.lex_state = 14, .external_lex_state = 3}, - [991] = {.lex_state = 14, .external_lex_state = 3}, - [992] = {.lex_state = 14, .external_lex_state = 3}, - [993] = {.lex_state = 14, .external_lex_state = 3}, - [994] = {.lex_state = 2, .external_lex_state = 3}, - [995] = {.lex_state = 14, .external_lex_state = 3}, - [996] = {.lex_state = 14, .external_lex_state = 3}, - [997] = {.lex_state = 14, .external_lex_state = 3}, - [998] = {.lex_state = 14, .external_lex_state = 3}, - [999] = {.lex_state = 14, .external_lex_state = 3}, - [1000] = {.lex_state = 14, .external_lex_state = 3}, - [1001] = {.lex_state = 14, .external_lex_state = 3}, - [1002] = {.lex_state = 14, .external_lex_state = 3}, + [973] = {.lex_state = 4, .external_lex_state = 3}, + [974] = {.lex_state = 4, .external_lex_state = 3}, + [975] = {.lex_state = 4, .external_lex_state = 3}, + [976] = {.lex_state = 4, .external_lex_state = 3}, + [977] = {.lex_state = 4, .external_lex_state = 3}, + [978] = {.lex_state = 2, .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 = 2, .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 = 2, .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 = 2, .external_lex_state = 3}, + [991] = {.lex_state = 2, .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 = 2, .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 = 2, .external_lex_state = 3}, - [1004] = {.lex_state = 14, .external_lex_state = 3}, - [1005] = {.lex_state = 14, .external_lex_state = 3}, - [1006] = {.lex_state = 14, .external_lex_state = 3}, - [1007] = {.lex_state = 14, .external_lex_state = 3}, - [1008] = {.lex_state = 14, .external_lex_state = 3}, - [1009] = {.lex_state = 14, .external_lex_state = 3}, - [1010] = {.lex_state = 14, .external_lex_state = 3}, - [1011] = {.lex_state = 14, .external_lex_state = 3}, - [1012] = {.lex_state = 14, .external_lex_state = 3}, - [1013] = {.lex_state = 14, .external_lex_state = 3}, - [1014] = {.lex_state = 14, .external_lex_state = 3}, - [1015] = {.lex_state = 14, .external_lex_state = 3}, - [1016] = {.lex_state = 14, .external_lex_state = 3}, - [1017] = {.lex_state = 14, .external_lex_state = 3}, - [1018] = {.lex_state = 2, .external_lex_state = 3}, - [1019] = {.lex_state = 14, .external_lex_state = 3}, + [1004] = {.lex_state = 4, .external_lex_state = 3}, + [1005] = {.lex_state = 2, .external_lex_state = 3}, + [1006] = {.lex_state = 2, .external_lex_state = 3}, + [1007] = {.lex_state = 2, .external_lex_state = 3}, + [1008] = {.lex_state = 2, .external_lex_state = 3}, + [1009] = {.lex_state = 2, .external_lex_state = 3}, + [1010] = {.lex_state = 4, .external_lex_state = 3}, + [1011] = {.lex_state = 4, .external_lex_state = 3}, + [1012] = {.lex_state = 4, .external_lex_state = 3}, + [1013] = {.lex_state = 2, .external_lex_state = 3}, + [1014] = {.lex_state = 2, .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}, + [1018] = {.lex_state = 4, .external_lex_state = 3}, + [1019] = {.lex_state = 2, .external_lex_state = 3}, [1020] = {.lex_state = 2, .external_lex_state = 3}, - [1021] = {.lex_state = 14, .external_lex_state = 3}, - [1022] = {.lex_state = 2, .external_lex_state = 3}, - [1023] = {.lex_state = 14, .external_lex_state = 3}, - [1024] = {.lex_state = 2, .external_lex_state = 3}, + [1021] = {.lex_state = 4, .external_lex_state = 3}, + [1022] = {.lex_state = 4, .external_lex_state = 3}, + [1023] = {.lex_state = 2, .external_lex_state = 3}, + [1024] = {.lex_state = 4, .external_lex_state = 3}, [1025] = {.lex_state = 2, .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}, + [1026] = {.lex_state = 2, .external_lex_state = 3}, + [1027] = {.lex_state = 4, .external_lex_state = 3}, + [1028] = {.lex_state = 4, .external_lex_state = 3}, [1029] = {.lex_state = 2, .external_lex_state = 3}, [1030] = {.lex_state = 2, .external_lex_state = 3}, [1031] = {.lex_state = 2, .external_lex_state = 3}, - [1032] = {.lex_state = 14, .external_lex_state = 3}, - [1033] = {.lex_state = 2, .external_lex_state = 3}, - [1034] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [1041] = {.lex_state = 2, .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 = 2, .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 = 2, .external_lex_state = 3}, - [1051] = {.lex_state = 2, .external_lex_state = 3}, - [1052] = {.lex_state = 2, .external_lex_state = 3}, - [1053] = {.lex_state = 14, .external_lex_state = 3}, - [1054] = {.lex_state = 14, .external_lex_state = 3}, - [1055] = {.lex_state = 14, .external_lex_state = 3}, - [1056] = {.lex_state = 14, .external_lex_state = 3}, + [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 = 2, .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 = 2, .external_lex_state = 3}, + [1043] = {.lex_state = 2, .external_lex_state = 3}, + [1044] = {.lex_state = 2, .external_lex_state = 3}, + [1045] = {.lex_state = 4, .external_lex_state = 3}, + [1046] = {.lex_state = 4, .external_lex_state = 3}, + [1047] = {.lex_state = 4, .external_lex_state = 3}, + [1048] = {.lex_state = 4, .external_lex_state = 3}, + [1049] = {.lex_state = 4, .external_lex_state = 3}, + [1050] = {.lex_state = 4, .external_lex_state = 3}, + [1051] = {.lex_state = 4, .external_lex_state = 3}, + [1052] = {.lex_state = 4, .external_lex_state = 3}, + [1053] = {.lex_state = 4, .external_lex_state = 3}, + [1054] = {.lex_state = 4, .external_lex_state = 3}, + [1055] = {.lex_state = 2, .external_lex_state = 3}, + [1056] = {.lex_state = 4, .external_lex_state = 3}, [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 14, .external_lex_state = 3}, - [1059] = {.lex_state = 14, .external_lex_state = 3}, - [1060] = {.lex_state = 14, .external_lex_state = 3}, - [1061] = {.lex_state = 14, .external_lex_state = 3}, - [1062] = {.lex_state = 2, .external_lex_state = 3}, - [1063] = {.lex_state = 14, .external_lex_state = 3}, + [1058] = {.lex_state = 4, .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}, + [1062] = {.lex_state = 4, .external_lex_state = 3}, + [1063] = {.lex_state = 4, .external_lex_state = 3}, [1064] = {.lex_state = 2, .external_lex_state = 3}, - [1065] = {.lex_state = 14, .external_lex_state = 3}, - [1066] = {.lex_state = 14, .external_lex_state = 3}, - [1067] = {.lex_state = 14, .external_lex_state = 3}, - [1068] = {.lex_state = 2, .external_lex_state = 3}, - [1069] = {.lex_state = 14, .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 = 4, .external_lex_state = 3}, + [1069] = {.lex_state = 2, .external_lex_state = 3}, [1070] = {.lex_state = 2, .external_lex_state = 3}, - [1071] = {.lex_state = 14, .external_lex_state = 3}, - [1072] = {.lex_state = 14, .external_lex_state = 3}, + [1071] = {.lex_state = 4, .external_lex_state = 3}, + [1072] = {.lex_state = 4, .external_lex_state = 3}, [1073] = {.lex_state = 2, .external_lex_state = 3}, [1074] = {.lex_state = 2, .external_lex_state = 3}, - [1075] = {.lex_state = 14, .external_lex_state = 3}, + [1075] = {.lex_state = 2, .external_lex_state = 3}, [1076] = {.lex_state = 2, .external_lex_state = 3}, - [1077] = {.lex_state = 14, .external_lex_state = 3}, - [1078] = {.lex_state = 2, .external_lex_state = 3}, - [1079] = {.lex_state = 2, .external_lex_state = 3}, - [1080] = {.lex_state = 14, .external_lex_state = 3}, - [1081] = {.lex_state = 14, .external_lex_state = 3}, + [1077] = {.lex_state = 4, .external_lex_state = 3}, + [1078] = {.lex_state = 4, .external_lex_state = 3}, + [1079] = {.lex_state = 4, .external_lex_state = 3}, + [1080] = {.lex_state = 2, .external_lex_state = 3}, + [1081] = {.lex_state = 4, .external_lex_state = 3}, [1082] = {.lex_state = 2, .external_lex_state = 3}, [1083] = {.lex_state = 2, .external_lex_state = 3}, - [1084] = {.lex_state = 14, .external_lex_state = 3}, - [1085] = {.lex_state = 14, .external_lex_state = 3}, - [1086] = {.lex_state = 2, .external_lex_state = 3}, - [1087] = {.lex_state = 14, .external_lex_state = 3}, - [1088] = {.lex_state = 2, .external_lex_state = 3}, + [1084] = {.lex_state = 2, .external_lex_state = 3}, + [1085] = {.lex_state = 4, .external_lex_state = 3}, + [1086] = {.lex_state = 4, .external_lex_state = 3}, + [1087] = {.lex_state = 4, .external_lex_state = 3}, + [1088] = {.lex_state = 4, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, [1090] = {.lex_state = 2, .external_lex_state = 3}, - [1091] = {.lex_state = 14, .external_lex_state = 3}, - [1092] = {.lex_state = 14, .external_lex_state = 3}, - [1093] = {.lex_state = 14, .external_lex_state = 3}, - [1094] = {.lex_state = 14, .external_lex_state = 3}, - [1095] = {.lex_state = 14, .external_lex_state = 3}, - [1096] = {.lex_state = 14, .external_lex_state = 3}, - [1097] = {.lex_state = 14, .external_lex_state = 3}, - [1098] = {.lex_state = 14, .external_lex_state = 3}, - [1099] = {.lex_state = 14, .external_lex_state = 3}, - [1100] = {.lex_state = 14, .external_lex_state = 3}, - [1101] = {.lex_state = 14, .external_lex_state = 3}, - [1102] = {.lex_state = 14, .external_lex_state = 3}, - [1103] = {.lex_state = 14, .external_lex_state = 3}, - [1104] = {.lex_state = 14, .external_lex_state = 3}, - [1105] = {.lex_state = 14, .external_lex_state = 3}, - [1106] = {.lex_state = 2, .external_lex_state = 3}, + [1091] = {.lex_state = 4, .external_lex_state = 3}, + [1092] = {.lex_state = 2, .external_lex_state = 3}, + [1093] = {.lex_state = 4, .external_lex_state = 3}, + [1094] = {.lex_state = 4, .external_lex_state = 3}, + [1095] = {.lex_state = 4, .external_lex_state = 3}, + [1096] = {.lex_state = 4, .external_lex_state = 3}, + [1097] = {.lex_state = 4, .external_lex_state = 3}, + [1098] = {.lex_state = 2, .external_lex_state = 3}, + [1099] = {.lex_state = 4, .external_lex_state = 3}, + [1100] = {.lex_state = 2, .external_lex_state = 3}, + [1101] = {.lex_state = 2, .external_lex_state = 3}, + [1102] = {.lex_state = 4, .external_lex_state = 3}, + [1103] = {.lex_state = 4, .external_lex_state = 3}, + [1104] = {.lex_state = 4, .external_lex_state = 3}, + [1105] = {.lex_state = 2, .external_lex_state = 3}, + [1106] = {.lex_state = 4, .external_lex_state = 3}, [1107] = {.lex_state = 2, .external_lex_state = 3}, - [1108] = {.lex_state = 2, .external_lex_state = 3}, - [1109] = {.lex_state = 14, .external_lex_state = 3}, - [1110] = {.lex_state = 2, .external_lex_state = 3}, - [1111] = {.lex_state = 14, .external_lex_state = 3}, + [1108] = {.lex_state = 4, .external_lex_state = 3}, + [1109] = {.lex_state = 4, .external_lex_state = 3}, + [1110] = {.lex_state = 4, .external_lex_state = 3}, + [1111] = {.lex_state = 4, .external_lex_state = 3}, [1112] = {.lex_state = 2, .external_lex_state = 3}, - [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 14, .external_lex_state = 3}, - [1115] = {.lex_state = 2, .external_lex_state = 3}, - [1116] = {.lex_state = 14, .external_lex_state = 3}, - [1117] = {.lex_state = 14, .external_lex_state = 3}, - [1118] = {.lex_state = 14, .external_lex_state = 3}, - [1119] = {.lex_state = 14, .external_lex_state = 3}, - [1120] = {.lex_state = 2, .external_lex_state = 3}, - [1121] = {.lex_state = 14, .external_lex_state = 3}, - [1122] = {.lex_state = 14, .external_lex_state = 3}, - [1123] = {.lex_state = 14, .external_lex_state = 3}, - [1124] = {.lex_state = 14, .external_lex_state = 3}, - [1125] = {.lex_state = 14, .external_lex_state = 3}, - [1126] = {.lex_state = 14, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .external_lex_state = 3}, - [1128] = {.lex_state = 2, .external_lex_state = 3}, - [1129] = {.lex_state = 14, .external_lex_state = 3}, - [1130] = {.lex_state = 14, .external_lex_state = 3}, - [1131] = {.lex_state = 14, .external_lex_state = 3}, - [1132] = {.lex_state = 14, .external_lex_state = 3}, - [1133] = {.lex_state = 14, .external_lex_state = 3}, - [1134] = {.lex_state = 2, .external_lex_state = 3}, + [1113] = {.lex_state = 4, .external_lex_state = 3}, + [1114] = {.lex_state = 2, .external_lex_state = 3}, + [1115] = {.lex_state = 4, .external_lex_state = 3}, + [1116] = {.lex_state = 4, .external_lex_state = 3}, + [1117] = {.lex_state = 2, .external_lex_state = 3}, + [1118] = {.lex_state = 4, .external_lex_state = 3}, + [1119] = {.lex_state = 4, .external_lex_state = 3}, + [1120] = {.lex_state = 4, .external_lex_state = 3}, + [1121] = {.lex_state = 4, .external_lex_state = 3}, + [1122] = {.lex_state = 2, .external_lex_state = 3}, + [1123] = {.lex_state = 4, .external_lex_state = 3}, + [1124] = {.lex_state = 4, .external_lex_state = 3}, + [1125] = {.lex_state = 4, .external_lex_state = 3}, + [1126] = {.lex_state = 4, .external_lex_state = 3}, + [1127] = {.lex_state = 4, .external_lex_state = 3}, + [1128] = {.lex_state = 4, .external_lex_state = 3}, + [1129] = {.lex_state = 2, .external_lex_state = 3}, + [1130] = {.lex_state = 4, .external_lex_state = 3}, + [1131] = {.lex_state = 2, .external_lex_state = 3}, + [1132] = {.lex_state = 4, .external_lex_state = 3}, + [1133] = {.lex_state = 2, .external_lex_state = 3}, + [1134] = {.lex_state = 4, .external_lex_state = 3}, [1135] = {.lex_state = 2, .external_lex_state = 3}, - [1136] = {.lex_state = 14, .external_lex_state = 3}, - [1137] = {.lex_state = 2, .external_lex_state = 3}, - [1138] = {.lex_state = 2, .external_lex_state = 3}, - [1139] = {.lex_state = 14, .external_lex_state = 3}, - [1140] = {.lex_state = 14, .external_lex_state = 3}, - [1141] = {.lex_state = 14, .external_lex_state = 3}, - [1142] = {.lex_state = 14, .external_lex_state = 3}, - [1143] = {.lex_state = 14, .external_lex_state = 3}, - [1144] = {.lex_state = 14, .external_lex_state = 3}, - [1145] = {.lex_state = 14, .external_lex_state = 3}, - [1146] = {.lex_state = 14, .external_lex_state = 3}, - [1147] = {.lex_state = 14, .external_lex_state = 3}, - [1148] = {.lex_state = 14, .external_lex_state = 3}, - [1149] = {.lex_state = 14, .external_lex_state = 3}, - [1150] = {.lex_state = 14, .external_lex_state = 3}, - [1151] = {.lex_state = 14, .external_lex_state = 3}, - [1152] = {.lex_state = 14, .external_lex_state = 3}, - [1153] = {.lex_state = 14, .external_lex_state = 3}, - [1154] = {.lex_state = 14, .external_lex_state = 3}, - [1155] = {.lex_state = 14, .external_lex_state = 3}, - [1156] = {.lex_state = 14, .external_lex_state = 3}, - [1157] = {.lex_state = 14, .external_lex_state = 3}, - [1158] = {.lex_state = 14, .external_lex_state = 3}, - [1159] = {.lex_state = 14, .external_lex_state = 3}, - [1160] = {.lex_state = 2, .external_lex_state = 3}, - [1161] = {.lex_state = 2, .external_lex_state = 3}, - [1162] = {.lex_state = 4, .external_lex_state = 3}, + [1136] = {.lex_state = 2, .external_lex_state = 3}, + [1137] = {.lex_state = 4, .external_lex_state = 3}, + [1138] = {.lex_state = 4, .external_lex_state = 3}, + [1139] = {.lex_state = 4, .external_lex_state = 3}, + [1140] = {.lex_state = 2, .external_lex_state = 3}, + [1141] = {.lex_state = 2, .external_lex_state = 3}, + [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1143] = {.lex_state = 2, .external_lex_state = 3}, + [1144] = {.lex_state = 4, .external_lex_state = 3}, + [1145] = {.lex_state = 2, .external_lex_state = 3}, + [1146] = {.lex_state = 4, .external_lex_state = 3}, + [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 = 5, .external_lex_state = 2}, + [1153] = {.lex_state = 2, .external_lex_state = 3}, + [1154] = {.lex_state = 2, .external_lex_state = 3}, + [1155] = {.lex_state = 2, .external_lex_state = 3}, + [1156] = {.lex_state = 7, .external_lex_state = 3}, + [1157] = {.lex_state = 2, .external_lex_state = 3}, + [1158] = {.lex_state = 2, .external_lex_state = 3}, + [1159] = {.lex_state = 7, .external_lex_state = 3}, + [1160] = {.lex_state = 7, .external_lex_state = 3}, + [1161] = {.lex_state = 5, .external_lex_state = 2}, + [1162] = {.lex_state = 7, .external_lex_state = 3}, [1163] = {.lex_state = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 4, .external_lex_state = 3}, - [1165] = {.lex_state = 2, .external_lex_state = 3}, - [1166] = {.lex_state = 5, .external_lex_state = 2}, - [1167] = {.lex_state = 2, .external_lex_state = 3}, + [1164] = {.lex_state = 2, .external_lex_state = 3}, + [1165] = {.lex_state = 7, .external_lex_state = 3}, + [1166] = {.lex_state = 2, .external_lex_state = 3}, + [1167] = {.lex_state = 7, .external_lex_state = 3}, [1168] = {.lex_state = 2, .external_lex_state = 3}, - [1169] = {.lex_state = 4, .external_lex_state = 3}, - [1170] = {.lex_state = 2, .external_lex_state = 3}, + [1169] = {.lex_state = 2, .external_lex_state = 3}, + [1170] = {.lex_state = 7, .external_lex_state = 3}, [1171] = {.lex_state = 2, .external_lex_state = 3}, - [1172] = {.lex_state = 4, .external_lex_state = 3}, - [1173] = {.lex_state = 2, .external_lex_state = 3}, - [1174] = {.lex_state = 4, .external_lex_state = 3}, - [1175] = {.lex_state = 4, .external_lex_state = 3}, + [1172] = {.lex_state = 7, .external_lex_state = 3}, + [1173] = {.lex_state = 7, .external_lex_state = 3}, + [1174] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 2, .external_lex_state = 3}, [1176] = {.lex_state = 2, .external_lex_state = 3}, - [1177] = {.lex_state = 5, .external_lex_state = 2}, - [1178] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, - [1183] = {.lex_state = 2, .external_lex_state = 3}, - [1184] = {.lex_state = 4, .external_lex_state = 3}, - [1185] = {.lex_state = 2, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, - [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 4, .external_lex_state = 3}, + [1182] = {.lex_state = 5, .external_lex_state = 2}, + [1183] = {.lex_state = 5, .external_lex_state = 2}, + [1184] = {.lex_state = 7, .external_lex_state = 3}, + [1185] = {.lex_state = 7, .external_lex_state = 3}, + [1186] = {.lex_state = 7, .external_lex_state = 3}, + [1187] = {.lex_state = 7, .external_lex_state = 3}, + [1188] = {.lex_state = 7, .external_lex_state = 3}, [1189] = {.lex_state = 2, .external_lex_state = 3}, - [1190] = {.lex_state = 2, .external_lex_state = 3}, - [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 = 4, .external_lex_state = 3}, - [1195] = {.lex_state = 4, .external_lex_state = 3}, - [1196] = {.lex_state = 4, .external_lex_state = 3}, - [1197] = {.lex_state = 4, .external_lex_state = 3}, - [1198] = {.lex_state = 4, .external_lex_state = 3}, - [1199] = {.lex_state = 4, .external_lex_state = 3}, - [1200] = {.lex_state = 5, .external_lex_state = 2}, - [1201] = {.lex_state = 4, .external_lex_state = 3}, - [1202] = {.lex_state = 4, .external_lex_state = 3}, - [1203] = {.lex_state = 2, .external_lex_state = 3}, - [1204] = {.lex_state = 5, .external_lex_state = 2}, - [1205] = {.lex_state = 2, .external_lex_state = 3}, - [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 5, .external_lex_state = 2}, - [1208] = {.lex_state = 5, .external_lex_state = 2}, - [1209] = {.lex_state = 5, .external_lex_state = 2}, - [1210] = {.lex_state = 4, .external_lex_state = 3}, - [1211] = {.lex_state = 4, .external_lex_state = 3}, - [1212] = {.lex_state = 4, .external_lex_state = 3}, + [1190] = {.lex_state = 7, .external_lex_state = 3}, + [1191] = {.lex_state = 7, .external_lex_state = 3}, + [1192] = {.lex_state = 7, .external_lex_state = 3}, + [1193] = {.lex_state = 2, .external_lex_state = 3}, + [1194] = {.lex_state = 5, .external_lex_state = 2}, + [1195] = {.lex_state = 2, .external_lex_state = 3}, + [1196] = {.lex_state = 5, .external_lex_state = 2}, + [1197] = {.lex_state = 7, .external_lex_state = 3}, + [1198] = {.lex_state = 7, .external_lex_state = 3}, + [1199] = {.lex_state = 2, .external_lex_state = 3}, + [1200] = {.lex_state = 2, .external_lex_state = 3}, + [1201] = {.lex_state = 7, .external_lex_state = 3}, + [1202] = {.lex_state = 2, .external_lex_state = 3}, + [1203] = {.lex_state = 7, .external_lex_state = 3}, + [1204] = {.lex_state = 2, .external_lex_state = 3}, + [1205] = {.lex_state = 7, .external_lex_state = 3}, + [1206] = {.lex_state = 7, .external_lex_state = 3}, + [1207] = {.lex_state = 2, .external_lex_state = 3}, + [1208] = {.lex_state = 2, .external_lex_state = 3}, + [1209] = {.lex_state = 7, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1212] = {.lex_state = 2, .external_lex_state = 3}, [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, - [1215] = {.lex_state = 4, .external_lex_state = 3}, - [1216] = {.lex_state = 4, .external_lex_state = 3}, - [1217] = {.lex_state = 2, .external_lex_state = 3}, - [1218] = {.lex_state = 4, .external_lex_state = 3}, - [1219] = {.lex_state = 5, .external_lex_state = 2}, + [1215] = {.lex_state = 2, .external_lex_state = 3}, + [1216] = {.lex_state = 2, .external_lex_state = 3}, + [1217] = {.lex_state = 7, .external_lex_state = 3}, + [1218] = {.lex_state = 7, .external_lex_state = 3}, + [1219] = {.lex_state = 2, .external_lex_state = 3}, [1220] = {.lex_state = 2, .external_lex_state = 3}, [1221] = {.lex_state = 2, .external_lex_state = 3}, [1222] = {.lex_state = 2, .external_lex_state = 3}, - [1223] = {.lex_state = 4, .external_lex_state = 3}, + [1223] = {.lex_state = 2, .external_lex_state = 3}, [1224] = {.lex_state = 2, .external_lex_state = 3}, [1225] = {.lex_state = 2, .external_lex_state = 3}, [1226] = {.lex_state = 2, .external_lex_state = 3}, [1227] = {.lex_state = 2, .external_lex_state = 3}, [1228] = {.lex_state = 2, .external_lex_state = 3}, [1229] = {.lex_state = 2, .external_lex_state = 3}, - [1230] = {.lex_state = 4, .external_lex_state = 3}, + [1230] = {.lex_state = 2, .external_lex_state = 3}, [1231] = {.lex_state = 2, .external_lex_state = 3}, - [1232] = {.lex_state = 4, .external_lex_state = 3}, + [1232] = {.lex_state = 2, .external_lex_state = 3}, [1233] = {.lex_state = 2, .external_lex_state = 3}, [1234] = {.lex_state = 2, .external_lex_state = 3}, [1235] = {.lex_state = 2, .external_lex_state = 3}, @@ -17259,7 +15918,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1248] = {.lex_state = 2, .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}, + [1251] = {.lex_state = 7, .external_lex_state = 3}, [1252] = {.lex_state = 2, .external_lex_state = 3}, [1253] = {.lex_state = 2, .external_lex_state = 3}, [1254] = {.lex_state = 2, .external_lex_state = 3}, @@ -17305,7 +15964,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1294] = {.lex_state = 2, .external_lex_state = 3}, [1295] = {.lex_state = 2, .external_lex_state = 3}, [1296] = {.lex_state = 2, .external_lex_state = 3}, - [1297] = {.lex_state = 4, .external_lex_state = 3}, + [1297] = {.lex_state = 2, .external_lex_state = 3}, [1298] = {.lex_state = 2, .external_lex_state = 3}, [1299] = {.lex_state = 2, .external_lex_state = 3}, [1300] = {.lex_state = 2, .external_lex_state = 3}, @@ -17319,13 +15978,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1308] = {.lex_state = 2, .external_lex_state = 3}, [1309] = {.lex_state = 2, .external_lex_state = 3}, [1310] = {.lex_state = 2, .external_lex_state = 3}, - [1311] = {.lex_state = 2, .external_lex_state = 3}, + [1311] = {.lex_state = 7, .external_lex_state = 3}, [1312] = {.lex_state = 2, .external_lex_state = 3}, [1313] = {.lex_state = 2, .external_lex_state = 3}, [1314] = {.lex_state = 2, .external_lex_state = 3}, [1315] = {.lex_state = 2, .external_lex_state = 3}, [1316] = {.lex_state = 2, .external_lex_state = 3}, - [1317] = {.lex_state = 2, .external_lex_state = 3}, + [1317] = {.lex_state = 7, .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}, @@ -17339,100 +15998,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1328] = {.lex_state = 2, .external_lex_state = 3}, [1329] = {.lex_state = 2, .external_lex_state = 3}, [1330] = {.lex_state = 2, .external_lex_state = 3}, - [1331] = {.lex_state = 2, .external_lex_state = 3}, - [1332] = {.lex_state = 2, .external_lex_state = 3}, - [1333] = {.lex_state = 2, .external_lex_state = 3}, - [1334] = {.lex_state = 2, .external_lex_state = 3}, - [1335] = {.lex_state = 2, .external_lex_state = 3}, - [1336] = {.lex_state = 2, .external_lex_state = 3}, - [1337] = {.lex_state = 2, .external_lex_state = 3}, - [1338] = {.lex_state = 2, .external_lex_state = 3}, - [1339] = {.lex_state = 2, .external_lex_state = 3}, - [1340] = {.lex_state = 2, .external_lex_state = 3}, - [1341] = {.lex_state = 4, .external_lex_state = 3}, - [1342] = {.lex_state = 2, .external_lex_state = 3}, - [1343] = {.lex_state = 4, .external_lex_state = 3}, - [1344] = {.lex_state = 2, .external_lex_state = 3}, - [1345] = {.lex_state = 2, .external_lex_state = 3}, - [1346] = {.lex_state = 2, .external_lex_state = 3}, - [1347] = {.lex_state = 2, .external_lex_state = 3}, - [1348] = {.lex_state = 4, .external_lex_state = 3}, - [1349] = {.lex_state = 4, .external_lex_state = 3}, - [1350] = {.lex_state = 4, .external_lex_state = 3}, - [1351] = {.lex_state = 4, .external_lex_state = 3}, - [1352] = {.lex_state = 4, .external_lex_state = 3}, - [1353] = {.lex_state = 4, .external_lex_state = 3}, - [1354] = {.lex_state = 4, .external_lex_state = 3}, - [1355] = {.lex_state = 4, .external_lex_state = 3}, - [1356] = {.lex_state = 4, .external_lex_state = 3}, - [1357] = {.lex_state = 4, .external_lex_state = 3}, - [1358] = {.lex_state = 18, .external_lex_state = 3}, - [1359] = {.lex_state = 18, .external_lex_state = 3}, - [1360] = {.lex_state = 8, .external_lex_state = 3}, - [1361] = {.lex_state = 8, .external_lex_state = 3}, - [1362] = {.lex_state = 8, .external_lex_state = 3}, - [1363] = {.lex_state = 8, .external_lex_state = 3}, - [1364] = {.lex_state = 8, .external_lex_state = 3}, - [1365] = {.lex_state = 8, .external_lex_state = 3}, - [1366] = {.lex_state = 8, .external_lex_state = 3}, - [1367] = {.lex_state = 8, .external_lex_state = 3}, - [1368] = {.lex_state = 8, .external_lex_state = 3}, - [1369] = {.lex_state = 8, .external_lex_state = 3}, - [1370] = {.lex_state = 8, .external_lex_state = 3}, - [1371] = {.lex_state = 8, .external_lex_state = 3}, - [1372] = {.lex_state = 4, .external_lex_state = 3}, - [1373] = {.lex_state = 4, .external_lex_state = 3}, - [1374] = {.lex_state = 4, .external_lex_state = 3}, + [1331] = {.lex_state = 7, .external_lex_state = 3}, + [1332] = {.lex_state = 7, .external_lex_state = 3}, + [1333] = {.lex_state = 7, .external_lex_state = 3}, + [1334] = {.lex_state = 7, .external_lex_state = 3}, + [1335] = {.lex_state = 7, .external_lex_state = 3}, + [1336] = {.lex_state = 7, .external_lex_state = 3}, + [1337] = {.lex_state = 7, .external_lex_state = 3}, + [1338] = {.lex_state = 7, .external_lex_state = 3}, + [1339] = {.lex_state = 7, .external_lex_state = 3}, + [1340] = {.lex_state = 7, .external_lex_state = 3}, + [1341] = {.lex_state = 7, .external_lex_state = 3}, + [1342] = {.lex_state = 7, .external_lex_state = 3}, + [1343] = {.lex_state = 7, .external_lex_state = 3}, + [1344] = {.lex_state = 7, .external_lex_state = 3}, + [1345] = {.lex_state = 7, .external_lex_state = 3}, + [1346] = {.lex_state = 7, .external_lex_state = 3}, + [1347] = {.lex_state = 7, .external_lex_state = 3}, + [1348] = {.lex_state = 18, .external_lex_state = 3}, + [1349] = {.lex_state = 18, .external_lex_state = 3}, + [1350] = {.lex_state = 9, .external_lex_state = 3}, + [1351] = {.lex_state = 9, .external_lex_state = 3}, + [1352] = {.lex_state = 9, .external_lex_state = 3}, + [1353] = {.lex_state = 9, .external_lex_state = 3}, + [1354] = {.lex_state = 9, .external_lex_state = 3}, + [1355] = {.lex_state = 9, .external_lex_state = 3}, + [1356] = {.lex_state = 9, .external_lex_state = 3}, + [1357] = {.lex_state = 9, .external_lex_state = 3}, + [1358] = {.lex_state = 9, .external_lex_state = 3}, + [1359] = {.lex_state = 9, .external_lex_state = 3}, + [1360] = {.lex_state = 9, .external_lex_state = 3}, + [1361] = {.lex_state = 9, .external_lex_state = 3}, + [1362] = {.lex_state = 7, .external_lex_state = 3}, + [1363] = {.lex_state = 18, .external_lex_state = 3}, + [1364] = {.lex_state = 18, .external_lex_state = 3}, + [1365] = {.lex_state = 7, .external_lex_state = 3}, + [1366] = {.lex_state = 18, .external_lex_state = 3}, + [1367] = {.lex_state = 7, .external_lex_state = 3}, + [1368] = {.lex_state = 18, .external_lex_state = 3}, + [1369] = {.lex_state = 7, .external_lex_state = 3}, + [1370] = {.lex_state = 18, .external_lex_state = 3}, + [1371] = {.lex_state = 7, .external_lex_state = 3}, + [1372] = {.lex_state = 18, .external_lex_state = 3}, + [1373] = {.lex_state = 18, .external_lex_state = 3}, + [1374] = {.lex_state = 7, .external_lex_state = 3}, [1375] = {.lex_state = 18, .external_lex_state = 3}, - [1376] = {.lex_state = 18, .external_lex_state = 3}, - [1377] = {.lex_state = 18, .external_lex_state = 3}, + [1376] = {.lex_state = 7, .external_lex_state = 3}, + [1377] = {.lex_state = 7, .external_lex_state = 3}, [1378] = {.lex_state = 18, .external_lex_state = 3}, - [1379] = {.lex_state = 4, .external_lex_state = 3}, - [1380] = {.lex_state = 18, .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}, + [1379] = {.lex_state = 7, .external_lex_state = 3}, + [1380] = {.lex_state = 7, .external_lex_state = 3}, + [1381] = {.lex_state = 7, .external_lex_state = 3}, + [1382] = {.lex_state = 7, .external_lex_state = 3}, + [1383] = {.lex_state = 7, .external_lex_state = 3}, + [1384] = {.lex_state = 7, .external_lex_state = 3}, [1385] = {.lex_state = 18, .external_lex_state = 3}, - [1386] = {.lex_state = 4, .external_lex_state = 3}, - [1387] = {.lex_state = 4, .external_lex_state = 3}, - [1388] = {.lex_state = 4, .external_lex_state = 3}, - [1389] = {.lex_state = 4, .external_lex_state = 3}, + [1386] = {.lex_state = 18, .external_lex_state = 3}, + [1387] = {.lex_state = 18, .external_lex_state = 3}, + [1388] = {.lex_state = 7, .external_lex_state = 3}, + [1389] = {.lex_state = 18, .external_lex_state = 3}, [1390] = {.lex_state = 18, .external_lex_state = 3}, - [1391] = {.lex_state = 4, .external_lex_state = 3}, - [1392] = {.lex_state = 4, .external_lex_state = 3}, - [1393] = {.lex_state = 4, .external_lex_state = 3}, + [1391] = {.lex_state = 18, .external_lex_state = 3}, + [1392] = {.lex_state = 7, .external_lex_state = 3}, + [1393] = {.lex_state = 18, .external_lex_state = 3}, [1394] = {.lex_state = 18, .external_lex_state = 3}, [1395] = {.lex_state = 18, .external_lex_state = 3}, - [1396] = {.lex_state = 18, .external_lex_state = 3}, - [1397] = {.lex_state = 18, .external_lex_state = 3}, - [1398] = {.lex_state = 4, .external_lex_state = 3}, - [1399] = {.lex_state = 18, .external_lex_state = 3}, - [1400] = {.lex_state = 4, .external_lex_state = 3}, + [1396] = {.lex_state = 9, .external_lex_state = 3}, + [1397] = {.lex_state = 7, .external_lex_state = 3}, + [1398] = {.lex_state = 7, .external_lex_state = 3}, + [1399] = {.lex_state = 9, .external_lex_state = 3}, + [1400] = {.lex_state = 18, .external_lex_state = 3}, [1401] = {.lex_state = 18, .external_lex_state = 3}, - [1402] = {.lex_state = 4, .external_lex_state = 3}, - [1403] = {.lex_state = 4, .external_lex_state = 3}, - [1404] = {.lex_state = 8, .external_lex_state = 3}, - [1405] = {.lex_state = 8, .external_lex_state = 3}, - [1406] = {.lex_state = 18, .external_lex_state = 3}, - [1407] = {.lex_state = 18, .external_lex_state = 3}, - [1408] = {.lex_state = 4, .external_lex_state = 3}, - [1409] = {.lex_state = 18, .external_lex_state = 3}, + [1402] = {.lex_state = 18, .external_lex_state = 3}, + [1403] = {.lex_state = 9, .external_lex_state = 3}, + [1404] = {.lex_state = 7, .external_lex_state = 3}, + [1405] = {.lex_state = 7, .external_lex_state = 3}, + [1406] = {.lex_state = 7, .external_lex_state = 3}, + [1407] = {.lex_state = 7, .external_lex_state = 3}, + [1408] = {.lex_state = 7, .external_lex_state = 3}, + [1409] = {.lex_state = 7, .external_lex_state = 3}, [1410] = {.lex_state = 18, .external_lex_state = 3}, [1411] = {.lex_state = 18, .external_lex_state = 3}, - [1412] = {.lex_state = 4, .external_lex_state = 3}, - [1413] = {.lex_state = 4, .external_lex_state = 3}, - [1414] = {.lex_state = 8, .external_lex_state = 3}, + [1412] = {.lex_state = 18, .external_lex_state = 3}, + [1413] = {.lex_state = 18, .external_lex_state = 3}, + [1414] = {.lex_state = 18, .external_lex_state = 3}, [1415] = {.lex_state = 18, .external_lex_state = 3}, - [1416] = {.lex_state = 4, .external_lex_state = 3}, + [1416] = {.lex_state = 18, .external_lex_state = 3}, [1417] = {.lex_state = 18, .external_lex_state = 3}, - [1418] = {.lex_state = 4, .external_lex_state = 3}, - [1419] = {.lex_state = 4, .external_lex_state = 3}, - [1420] = {.lex_state = 4, .external_lex_state = 3}, + [1418] = {.lex_state = 18, .external_lex_state = 3}, + [1419] = {.lex_state = 18, .external_lex_state = 3}, + [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 = 8, .external_lex_state = 3}, - [1424] = {.lex_state = 4, .external_lex_state = 3}, + [1422] = {.lex_state = 7, .external_lex_state = 3}, + [1423] = {.lex_state = 7, .external_lex_state = 3}, + [1424] = {.lex_state = 7, .external_lex_state = 3}, [1425] = {.lex_state = 18, .external_lex_state = 3}, [1426] = {.lex_state = 18, .external_lex_state = 3}, [1427] = {.lex_state = 18, .external_lex_state = 3}, @@ -17446,869 +16105,869 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1435] = {.lex_state = 18, .external_lex_state = 3}, [1436] = {.lex_state = 18, .external_lex_state = 3}, [1437] = {.lex_state = 18, .external_lex_state = 3}, - [1438] = {.lex_state = 4, .external_lex_state = 3}, + [1438] = {.lex_state = 18, .external_lex_state = 3}, [1439] = {.lex_state = 18, .external_lex_state = 3}, - [1440] = {.lex_state = 18, .external_lex_state = 3}, + [1440] = {.lex_state = 9, .external_lex_state = 3}, [1441] = {.lex_state = 18, .external_lex_state = 3}, - [1442] = {.lex_state = 18, .external_lex_state = 3}, + [1442] = {.lex_state = 7, .external_lex_state = 3}, [1443] = {.lex_state = 18, .external_lex_state = 3}, - [1444] = {.lex_state = 18, .external_lex_state = 3}, - [1445] = {.lex_state = 18, .external_lex_state = 3}, - [1446] = {.lex_state = 18, .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 = 18, .external_lex_state = 3}, - [1448] = {.lex_state = 18, .external_lex_state = 3}, - [1449] = {.lex_state = 4, .external_lex_state = 3}, - [1450] = {.lex_state = 18, .external_lex_state = 3}, - [1451] = {.lex_state = 18, .external_lex_state = 3}, - [1452] = {.lex_state = 18, .external_lex_state = 3}, + [1448] = {.lex_state = 7, .external_lex_state = 3}, + [1449] = {.lex_state = 7, .external_lex_state = 3}, + [1450] = {.lex_state = 7, .external_lex_state = 3}, + [1451] = {.lex_state = 7, .external_lex_state = 3}, + [1452] = {.lex_state = 7, .external_lex_state = 3}, [1453] = {.lex_state = 18, .external_lex_state = 3}, - [1454] = {.lex_state = 4, .external_lex_state = 3}, - [1455] = {.lex_state = 4, .external_lex_state = 3}, - [1456] = {.lex_state = 4, .external_lex_state = 3}, - [1457] = {.lex_state = 4, .external_lex_state = 3}, - [1458] = {.lex_state = 4, .external_lex_state = 3}, - [1459] = {.lex_state = 4, .external_lex_state = 3}, - [1460] = {.lex_state = 4, .external_lex_state = 3}, - [1461] = {.lex_state = 4, .external_lex_state = 3}, - [1462] = {.lex_state = 4, .external_lex_state = 3}, - [1463] = {.lex_state = 8, .external_lex_state = 3}, + [1454] = {.lex_state = 9, .external_lex_state = 3}, + [1455] = {.lex_state = 18, .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}, + [1459] = {.lex_state = 18, .external_lex_state = 3}, + [1460] = {.lex_state = 18, .external_lex_state = 3}, + [1461] = {.lex_state = 18, .external_lex_state = 3}, + [1462] = {.lex_state = 7, .external_lex_state = 3}, + [1463] = {.lex_state = 18, .external_lex_state = 3}, [1464] = {.lex_state = 18, .external_lex_state = 3}, - [1465] = {.lex_state = 18, .external_lex_state = 3}, + [1465] = {.lex_state = 9, .external_lex_state = 3}, [1466] = {.lex_state = 18, .external_lex_state = 3}, [1467] = {.lex_state = 18, .external_lex_state = 3}, - [1468] = {.lex_state = 18, .external_lex_state = 3}, + [1468] = {.lex_state = 9, .external_lex_state = 3}, [1469] = {.lex_state = 18, .external_lex_state = 3}, - [1470] = {.lex_state = 8, .external_lex_state = 3}, - [1471] = {.lex_state = 8, .external_lex_state = 3}, + [1470] = {.lex_state = 18, .external_lex_state = 3}, + [1471] = {.lex_state = 18, .external_lex_state = 3}, [1472] = {.lex_state = 18, .external_lex_state = 3}, [1473] = {.lex_state = 18, .external_lex_state = 3}, [1474] = {.lex_state = 18, .external_lex_state = 3}, - [1475] = {.lex_state = 8, .external_lex_state = 3}, + [1475] = {.lex_state = 9, .external_lex_state = 3}, [1476] = {.lex_state = 18, .external_lex_state = 3}, - [1477] = {.lex_state = 18, .external_lex_state = 3}, + [1477] = {.lex_state = 9, .external_lex_state = 3}, [1478] = {.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}, + [1480] = {.lex_state = 18, .external_lex_state = 3}, + [1481] = {.lex_state = 9, .external_lex_state = 3}, + [1482] = {.lex_state = 9, .external_lex_state = 3}, [1483] = {.lex_state = 18, .external_lex_state = 3}, [1484] = {.lex_state = 18, .external_lex_state = 3}, - [1485] = {.lex_state = 8, .external_lex_state = 3}, - [1486] = {.lex_state = 18, .external_lex_state = 3}, - [1487] = {.lex_state = 8, .external_lex_state = 3}, - [1488] = {.lex_state = 18, .external_lex_state = 3}, + [1485] = {.lex_state = 9, .external_lex_state = 3}, + [1486] = {.lex_state = 9, .external_lex_state = 3}, + [1487] = {.lex_state = 9, .external_lex_state = 3}, + [1488] = {.lex_state = 9, .external_lex_state = 3}, [1489] = {.lex_state = 18, .external_lex_state = 3}, [1490] = {.lex_state = 18, .external_lex_state = 3}, - [1491] = {.lex_state = 18, .external_lex_state = 3}, - [1492] = {.lex_state = 8, .external_lex_state = 3}, + [1491] = {.lex_state = 9, .external_lex_state = 3}, + [1492] = {.lex_state = 18, .external_lex_state = 3}, [1493] = {.lex_state = 18, .external_lex_state = 3}, [1494] = {.lex_state = 18, .external_lex_state = 3}, [1495] = {.lex_state = 18, .external_lex_state = 3}, - [1496] = {.lex_state = 8, .external_lex_state = 3}, - [1497] = {.lex_state = 18, .external_lex_state = 3}, - [1498] = {.lex_state = 18, .external_lex_state = 3}, - [1499] = {.lex_state = 18, .external_lex_state = 3}, - [1500] = {.lex_state = 18, .external_lex_state = 3}, - [1501] = {.lex_state = 18, .external_lex_state = 3}, - [1502] = {.lex_state = 4, .external_lex_state = 3}, - [1503] = {.lex_state = 18, .external_lex_state = 3}, - [1504] = {.lex_state = 8, .external_lex_state = 3}, - [1505] = {.lex_state = 8, .external_lex_state = 3}, - [1506] = {.lex_state = 8, .external_lex_state = 3}, - [1507] = {.lex_state = 8, .external_lex_state = 3}, - [1508] = {.lex_state = 8, .external_lex_state = 3}, - [1509] = {.lex_state = 13, .external_lex_state = 3}, - [1510] = {.lex_state = 8, .external_lex_state = 3}, - [1511] = {.lex_state = 13, .external_lex_state = 3}, - [1512] = {.lex_state = 8, .external_lex_state = 3}, - [1513] = {.lex_state = 8, .external_lex_state = 3}, - [1514] = {.lex_state = 13, .external_lex_state = 3}, - [1515] = {.lex_state = 8, .external_lex_state = 3}, - [1516] = {.lex_state = 8, .external_lex_state = 3}, - [1517] = {.lex_state = 13, .external_lex_state = 3}, - [1518] = {.lex_state = 8, .external_lex_state = 3}, - [1519] = {.lex_state = 4, .external_lex_state = 3}, - [1520] = {.lex_state = 4, .external_lex_state = 3}, - [1521] = {.lex_state = 8, .external_lex_state = 3}, - [1522] = {.lex_state = 18, .external_lex_state = 3}, - [1523] = {.lex_state = 15, .external_lex_state = 3}, - [1524] = {.lex_state = 4, .external_lex_state = 3}, - [1525] = {.lex_state = 4, .external_lex_state = 3}, - [1526] = {.lex_state = 4, .external_lex_state = 3}, - [1527] = {.lex_state = 4, .external_lex_state = 3}, - [1528] = {.lex_state = 4, .external_lex_state = 3}, - [1529] = {.lex_state = 18, .external_lex_state = 3}, - [1530] = {.lex_state = 4, .external_lex_state = 3}, - [1531] = {.lex_state = 4, .external_lex_state = 3}, - [1532] = {.lex_state = 18, .external_lex_state = 3}, - [1533] = {.lex_state = 4, .external_lex_state = 3}, - [1534] = {.lex_state = 18, .external_lex_state = 3}, + [1496] = {.lex_state = 18, .external_lex_state = 3}, + [1497] = {.lex_state = 9, .external_lex_state = 3}, + [1498] = {.lex_state = 14, .external_lex_state = 3}, + [1499] = {.lex_state = 9, .external_lex_state = 3}, + [1500] = {.lex_state = 14, .external_lex_state = 3}, + [1501] = {.lex_state = 9, .external_lex_state = 3}, + [1502] = {.lex_state = 9, .external_lex_state = 3}, + [1503] = {.lex_state = 14, .external_lex_state = 3}, + [1504] = {.lex_state = 9, .external_lex_state = 3}, + [1505] = {.lex_state = 9, .external_lex_state = 3}, + [1506] = {.lex_state = 9, .external_lex_state = 3}, + [1507] = {.lex_state = 14, .external_lex_state = 3}, + [1508] = {.lex_state = 9, .external_lex_state = 3}, + [1509] = {.lex_state = 7, .external_lex_state = 3}, + [1510] = {.lex_state = 7, .external_lex_state = 3}, + [1511] = {.lex_state = 15, .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 = 9, .external_lex_state = 3}, + [1516] = {.lex_state = 18, .external_lex_state = 3}, + [1517] = {.lex_state = 18, .external_lex_state = 3}, + [1518] = {.lex_state = 7, .external_lex_state = 3}, + [1519] = {.lex_state = 7, .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 = 18, .external_lex_state = 3}, + [1524] = {.lex_state = 7, .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 = 15, .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 = 18, .external_lex_state = 3}, - [1536] = {.lex_state = 18, .external_lex_state = 3}, - [1537] = {.lex_state = 4, .external_lex_state = 3}, - [1538] = {.lex_state = 4, .external_lex_state = 3}, - [1539] = {.lex_state = 4, .external_lex_state = 3}, - [1540] = {.lex_state = 4, .external_lex_state = 3}, - [1541] = {.lex_state = 4, .external_lex_state = 3}, - [1542] = {.lex_state = 4, .external_lex_state = 3}, - [1543] = {.lex_state = 4, .external_lex_state = 3}, - [1544] = {.lex_state = 4, .external_lex_state = 3}, - [1545] = {.lex_state = 4, .external_lex_state = 3}, - [1546] = {.lex_state = 4, .external_lex_state = 3}, + [1536] = {.lex_state = 7, .external_lex_state = 3}, + [1537] = {.lex_state = 7, .external_lex_state = 3}, + [1538] = {.lex_state = 7, .external_lex_state = 3}, + [1539] = {.lex_state = 7, .external_lex_state = 3}, + [1540] = {.lex_state = 7, .external_lex_state = 3}, + [1541] = {.lex_state = 18, .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 = 15, .external_lex_state = 3}, [1547] = {.lex_state = 4, .external_lex_state = 3}, - [1548] = {.lex_state = 4, .external_lex_state = 3}, - [1549] = {.lex_state = 15, .external_lex_state = 3}, - [1550] = {.lex_state = 4, .external_lex_state = 3}, - [1551] = {.lex_state = 4, .external_lex_state = 3}, - [1552] = {.lex_state = 4, .external_lex_state = 3}, - [1553] = {.lex_state = 4, .external_lex_state = 3}, - [1554] = {.lex_state = 4, .external_lex_state = 3}, - [1555] = {.lex_state = 4, .external_lex_state = 3}, - [1556] = {.lex_state = 4, .external_lex_state = 3}, - [1557] = {.lex_state = 4, .external_lex_state = 3}, - [1558] = {.lex_state = 4, .external_lex_state = 3}, - [1559] = {.lex_state = 15, .external_lex_state = 3}, - [1560] = {.lex_state = 4, .external_lex_state = 3}, - [1561] = {.lex_state = 18, .external_lex_state = 3}, - [1562] = {.lex_state = 4, .external_lex_state = 3}, - [1563] = {.lex_state = 4, .external_lex_state = 3}, - [1564] = {.lex_state = 4, .external_lex_state = 3}, + [1548] = {.lex_state = 7, .external_lex_state = 3}, + [1549] = {.lex_state = 18, .external_lex_state = 3}, + [1550] = {.lex_state = 18, .external_lex_state = 3}, + [1551] = {.lex_state = 7, .external_lex_state = 3}, + [1552] = {.lex_state = 7, .external_lex_state = 3}, + [1553] = {.lex_state = 7, .external_lex_state = 3}, + [1554] = {.lex_state = 7, .external_lex_state = 3}, + [1555] = {.lex_state = 7, .external_lex_state = 3}, + [1556] = {.lex_state = 7, .external_lex_state = 3}, + [1557] = {.lex_state = 7, .external_lex_state = 3}, + [1558] = {.lex_state = 7, .external_lex_state = 3}, + [1559] = {.lex_state = 7, .external_lex_state = 3}, + [1560] = {.lex_state = 15, .external_lex_state = 3}, + [1561] = {.lex_state = 4, .external_lex_state = 3}, + [1562] = {.lex_state = 15, .external_lex_state = 3}, + [1563] = {.lex_state = 7, .external_lex_state = 3}, + [1564] = {.lex_state = 14, .external_lex_state = 3}, [1565] = {.lex_state = 4, .external_lex_state = 3}, - [1566] = {.lex_state = 18, .external_lex_state = 3}, - [1567] = {.lex_state = 18, .external_lex_state = 3}, - [1568] = {.lex_state = 4, .external_lex_state = 3}, - [1569] = {.lex_state = 4, .external_lex_state = 3}, - [1570] = {.lex_state = 4, .external_lex_state = 3}, - [1571] = {.lex_state = 15, .external_lex_state = 3}, + [1566] = {.lex_state = 7, .external_lex_state = 3}, + [1567] = {.lex_state = 4, .external_lex_state = 3}, + [1568] = {.lex_state = 7, .external_lex_state = 3}, + [1569] = {.lex_state = 7, .external_lex_state = 3}, + [1570] = {.lex_state = 15, .external_lex_state = 3}, + [1571] = {.lex_state = 7, .external_lex_state = 3}, [1572] = {.lex_state = 4, .external_lex_state = 3}, - [1573] = {.lex_state = 4, .external_lex_state = 3}, - [1574] = {.lex_state = 4, .external_lex_state = 3}, - [1575] = {.lex_state = 0, .external_lex_state = 3}, - [1576] = {.lex_state = 4, .external_lex_state = 3}, - [1577] = {.lex_state = 15, .external_lex_state = 3}, - [1578] = {.lex_state = 15, .external_lex_state = 3}, - [1579] = {.lex_state = 4, .external_lex_state = 3}, - [1580] = {.lex_state = 4, .external_lex_state = 3}, + [1573] = {.lex_state = 7, .external_lex_state = 3}, + [1574] = {.lex_state = 0, .external_lex_state = 3}, + [1575] = {.lex_state = 7, .external_lex_state = 3}, + [1576] = {.lex_state = 7, .external_lex_state = 3}, + [1577] = {.lex_state = 7, .external_lex_state = 3}, + [1578] = {.lex_state = 7, .external_lex_state = 3}, + [1579] = {.lex_state = 7, .external_lex_state = 3}, + [1580] = {.lex_state = 7, .external_lex_state = 3}, [1581] = {.lex_state = 4, .external_lex_state = 3}, - [1582] = {.lex_state = 15, .external_lex_state = 3}, - [1583] = {.lex_state = 4, .external_lex_state = 3}, - [1584] = {.lex_state = 4, .external_lex_state = 3}, - [1585] = {.lex_state = 4, .external_lex_state = 3}, - [1586] = {.lex_state = 15, .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 = 13, .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 = 15, .external_lex_state = 3}, - [1605] = {.lex_state = 15, .external_lex_state = 3}, - [1606] = {.lex_state = 15, .external_lex_state = 3}, - [1607] = {.lex_state = 15, .external_lex_state = 3}, - [1608] = {.lex_state = 4, .external_lex_state = 3}, - [1609] = {.lex_state = 4, .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 = 0, .external_lex_state = 3}, - [1614] = {.lex_state = 4, .external_lex_state = 3}, - [1615] = {.lex_state = 4, .external_lex_state = 3}, - [1616] = {.lex_state = 4, .external_lex_state = 3}, - [1617] = {.lex_state = 0, .external_lex_state = 3}, - [1618] = {.lex_state = 0, .external_lex_state = 3}, + [1582] = {.lex_state = 7, .external_lex_state = 3}, + [1583] = {.lex_state = 7, .external_lex_state = 3}, + [1584] = {.lex_state = 7, .external_lex_state = 3}, + [1585] = {.lex_state = 7, .external_lex_state = 3}, + [1586] = {.lex_state = 7, .external_lex_state = 3}, + [1587] = {.lex_state = 15, .external_lex_state = 3}, + [1588] = {.lex_state = 7, .external_lex_state = 3}, + [1589] = {.lex_state = 7, .external_lex_state = 3}, + [1590] = {.lex_state = 7, .external_lex_state = 3}, + [1591] = {.lex_state = 15, .external_lex_state = 3}, + [1592] = {.lex_state = 7, .external_lex_state = 3}, + [1593] = {.lex_state = 7, .external_lex_state = 3}, + [1594] = {.lex_state = 15, .external_lex_state = 3}, + [1595] = {.lex_state = 7, .external_lex_state = 3}, + [1596] = {.lex_state = 7, .external_lex_state = 3}, + [1597] = {.lex_state = 15, .external_lex_state = 3}, + [1598] = {.lex_state = 15, .external_lex_state = 3}, + [1599] = {.lex_state = 15, .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 = 7, .external_lex_state = 3}, + [1604] = {.lex_state = 7, .external_lex_state = 3}, + [1605] = {.lex_state = 7, .external_lex_state = 3}, + [1606] = {.lex_state = 0, .external_lex_state = 3}, + [1607] = {.lex_state = 7, .external_lex_state = 3}, + [1608] = {.lex_state = 0, .external_lex_state = 3}, + [1609] = {.lex_state = 0, .external_lex_state = 3}, + [1610] = {.lex_state = 0, .external_lex_state = 3}, + [1611] = {.lex_state = 0, .external_lex_state = 3}, + [1612] = {.lex_state = 7, .external_lex_state = 3}, + [1613] = {.lex_state = 15, .external_lex_state = 3}, + [1614] = {.lex_state = 15, .external_lex_state = 3}, + [1615] = {.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 = 7, .external_lex_state = 3}, [1619] = {.lex_state = 0, .external_lex_state = 3}, - [1620] = {.lex_state = 4, .external_lex_state = 3}, - [1621] = {.lex_state = 4, .external_lex_state = 3}, - [1622] = {.lex_state = 4, .external_lex_state = 3}, - [1623] = {.lex_state = 15, .external_lex_state = 3}, - [1624] = {.lex_state = 15, .external_lex_state = 3}, - [1625] = {.lex_state = 0, .external_lex_state = 3}, - [1626] = {.lex_state = 4, .external_lex_state = 3}, - [1627] = {.lex_state = 4, .external_lex_state = 3}, - [1628] = {.lex_state = 4, .external_lex_state = 3}, - [1629] = {.lex_state = 4, .external_lex_state = 3}, - [1630] = {.lex_state = 0, .external_lex_state = 3}, + [1620] = {.lex_state = 7, .external_lex_state = 3}, + [1621] = {.lex_state = 7, .external_lex_state = 3}, + [1622] = {.lex_state = 0, .external_lex_state = 3}, + [1623] = {.lex_state = 7, .external_lex_state = 3}, + [1624] = {.lex_state = 0, .external_lex_state = 3}, + [1625] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, + [1630] = {.lex_state = 15, .external_lex_state = 3}, [1631] = {.lex_state = 0, .external_lex_state = 3}, - [1632] = {.lex_state = 4, .external_lex_state = 3}, - [1633] = {.lex_state = 0, .external_lex_state = 3}, + [1632] = {.lex_state = 15, .external_lex_state = 3}, + [1633] = {.lex_state = 7, .external_lex_state = 3}, [1634] = {.lex_state = 0, .external_lex_state = 3}, - [1635] = {.lex_state = 0, .external_lex_state = 3}, + [1635] = {.lex_state = 7, .external_lex_state = 3}, [1636] = {.lex_state = 0, .external_lex_state = 3}, - [1637] = {.lex_state = 4, .external_lex_state = 3}, + [1637] = {.lex_state = 0, .external_lex_state = 3}, [1638] = {.lex_state = 0, .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}, + [1641] = {.lex_state = 7, .external_lex_state = 3}, [1642] = {.lex_state = 0, .external_lex_state = 3}, - [1643] = {.lex_state = 15, .external_lex_state = 3}, - [1644] = {.lex_state = 4, .external_lex_state = 3}, - [1645] = {.lex_state = 15, .external_lex_state = 3}, - [1646] = {.lex_state = 4, .external_lex_state = 3}, - [1647] = {.lex_state = 0, .external_lex_state = 3}, - [1648] = {.lex_state = 0, .external_lex_state = 3}, - [1649] = {.lex_state = 0, .external_lex_state = 3}, - [1650] = {.lex_state = 4, .external_lex_state = 3}, - [1651] = {.lex_state = 4, .external_lex_state = 3}, - [1652] = {.lex_state = 0, .external_lex_state = 3}, - [1653] = {.lex_state = 0, .external_lex_state = 3}, - [1654] = {.lex_state = 0, .external_lex_state = 3}, - [1655] = {.lex_state = 4, .external_lex_state = 3}, - [1656] = {.lex_state = 4, .external_lex_state = 3}, - [1657] = {.lex_state = 0, .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 = 9, .external_lex_state = 3}, - [1663] = {.lex_state = 4, .external_lex_state = 3}, - [1664] = {.lex_state = 4, .external_lex_state = 3}, + [1643] = {.lex_state = 7, .external_lex_state = 3}, + [1644] = {.lex_state = 0, .external_lex_state = 3}, + [1645] = {.lex_state = 0, .external_lex_state = 3}, + [1646] = {.lex_state = 7, .external_lex_state = 3}, + [1647] = {.lex_state = 10, .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 = 14, .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 = 18, .external_lex_state = 3}, + [1660] = {.lex_state = 18, .external_lex_state = 3}, + [1661] = {.lex_state = 18, .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 = 4, .external_lex_state = 3}, - [1666] = {.lex_state = 9, .external_lex_state = 3}, - [1667] = {.lex_state = 0, .external_lex_state = 3}, - [1668] = {.lex_state = 18, .external_lex_state = 3}, - [1669] = {.lex_state = 4, .external_lex_state = 3}, - [1670] = {.lex_state = 4, .external_lex_state = 3}, - [1671] = {.lex_state = 0, .external_lex_state = 3}, - [1672] = {.lex_state = 0, .external_lex_state = 3}, - [1673] = {.lex_state = 0, .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 = 4, .external_lex_state = 3}, - [1679] = {.lex_state = 4, .external_lex_state = 3}, - [1680] = {.lex_state = 13, .external_lex_state = 3}, - [1681] = {.lex_state = 4, .external_lex_state = 3}, - [1682] = {.lex_state = 4, .external_lex_state = 3}, - [1683] = {.lex_state = 9, .external_lex_state = 3}, - [1684] = {.lex_state = 4, .external_lex_state = 3}, - [1685] = {.lex_state = 18, .external_lex_state = 3}, - [1686] = {.lex_state = 4, .external_lex_state = 3}, - [1687] = {.lex_state = 18, .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 = 4, .external_lex_state = 3}, + [1666] = {.lex_state = 4, .external_lex_state = 3}, + [1667] = {.lex_state = 7, .external_lex_state = 3}, + [1668] = {.lex_state = 7, .external_lex_state = 3}, + [1669] = {.lex_state = 7, .external_lex_state = 3}, + [1670] = {.lex_state = 7, .external_lex_state = 3}, + [1671] = {.lex_state = 7, .external_lex_state = 3}, + [1672] = {.lex_state = 7, .external_lex_state = 3}, + [1673] = {.lex_state = 7, .external_lex_state = 3}, + [1674] = {.lex_state = 15, .external_lex_state = 3}, + [1675] = {.lex_state = 7, .external_lex_state = 3}, + [1676] = {.lex_state = 10, .external_lex_state = 3}, + [1677] = {.lex_state = 7, .external_lex_state = 3}, + [1678] = {.lex_state = 7, .external_lex_state = 3}, + [1679] = {.lex_state = 10, .external_lex_state = 3}, + [1680] = {.lex_state = 7, .external_lex_state = 3}, + [1681] = {.lex_state = 18, .external_lex_state = 3}, + [1682] = {.lex_state = 7, .external_lex_state = 3}, + [1683] = {.lex_state = 14, .external_lex_state = 3}, + [1684] = {.lex_state = 7, .external_lex_state = 3}, + [1685] = {.lex_state = 7, .external_lex_state = 3}, + [1686] = {.lex_state = 7, .external_lex_state = 3}, + [1687] = {.lex_state = 0, .external_lex_state = 3}, + [1688] = {.lex_state = 7, .external_lex_state = 3}, + [1689] = {.lex_state = 7, .external_lex_state = 3}, + [1690] = {.lex_state = 7, .external_lex_state = 3}, + [1691] = {.lex_state = 10, .external_lex_state = 3}, + [1692] = {.lex_state = 7, .external_lex_state = 3}, + [1693] = {.lex_state = 7, .external_lex_state = 3}, + [1694] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [1700] = {.lex_state = 4, .external_lex_state = 3}, - [1701] = {.lex_state = 4, .external_lex_state = 3}, - [1702] = {.lex_state = 4, .external_lex_state = 3}, - [1703] = {.lex_state = 4, .external_lex_state = 3}, - [1704] = {.lex_state = 9, .external_lex_state = 3}, - [1705] = {.lex_state = 4, .external_lex_state = 3}, - [1706] = {.lex_state = 9, .external_lex_state = 3}, - [1707] = {.lex_state = 4, .external_lex_state = 3}, - [1708] = {.lex_state = 4, .external_lex_state = 3}, - [1709] = {.lex_state = 4, .external_lex_state = 3}, - [1710] = {.lex_state = 4, .external_lex_state = 3}, - [1711] = {.lex_state = 15, .external_lex_state = 3}, - [1712] = {.lex_state = 4, .external_lex_state = 3}, - [1713] = {.lex_state = 4, .external_lex_state = 3}, - [1714] = {.lex_state = 4, .external_lex_state = 3}, - [1715] = {.lex_state = 4, .external_lex_state = 3}, + [1696] = {.lex_state = 7, .external_lex_state = 3}, + [1697] = {.lex_state = 0, .external_lex_state = 3}, + [1698] = {.lex_state = 18, .external_lex_state = 3}, + [1699] = {.lex_state = 7, .external_lex_state = 3}, + [1700] = {.lex_state = 58, .external_lex_state = 3}, + [1701] = {.lex_state = 7, .external_lex_state = 3}, + [1702] = {.lex_state = 58, .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 = 7, .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 = 7, .external_lex_state = 3}, + [1711] = {.lex_state = 7, .external_lex_state = 3}, + [1712] = {.lex_state = 10, .external_lex_state = 3}, + [1713] = {.lex_state = 7, .external_lex_state = 3}, + [1714] = {.lex_state = 18, .external_lex_state = 3}, + [1715] = {.lex_state = 7, .external_lex_state = 3}, [1716] = {.lex_state = 18, .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 = 58, .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 = 4, .external_lex_state = 3}, - [1727] = {.lex_state = 4, .external_lex_state = 3}, - [1728] = {.lex_state = 18, .external_lex_state = 3}, - [1729] = {.lex_state = 18, .external_lex_state = 3}, - [1730] = {.lex_state = 4, .external_lex_state = 3}, - [1731] = {.lex_state = 4, .external_lex_state = 3}, - [1732] = {.lex_state = 4, .external_lex_state = 3}, - [1733] = {.lex_state = 4, .external_lex_state = 3}, + [1717] = {.lex_state = 10, .external_lex_state = 3}, + [1718] = {.lex_state = 7, .external_lex_state = 3}, + [1719] = {.lex_state = 7, .external_lex_state = 3}, + [1720] = {.lex_state = 7, .external_lex_state = 3}, + [1721] = {.lex_state = 7, .external_lex_state = 3}, + [1722] = {.lex_state = 18, .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}, + [1729] = {.lex_state = 7, .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 = 18, .external_lex_state = 3}, [1734] = {.lex_state = 4, .external_lex_state = 3}, - [1735] = {.lex_state = 4, .external_lex_state = 3}, - [1736] = {.lex_state = 4, .external_lex_state = 3}, - [1737] = {.lex_state = 18, .external_lex_state = 3}, - [1738] = {.lex_state = 9, .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}, + [1735] = {.lex_state = 7, .external_lex_state = 3}, + [1736] = {.lex_state = 7, .external_lex_state = 3}, + [1737] = {.lex_state = 7, .external_lex_state = 3}, + [1738] = {.lex_state = 7, .external_lex_state = 3}, + [1739] = {.lex_state = 0, .external_lex_state = 3}, + [1740] = {.lex_state = 7, .external_lex_state = 3}, + [1741] = {.lex_state = 18, .external_lex_state = 3}, [1742] = {.lex_state = 18, .external_lex_state = 3}, - [1743] = {.lex_state = 4, .external_lex_state = 3}, - [1744] = {.lex_state = 4, .external_lex_state = 3}, - [1745] = {.lex_state = 4, .external_lex_state = 3}, - [1746] = {.lex_state = 58, .external_lex_state = 3}, - [1747] = {.lex_state = 4, .external_lex_state = 3}, - [1748] = {.lex_state = 13, .external_lex_state = 3}, - [1749] = {.lex_state = 18, .external_lex_state = 3}, - [1750] = {.lex_state = 4, .external_lex_state = 3}, - [1751] = {.lex_state = 4, .external_lex_state = 3}, - [1752] = {.lex_state = 4, .external_lex_state = 3}, - [1753] = {.lex_state = 4, .external_lex_state = 3}, - [1754] = {.lex_state = 0, .external_lex_state = 3}, - [1755] = {.lex_state = 58, .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 = 18, .external_lex_state = 3}, + [1743] = {.lex_state = 18, .external_lex_state = 3}, + [1744] = {.lex_state = 10, .external_lex_state = 3}, + [1745] = {.lex_state = 18, .external_lex_state = 3}, + [1746] = {.lex_state = 7, .external_lex_state = 3}, + [1747] = {.lex_state = 10, .external_lex_state = 3}, + [1748] = {.lex_state = 18, .external_lex_state = 3}, + [1749] = {.lex_state = 7, .external_lex_state = 3}, + [1750] = {.lex_state = 0, .external_lex_state = 3}, + [1751] = {.lex_state = 7, .external_lex_state = 3}, + [1752] = {.lex_state = 18, .external_lex_state = 3}, + [1753] = {.lex_state = 0, .external_lex_state = 3}, + [1754] = {.lex_state = 58, .external_lex_state = 3}, + [1755] = {.lex_state = 18, .external_lex_state = 3}, + [1756] = {.lex_state = 7, .external_lex_state = 3}, + [1757] = {.lex_state = 0, .external_lex_state = 3}, + [1758] = {.lex_state = 18, .external_lex_state = 3}, + [1759] = {.lex_state = 58, .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 = 4, .external_lex_state = 3}, - [1764] = {.lex_state = 58, .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}, + [1761] = {.lex_state = 18, .external_lex_state = 3}, + [1762] = {.lex_state = 18, .external_lex_state = 3}, + [1763] = {.lex_state = 18, .external_lex_state = 3}, + [1764] = {.lex_state = 0, .external_lex_state = 3}, + [1765] = {.lex_state = 18, .external_lex_state = 3}, + [1766] = {.lex_state = 10, .external_lex_state = 3}, + [1767] = {.lex_state = 10, .external_lex_state = 3}, [1768] = {.lex_state = 0, .external_lex_state = 3}, - [1769] = {.lex_state = 4, .external_lex_state = 3}, - [1770] = {.lex_state = 18, .external_lex_state = 3}, - [1771] = {.lex_state = 4, .external_lex_state = 3}, + [1769] = {.lex_state = 18, .external_lex_state = 3}, + [1770] = {.lex_state = 0, .external_lex_state = 3}, + [1771] = {.lex_state = 58, .external_lex_state = 3}, [1772] = {.lex_state = 0, .external_lex_state = 3}, - [1773] = {.lex_state = 4, .external_lex_state = 3}, - [1774] = {.lex_state = 4, .external_lex_state = 3}, - [1775] = {.lex_state = 0, .external_lex_state = 3}, - [1776] = {.lex_state = 4, .external_lex_state = 3}, - [1777] = {.lex_state = 0, .external_lex_state = 3}, - [1778] = {.lex_state = 0, .external_lex_state = 3}, - [1779] = {.lex_state = 18, .external_lex_state = 3}, - [1780] = {.lex_state = 4, .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 = 10, .external_lex_state = 3}, + [1777] = {.lex_state = 7, .external_lex_state = 3}, + [1778] = {.lex_state = 10, .external_lex_state = 3}, + [1779] = {.lex_state = 7, .external_lex_state = 3}, + [1780] = {.lex_state = 7, .external_lex_state = 3}, [1781] = {.lex_state = 18, .external_lex_state = 3}, - [1782] = {.lex_state = 4, .external_lex_state = 3}, - [1783] = {.lex_state = 18, .external_lex_state = 3}, - [1784] = {.lex_state = 18, .external_lex_state = 3}, - [1785] = {.lex_state = 4, .external_lex_state = 3}, - [1786] = {.lex_state = 4, .external_lex_state = 3}, + [1782] = {.lex_state = 7, .external_lex_state = 3}, + [1783] = {.lex_state = 7, .external_lex_state = 3}, + [1784] = {.lex_state = 7, .external_lex_state = 3}, + [1785] = {.lex_state = 7, .external_lex_state = 3}, + [1786] = {.lex_state = 7, .external_lex_state = 3}, [1787] = {.lex_state = 18, .external_lex_state = 3}, [1788] = {.lex_state = 18, .external_lex_state = 3}, - [1789] = {.lex_state = 4, .external_lex_state = 3}, - [1790] = {.lex_state = 4, .external_lex_state = 3}, - [1791] = {.lex_state = 4, .external_lex_state = 3}, - [1792] = {.lex_state = 18, .external_lex_state = 3}, - [1793] = {.lex_state = 9, .external_lex_state = 3}, - [1794] = {.lex_state = 9, .external_lex_state = 3}, - [1795] = {.lex_state = 4, .external_lex_state = 3}, + [1789] = {.lex_state = 7, .external_lex_state = 3}, + [1790] = {.lex_state = 0, .external_lex_state = 3}, + [1791] = {.lex_state = 7, .external_lex_state = 3}, + [1792] = {.lex_state = 7, .external_lex_state = 3}, + [1793] = {.lex_state = 7, .external_lex_state = 3}, + [1794] = {.lex_state = 7, .external_lex_state = 3}, + [1795] = {.lex_state = 0, .external_lex_state = 3}, [1796] = {.lex_state = 0, .external_lex_state = 3}, - [1797] = {.lex_state = 4, .external_lex_state = 3}, + [1797] = {.lex_state = 4, .external_lex_state = 4}, [1798] = {.lex_state = 18, .external_lex_state = 3}, - [1799] = {.lex_state = 4, .external_lex_state = 3}, - [1800] = {.lex_state = 18, .external_lex_state = 3}, - [1801] = {.lex_state = 18, .external_lex_state = 3}, - [1802] = {.lex_state = 58, .external_lex_state = 3}, - [1803] = {.lex_state = 18, .external_lex_state = 3}, - [1804] = {.lex_state = 18, .external_lex_state = 3}, - [1805] = {.lex_state = 18, .external_lex_state = 3}, - [1806] = {.lex_state = 4, .external_lex_state = 3}, - [1807] = {.lex_state = 9, .external_lex_state = 3}, - [1808] = {.lex_state = 9, .external_lex_state = 3}, - [1809] = {.lex_state = 19, .external_lex_state = 3}, - [1810] = {.lex_state = 0, .external_lex_state = 3}, - [1811] = {.lex_state = 4, .external_lex_state = 3}, - [1812] = {.lex_state = 58, .external_lex_state = 3}, - [1813] = {.lex_state = 58, .external_lex_state = 3}, - [1814] = {.lex_state = 4, .external_lex_state = 3}, - [1815] = {.lex_state = 0, .external_lex_state = 3}, - [1816] = {.lex_state = 4, .external_lex_state = 3}, - [1817] = {.lex_state = 58, .external_lex_state = 3}, - [1818] = {.lex_state = 4, .external_lex_state = 3}, - [1819] = {.lex_state = 4, .external_lex_state = 3}, - [1820] = {.lex_state = 4, .external_lex_state = 3}, - [1821] = {.lex_state = 4, .external_lex_state = 3}, - [1822] = {.lex_state = 4, .external_lex_state = 3}, - [1823] = {.lex_state = 0, .external_lex_state = 3}, - [1824] = {.lex_state = 4, .external_lex_state = 3}, - [1825] = {.lex_state = 0, .external_lex_state = 3}, - [1826] = {.lex_state = 58, .external_lex_state = 3}, + [1799] = {.lex_state = 7, .external_lex_state = 3}, + [1800] = {.lex_state = 19, .external_lex_state = 3}, + [1801] = {.lex_state = 0, .external_lex_state = 3}, + [1802] = {.lex_state = 0, .external_lex_state = 3}, + [1803] = {.lex_state = 4, .external_lex_state = 4}, + [1804] = {.lex_state = 0, .external_lex_state = 3}, + [1805] = {.lex_state = 4, .external_lex_state = 4}, + [1806] = {.lex_state = 19, .external_lex_state = 3}, + [1807] = {.lex_state = 7, .external_lex_state = 3}, + [1808] = {.lex_state = 58, .external_lex_state = 3}, + [1809] = {.lex_state = 0, .external_lex_state = 3}, + [1810] = {.lex_state = 4, .external_lex_state = 4}, + [1811] = {.lex_state = 58, .external_lex_state = 3}, + [1812] = {.lex_state = 19, .external_lex_state = 3}, + [1813] = {.lex_state = 0, .external_lex_state = 3}, + [1814] = {.lex_state = 58, .external_lex_state = 3}, + [1815] = {.lex_state = 58, .external_lex_state = 3}, + [1816] = {.lex_state = 4, .external_lex_state = 4}, + [1817] = {.lex_state = 4, .external_lex_state = 4}, + [1818] = {.lex_state = 7, .external_lex_state = 3}, + [1819] = {.lex_state = 18, .external_lex_state = 3}, + [1820] = {.lex_state = 19, .external_lex_state = 3}, + [1821] = {.lex_state = 7, .external_lex_state = 3}, + [1822] = {.lex_state = 58, .external_lex_state = 3}, + [1823] = {.lex_state = 58, .external_lex_state = 3}, + [1824] = {.lex_state = 7, .external_lex_state = 3}, + [1825] = {.lex_state = 58, .external_lex_state = 3}, + [1826] = {.lex_state = 18, .external_lex_state = 3}, [1827] = {.lex_state = 58, .external_lex_state = 3}, - [1828] = {.lex_state = 58, .external_lex_state = 3}, - [1829] = {.lex_state = 58, .external_lex_state = 3}, - [1830] = {.lex_state = 58, .external_lex_state = 3}, - [1831] = {.lex_state = 4, .external_lex_state = 3}, - [1832] = {.lex_state = 4, .external_lex_state = 4}, - [1833] = {.lex_state = 9, .external_lex_state = 3}, - [1834] = {.lex_state = 58, .external_lex_state = 3}, - [1835] = {.lex_state = 4, .external_lex_state = 3}, - [1836] = {.lex_state = 4, .external_lex_state = 3}, - [1837] = {.lex_state = 0, .external_lex_state = 3}, - [1838] = {.lex_state = 18, .external_lex_state = 3}, - [1839] = {.lex_state = 0, .external_lex_state = 3}, - [1840] = {.lex_state = 4, .external_lex_state = 3}, - [1841] = {.lex_state = 4, .external_lex_state = 3}, - [1842] = {.lex_state = 4, .external_lex_state = 3}, - [1843] = {.lex_state = 4, .external_lex_state = 3}, - [1844] = {.lex_state = 9, .external_lex_state = 3}, - [1845] = {.lex_state = 4, .external_lex_state = 3}, + [1828] = {.lex_state = 7, .external_lex_state = 3}, + [1829] = {.lex_state = 7, .external_lex_state = 3}, + [1830] = {.lex_state = 7, .external_lex_state = 3}, + [1831] = {.lex_state = 7, .external_lex_state = 3}, + [1832] = {.lex_state = 58, .external_lex_state = 3}, + [1833] = {.lex_state = 58, .external_lex_state = 3}, + [1834] = {.lex_state = 7, .external_lex_state = 3}, + [1835] = {.lex_state = 7, .external_lex_state = 3}, + [1836] = {.lex_state = 7, .external_lex_state = 3}, + [1837] = {.lex_state = 58, .external_lex_state = 3}, + [1838] = {.lex_state = 7, .external_lex_state = 3}, + [1839] = {.lex_state = 7, .external_lex_state = 3}, + [1840] = {.lex_state = 58, .external_lex_state = 3}, + [1841] = {.lex_state = 18, .external_lex_state = 3}, + [1842] = {.lex_state = 7, .external_lex_state = 3}, + [1843] = {.lex_state = 7, .external_lex_state = 3}, + [1844] = {.lex_state = 0, .external_lex_state = 3}, + [1845] = {.lex_state = 0, .external_lex_state = 3}, [1846] = {.lex_state = 58, .external_lex_state = 3}, [1847] = {.lex_state = 58, .external_lex_state = 3}, - [1848] = {.lex_state = 0, .external_lex_state = 3}, - [1849] = {.lex_state = 0, .external_lex_state = 3}, - [1850] = {.lex_state = 58, .external_lex_state = 3}, - [1851] = {.lex_state = 0, .external_lex_state = 3}, - [1852] = {.lex_state = 58, .external_lex_state = 3}, - [1853] = {.lex_state = 0, .external_lex_state = 3}, - [1854] = {.lex_state = 18, .external_lex_state = 3}, - [1855] = {.lex_state = 58, .external_lex_state = 3}, - [1856] = {.lex_state = 19, .external_lex_state = 3}, - [1857] = {.lex_state = 58, .external_lex_state = 3}, - [1858] = {.lex_state = 4, .external_lex_state = 4}, - [1859] = {.lex_state = 18, .external_lex_state = 3}, - [1860] = {.lex_state = 4, .external_lex_state = 3}, - [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 4, .external_lex_state = 4}, + [1848] = {.lex_state = 58, .external_lex_state = 3}, + [1849] = {.lex_state = 7, .external_lex_state = 3}, + [1850] = {.lex_state = 7, .external_lex_state = 3}, + [1851] = {.lex_state = 7, .external_lex_state = 3}, + [1852] = {.lex_state = 10, .external_lex_state = 3}, + [1853] = {.lex_state = 7, .external_lex_state = 3}, + [1854] = {.lex_state = 58, .external_lex_state = 3}, + [1855] = {.lex_state = 0, .external_lex_state = 3}, + [1856] = {.lex_state = 58, .external_lex_state = 3}, + [1857] = {.lex_state = 7, .external_lex_state = 3}, + [1858] = {.lex_state = 10, .external_lex_state = 3}, + [1859] = {.lex_state = 58, .external_lex_state = 3}, + [1860] = {.lex_state = 58, .external_lex_state = 3}, + [1861] = {.lex_state = 7, .external_lex_state = 3}, + [1862] = {.lex_state = 58, .external_lex_state = 3}, [1863] = {.lex_state = 58, .external_lex_state = 3}, - [1864] = {.lex_state = 4, .external_lex_state = 3}, + [1864] = {.lex_state = 58, .external_lex_state = 3}, [1865] = {.lex_state = 0, .external_lex_state = 3}, [1866] = {.lex_state = 4, .external_lex_state = 4}, - [1867] = {.lex_state = 58, .external_lex_state = 3}, - [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 19, .external_lex_state = 3}, - [1870] = {.lex_state = 4, .external_lex_state = 4}, - [1871] = {.lex_state = 4, .external_lex_state = 3}, + [1867] = {.lex_state = 7, .external_lex_state = 3}, + [1868] = {.lex_state = 7, .external_lex_state = 3}, + [1869] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [1874] = {.lex_state = 58, .external_lex_state = 3}, - [1875] = {.lex_state = 4, .external_lex_state = 4}, - [1876] = {.lex_state = 4, .external_lex_state = 3}, - [1877] = {.lex_state = 4, .external_lex_state = 4}, - [1878] = {.lex_state = 58, .external_lex_state = 3}, - [1879] = {.lex_state = 4, .external_lex_state = 3}, - [1880] = {.lex_state = 4, .external_lex_state = 3}, - [1881] = {.lex_state = 18, .external_lex_state = 3}, - [1882] = {.lex_state = 4, .external_lex_state = 3}, - [1883] = {.lex_state = 0, .external_lex_state = 3}, + [1873] = {.lex_state = 18, .external_lex_state = 3}, + [1874] = {.lex_state = 4, .external_lex_state = 4}, + [1875] = {.lex_state = 0, .external_lex_state = 3}, + [1876] = {.lex_state = 0, .external_lex_state = 3}, + [1877] = {.lex_state = 7, .external_lex_state = 3}, + [1878] = {.lex_state = 0, .external_lex_state = 3}, + [1879] = {.lex_state = 18, .external_lex_state = 3}, + [1880] = {.lex_state = 0, .external_lex_state = 3}, + [1881] = {.lex_state = 7, .external_lex_state = 3}, + [1882] = {.lex_state = 58, .external_lex_state = 3}, + [1883] = {.lex_state = 4, .external_lex_state = 4}, [1884] = {.lex_state = 58, .external_lex_state = 3}, - [1885] = {.lex_state = 18, .external_lex_state = 3}, - [1886] = {.lex_state = 4, .external_lex_state = 3}, - [1887] = {.lex_state = 18, .external_lex_state = 3}, - [1888] = {.lex_state = 18, .external_lex_state = 3}, - [1889] = {.lex_state = 4, .external_lex_state = 3}, + [1885] = {.lex_state = 7, .external_lex_state = 3}, + [1886] = {.lex_state = 58, .external_lex_state = 3}, + [1887] = {.lex_state = 0, .external_lex_state = 3}, + [1888] = {.lex_state = 58, .external_lex_state = 3}, + [1889] = {.lex_state = 7, .external_lex_state = 3}, [1890] = {.lex_state = 0, .external_lex_state = 3}, - [1891] = {.lex_state = 4, .external_lex_state = 3}, - [1892] = {.lex_state = 19, .external_lex_state = 3}, - [1893] = {.lex_state = 58, .external_lex_state = 3}, - [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 4, .external_lex_state = 3}, - [1896] = {.lex_state = 4, .external_lex_state = 4}, - [1897] = {.lex_state = 58, .external_lex_state = 3}, - [1898] = {.lex_state = 58, .external_lex_state = 3}, + [1891] = {.lex_state = 7, .external_lex_state = 3}, + [1892] = {.lex_state = 3, .external_lex_state = 3}, + [1893] = {.lex_state = 0, .external_lex_state = 3}, + [1894] = {.lex_state = 3, .external_lex_state = 3}, + [1895] = {.lex_state = 3, .external_lex_state = 3}, + [1896] = {.lex_state = 58, .external_lex_state = 3}, + [1897] = {.lex_state = 0, .external_lex_state = 3}, + [1898] = {.lex_state = 7, .external_lex_state = 3}, [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 4, .external_lex_state = 4}, - [1901] = {.lex_state = 4, .external_lex_state = 3}, - [1902] = {.lex_state = 58, .external_lex_state = 3}, - [1903] = {.lex_state = 58, .external_lex_state = 3}, + [1900] = {.lex_state = 58, .external_lex_state = 3}, + [1901] = {.lex_state = 0, .external_lex_state = 3}, + [1902] = {.lex_state = 3, .external_lex_state = 3}, + [1903] = {.lex_state = 7, .external_lex_state = 3}, [1904] = {.lex_state = 58, .external_lex_state = 3}, - [1905] = {.lex_state = 9, .external_lex_state = 3}, + [1905] = {.lex_state = 3, .external_lex_state = 3}, [1906] = {.lex_state = 58, .external_lex_state = 3}, - [1907] = {.lex_state = 58, .external_lex_state = 3}, - [1908] = {.lex_state = 3, .external_lex_state = 3}, - [1909] = {.lex_state = 58, .external_lex_state = 3}, - [1910] = {.lex_state = 0, .external_lex_state = 3}, + [1907] = {.lex_state = 3, .external_lex_state = 3}, + [1908] = {.lex_state = 7, .external_lex_state = 3}, + [1909] = {.lex_state = 3, .external_lex_state = 3}, + [1910] = {.lex_state = 58, .external_lex_state = 3}, [1911] = {.lex_state = 58, .external_lex_state = 3}, - [1912] = {.lex_state = 3, .external_lex_state = 3}, - [1913] = {.lex_state = 3, .external_lex_state = 3}, - [1914] = {.lex_state = 0, .external_lex_state = 3}, - [1915] = {.lex_state = 0, .external_lex_state = 3}, - [1916] = {.lex_state = 3, .external_lex_state = 3}, - [1917] = {.lex_state = 58, .external_lex_state = 3}, - [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 3, .external_lex_state = 3}, - [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 3, .external_lex_state = 3}, + [1912] = {.lex_state = 58, .external_lex_state = 3}, + [1913] = {.lex_state = 7, .external_lex_state = 3}, + [1914] = {.lex_state = 58, .external_lex_state = 3}, + [1915] = {.lex_state = 7, .external_lex_state = 3}, + [1916] = {.lex_state = 7, .external_lex_state = 3}, + [1917] = {.lex_state = 3, .external_lex_state = 3}, + [1918] = {.lex_state = 58, .external_lex_state = 3}, + [1919] = {.lex_state = 58, .external_lex_state = 3}, + [1920] = {.lex_state = 7, .external_lex_state = 3}, + [1921] = {.lex_state = 58, .external_lex_state = 3}, [1922] = {.lex_state = 0, .external_lex_state = 3}, [1923] = {.lex_state = 0, .external_lex_state = 3}, - [1924] = {.lex_state = 4, .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}, + [1926] = {.lex_state = 58, .external_lex_state = 3}, [1927] = {.lex_state = 0, .external_lex_state = 3}, [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 58, .external_lex_state = 3}, - [1930] = {.lex_state = 3, .external_lex_state = 3}, - [1931] = {.lex_state = 58, .external_lex_state = 3}, - [1932] = {.lex_state = 0, .external_lex_state = 3}, + [1929] = {.lex_state = 7, .external_lex_state = 3}, + [1930] = {.lex_state = 0, .external_lex_state = 3}, + [1931] = {.lex_state = 0, .external_lex_state = 3}, + [1932] = {.lex_state = 58, .external_lex_state = 3}, [1933] = {.lex_state = 0, .external_lex_state = 3}, [1934] = {.lex_state = 0, .external_lex_state = 3}, [1935] = {.lex_state = 0, .external_lex_state = 3}, [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 58, .external_lex_state = 3}, + [1937] = {.lex_state = 7, .external_lex_state = 3}, [1938] = {.lex_state = 0, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, + [1939] = {.lex_state = 10, .external_lex_state = 3}, [1940] = {.lex_state = 0, .external_lex_state = 3}, [1941] = {.lex_state = 0, .external_lex_state = 3}, - [1942] = {.lex_state = 0, .external_lex_state = 3}, + [1942] = {.lex_state = 3, .external_lex_state = 3}, [1943] = {.lex_state = 0, .external_lex_state = 3}, - [1944] = {.lex_state = 58, .external_lex_state = 3}, + [1944] = {.lex_state = 0, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 58, .external_lex_state = 3}, - [1948] = {.lex_state = 0, .external_lex_state = 3}, - [1949] = {.lex_state = 0, .external_lex_state = 3}, + [1946] = {.lex_state = 58, .external_lex_state = 3}, + [1947] = {.lex_state = 0, .external_lex_state = 3}, + [1948] = {.lex_state = 7, .external_lex_state = 3}, + [1949] = {.lex_state = 3, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 58, .external_lex_state = 3}, - [1953] = {.lex_state = 0, .external_lex_state = 3}, - [1954] = {.lex_state = 4, .external_lex_state = 3}, - [1955] = {.lex_state = 4, .external_lex_state = 3}, + [1951] = {.lex_state = 58, .external_lex_state = 3}, + [1952] = {.lex_state = 10, .external_lex_state = 3}, + [1953] = {.lex_state = 58, .external_lex_state = 3}, + [1954] = {.lex_state = 0, .external_lex_state = 3}, + [1955] = {.lex_state = 0, .external_lex_state = 3}, [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 58, .external_lex_state = 3}, - [1959] = {.lex_state = 3, .external_lex_state = 3}, + [1957] = {.lex_state = 58, .external_lex_state = 3}, + [1958] = {.lex_state = 0, .external_lex_state = 3}, + [1959] = {.lex_state = 0, .external_lex_state = 3}, [1960] = {.lex_state = 58, .external_lex_state = 3}, - [1961] = {.lex_state = 4, .external_lex_state = 3}, - [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 4, .external_lex_state = 3}, - [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 58, .external_lex_state = 3}, + [1961] = {.lex_state = 0, .external_lex_state = 3}, + [1962] = {.lex_state = 58, .external_lex_state = 3}, + [1963] = {.lex_state = 7, .external_lex_state = 3}, + [1964] = {.lex_state = 0, .external_lex_state = 3}, + [1965] = {.lex_state = 58, .external_lex_state = 3}, + [1966] = {.lex_state = 0, .external_lex_state = 3}, [1967] = {.lex_state = 4, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 4, .external_lex_state = 3}, + [1969] = {.lex_state = 0, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, [1971] = {.lex_state = 58, .external_lex_state = 3}, - [1972] = {.lex_state = 4, .external_lex_state = 3}, - [1973] = {.lex_state = 0, .external_lex_state = 3}, + [1972] = {.lex_state = 10, .external_lex_state = 3}, + [1973] = {.lex_state = 7, .external_lex_state = 3}, [1974] = {.lex_state = 0, .external_lex_state = 3}, [1975] = {.lex_state = 0, .external_lex_state = 3}, - [1976] = {.lex_state = 0, .external_lex_state = 3}, + [1976] = {.lex_state = 58, .external_lex_state = 3}, [1977] = {.lex_state = 0, .external_lex_state = 3}, - [1978] = {.lex_state = 0, .external_lex_state = 3}, - [1979] = {.lex_state = 0, .external_lex_state = 3}, + [1978] = {.lex_state = 58, .external_lex_state = 3}, + [1979] = {.lex_state = 58, .external_lex_state = 3}, [1980] = {.lex_state = 0, .external_lex_state = 3}, - [1981] = {.lex_state = 0, .external_lex_state = 3}, - [1982] = {.lex_state = 0, .external_lex_state = 3}, - [1983] = {.lex_state = 9, .external_lex_state = 3}, + [1981] = {.lex_state = 58, .external_lex_state = 3}, + [1982] = {.lex_state = 58, .external_lex_state = 3}, + [1983] = {.lex_state = 58, .external_lex_state = 3}, [1984] = {.lex_state = 0, .external_lex_state = 3}, [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.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 = 0, .external_lex_state = 3}, [1989] = {.lex_state = 58, .external_lex_state = 3}, [1990] = {.lex_state = 0, .external_lex_state = 3}, - [1991] = {.lex_state = 4, .external_lex_state = 3}, - [1992] = {.lex_state = 0, .external_lex_state = 3}, - [1993] = {.lex_state = 0, .external_lex_state = 3}, - [1994] = {.lex_state = 0, .external_lex_state = 3}, + [1991] = {.lex_state = 58, .external_lex_state = 3}, + [1992] = {.lex_state = 58, .external_lex_state = 3}, + [1993] = {.lex_state = 7, .external_lex_state = 3}, + [1994] = {.lex_state = 18, .external_lex_state = 3}, [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 4, .external_lex_state = 3}, - [1997] = {.lex_state = 4, .external_lex_state = 3}, + [1996] = {.lex_state = 0, .external_lex_state = 3}, + [1997] = {.lex_state = 0, .external_lex_state = 3}, [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 58, .external_lex_state = 3}, + [1999] = {.lex_state = 3, .external_lex_state = 3}, [2000] = {.lex_state = 0, .external_lex_state = 3}, [2001] = {.lex_state = 0, .external_lex_state = 3}, - [2002] = {.lex_state = 0, .external_lex_state = 3}, + [2002] = {.lex_state = 3, .external_lex_state = 3}, [2003] = {.lex_state = 0, .external_lex_state = 3}, - [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 0, .external_lex_state = 3}, - [2006] = {.lex_state = 58, .external_lex_state = 3}, - [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 0, .external_lex_state = 3}, - [2009] = {.lex_state = 9, .external_lex_state = 3}, + [2004] = {.lex_state = 58, .external_lex_state = 3}, + [2005] = {.lex_state = 3, .external_lex_state = 3}, + [2006] = {.lex_state = 0, .external_lex_state = 3}, + [2007] = {.lex_state = 3, .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 = 4, .external_lex_state = 3}, + [2011] = {.lex_state = 58, .external_lex_state = 3}, [2012] = {.lex_state = 0, .external_lex_state = 3}, [2013] = {.lex_state = 0, .external_lex_state = 3}, [2014] = {.lex_state = 0, .external_lex_state = 3}, [2015] = {.lex_state = 0, .external_lex_state = 3}, - [2016] = {.lex_state = 58, .external_lex_state = 3}, - [2017] = {.lex_state = 0, .external_lex_state = 3}, + [2016] = {.lex_state = 3, .external_lex_state = 3}, + [2017] = {.lex_state = 7, .external_lex_state = 3}, [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 0, .external_lex_state = 3}, + [2019] = {.lex_state = 3, .external_lex_state = 3}, [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 4, .external_lex_state = 3}, - [2022] = {.lex_state = 58, .external_lex_state = 3}, - [2023] = {.lex_state = 4, .external_lex_state = 3}, - [2024] = {.lex_state = 58, .external_lex_state = 3}, - [2025] = {.lex_state = 0, .external_lex_state = 3}, - [2026] = {.lex_state = 9, .external_lex_state = 3}, - [2027] = {.lex_state = 3, .external_lex_state = 3}, + [2021] = {.lex_state = 0, .external_lex_state = 3}, + [2022] = {.lex_state = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 3, .external_lex_state = 3}, + [2024] = {.lex_state = 3, .external_lex_state = 3}, + [2025] = {.lex_state = 58, .external_lex_state = 3}, + [2026] = {.lex_state = 58, .external_lex_state = 3}, + [2027] = {.lex_state = 58, .external_lex_state = 3}, [2028] = {.lex_state = 0, .external_lex_state = 3}, [2029] = {.lex_state = 0, .external_lex_state = 3}, - [2030] = {.lex_state = 58, .external_lex_state = 3}, - [2031] = {.lex_state = 18, .external_lex_state = 3}, + [2030] = {.lex_state = 3, .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}, + [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 = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 0, .external_lex_state = 3}, - [2039] = {.lex_state = 58, .external_lex_state = 3}, - [2040] = {.lex_state = 4, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .external_lex_state = 3}, - [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 58, .external_lex_state = 3}, + [2038] = {.lex_state = 7, .external_lex_state = 3}, + [2039] = {.lex_state = 0, .external_lex_state = 3}, + [2040] = {.lex_state = 7, .external_lex_state = 3}, + [2041] = {.lex_state = 58, .external_lex_state = 3}, + [2042] = {.lex_state = 7, .external_lex_state = 3}, + [2043] = {.lex_state = 7, .external_lex_state = 3}, [2044] = {.lex_state = 0, .external_lex_state = 3}, [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 58, .external_lex_state = 3}, - [2047] = {.lex_state = 3, .external_lex_state = 3}, + [2046] = {.lex_state = 0, .external_lex_state = 3}, + [2047] = {.lex_state = 0, .external_lex_state = 3}, [2048] = {.lex_state = 0, .external_lex_state = 3}, [2049] = {.lex_state = 0, .external_lex_state = 3}, - [2050] = {.lex_state = 58, .external_lex_state = 3}, - [2051] = {.lex_state = 3, .external_lex_state = 3}, - [2052] = {.lex_state = 3, .external_lex_state = 3}, - [2053] = {.lex_state = 58, .external_lex_state = 3}, - [2054] = {.lex_state = 0, .external_lex_state = 3}, - [2055] = {.lex_state = 58, .external_lex_state = 3}, + [2050] = {.lex_state = 0, .external_lex_state = 3}, + [2051] = {.lex_state = 0, .external_lex_state = 3}, + [2052] = {.lex_state = 58, .external_lex_state = 3}, + [2053] = {.lex_state = 0, .external_lex_state = 3}, + [2054] = {.lex_state = 58, .external_lex_state = 3}, + [2055] = {.lex_state = 0, .external_lex_state = 3}, [2056] = {.lex_state = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 58, .external_lex_state = 3}, - [2058] = {.lex_state = 0, .external_lex_state = 3}, + [2057] = {.lex_state = 0, .external_lex_state = 3}, + [2058] = {.lex_state = 58, .external_lex_state = 3}, [2059] = {.lex_state = 0, .external_lex_state = 3}, - [2060] = {.lex_state = 58, .external_lex_state = 3}, + [2060] = {.lex_state = 0, .external_lex_state = 3}, [2061] = {.lex_state = 0, .external_lex_state = 3}, - [2062] = {.lex_state = 58, .external_lex_state = 3}, + [2062] = {.lex_state = 0, .external_lex_state = 3}, [2063] = {.lex_state = 0, .external_lex_state = 3}, - [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 58, .external_lex_state = 3}, - [2066] = {.lex_state = 58, .external_lex_state = 3}, - [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 4, .external_lex_state = 3}, + [2064] = {.lex_state = 58, .external_lex_state = 3}, + [2065] = {.lex_state = 7, .external_lex_state = 3}, + [2066] = {.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 = 58, .external_lex_state = 3}, - [2071] = {.lex_state = 4, .external_lex_state = 3}, - [2072] = {.lex_state = 0, .external_lex_state = 3}, - [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2070] = {.lex_state = 0, .external_lex_state = 3}, + [2071] = {.lex_state = 0, .external_lex_state = 3}, + [2072] = {.lex_state = 58, .external_lex_state = 3}, + [2073] = {.lex_state = 58, .external_lex_state = 3}, [2074] = {.lex_state = 0, .external_lex_state = 3}, [2075] = {.lex_state = 0, .external_lex_state = 3}, - [2076] = {.lex_state = 3, .external_lex_state = 3}, + [2076] = {.lex_state = 0, .external_lex_state = 3}, [2077] = {.lex_state = 0, .external_lex_state = 3}, - [2078] = {.lex_state = 58, .external_lex_state = 3}, - [2079] = {.lex_state = 4, .external_lex_state = 3}, - [2080] = {.lex_state = 58, .external_lex_state = 3}, + [2078] = {.lex_state = 0, .external_lex_state = 3}, + [2079] = {.lex_state = 0, .external_lex_state = 3}, + [2080] = {.lex_state = 0, .external_lex_state = 3}, [2081] = {.lex_state = 58, .external_lex_state = 3}, - [2082] = {.lex_state = 58, .external_lex_state = 3}, + [2082] = {.lex_state = 0, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, - [2084] = {.lex_state = 58, .external_lex_state = 3}, - [2085] = {.lex_state = 0, .external_lex_state = 3}, + [2084] = {.lex_state = 0, .external_lex_state = 3}, + [2085] = {.lex_state = 7, .external_lex_state = 3}, [2086] = {.lex_state = 58, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, [2088] = {.lex_state = 0, .external_lex_state = 3}, [2089] = {.lex_state = 0, .external_lex_state = 3}, - [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 3, .external_lex_state = 3}, - [2092] = {.lex_state = 0, .external_lex_state = 3}, + [2090] = {.lex_state = 58, .external_lex_state = 3}, + [2091] = {.lex_state = 10, .external_lex_state = 3}, + [2092] = {.lex_state = 7, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 4, .external_lex_state = 3}, - [2095] = {.lex_state = 58, .external_lex_state = 3}, + [2094] = {.lex_state = 0, .external_lex_state = 3}, + [2095] = {.lex_state = 0, .external_lex_state = 3}, [2096] = {.lex_state = 58, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, - [2098] = {.lex_state = 0, .external_lex_state = 3}, + [2098] = {.lex_state = 58, .external_lex_state = 3}, [2099] = {.lex_state = 0, .external_lex_state = 3}, - [2100] = {.lex_state = 58, .external_lex_state = 3}, + [2100] = {.lex_state = 0, .external_lex_state = 3}, [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 58, .external_lex_state = 3}, + [2102] = {.lex_state = 0, .external_lex_state = 3}, [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 3, .external_lex_state = 3}, + [2104] = {.lex_state = 0, .external_lex_state = 3}, [2105] = {.lex_state = 0, .external_lex_state = 3}, [2106] = {.lex_state = 0, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 58, .external_lex_state = 3}, + [2108] = {.lex_state = 0, .external_lex_state = 3}, [2109] = {.lex_state = 58, .external_lex_state = 3}, - [2110] = {.lex_state = 3, .external_lex_state = 3}, - [2111] = {.lex_state = 0, .external_lex_state = 3}, - [2112] = {.lex_state = 3, .external_lex_state = 3}, + [2110] = {.lex_state = 58, .external_lex_state = 3}, + [2111] = {.lex_state = 7, .external_lex_state = 3}, + [2112] = {.lex_state = 58, .external_lex_state = 3}, [2113] = {.lex_state = 58, .external_lex_state = 3}, [2114] = {.lex_state = 0, .external_lex_state = 3}, - [2115] = {.lex_state = 4, .external_lex_state = 3}, - [2116] = {.lex_state = 0, .external_lex_state = 3}, - [2117] = {.lex_state = 58, .external_lex_state = 3}, - [2118] = {.lex_state = 58, .external_lex_state = 3}, - [2119] = {.lex_state = 4, .external_lex_state = 3}, - [2120] = {.lex_state = 58, .external_lex_state = 3}, - [2121] = {.lex_state = 0, .external_lex_state = 3}, + [2115] = {.lex_state = 58, .external_lex_state = 3}, + [2116] = {.lex_state = 58, .external_lex_state = 3}, + [2117] = {.lex_state = 4, .external_lex_state = 3}, + [2118] = {.lex_state = 0, .external_lex_state = 3}, + [2119] = {.lex_state = 0, .external_lex_state = 3}, + [2120] = {.lex_state = 0, .external_lex_state = 3}, + [2121] = {.lex_state = 58, .external_lex_state = 3}, [2122] = {.lex_state = 58, .external_lex_state = 3}, - [2123] = {.lex_state = 58, .external_lex_state = 3}, + [2123] = {.lex_state = 0, .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}, + [2126] = {.lex_state = 58, .external_lex_state = 3}, [2127] = {.lex_state = 58, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 58, .external_lex_state = 3}, + [2129] = {.lex_state = 0, .external_lex_state = 3}, [2130] = {.lex_state = 0, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 4, .external_lex_state = 3}, - [2133] = {.lex_state = 0, .external_lex_state = 3}, + [2132] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 7, .external_lex_state = 3}, [2134] = {.lex_state = 58, .external_lex_state = 3}, - [2135] = {.lex_state = 58, .external_lex_state = 3}, + [2135] = {.lex_state = 0, .external_lex_state = 3}, [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 0, .external_lex_state = 3}, - [2138] = {.lex_state = 58, .external_lex_state = 3}, - [2139] = {.lex_state = 3, .external_lex_state = 3}, - [2140] = {.lex_state = 4, .external_lex_state = 3}, - [2141] = {.lex_state = 58, .external_lex_state = 3}, - [2142] = {.lex_state = 3, .external_lex_state = 3}, + [2137] = {.lex_state = 58, .external_lex_state = 3}, + [2138] = {.lex_state = 0, .external_lex_state = 3}, + [2139] = {.lex_state = 0, .external_lex_state = 3}, + [2140] = {.lex_state = 10, .external_lex_state = 3}, + [2141] = {.lex_state = 0, .external_lex_state = 3}, + [2142] = {.lex_state = 58, .external_lex_state = 3}, [2143] = {.lex_state = 0, .external_lex_state = 3}, - [2144] = {.lex_state = 58, .external_lex_state = 3}, - [2145] = {.lex_state = 4, .external_lex_state = 3}, - [2146] = {.lex_state = 9, .external_lex_state = 3}, - [2147] = {.lex_state = 58, .external_lex_state = 3}, - [2148] = {.lex_state = 4, .external_lex_state = 3}, + [2144] = {.lex_state = 0, .external_lex_state = 3}, + [2145] = {.lex_state = 0, .external_lex_state = 3}, + [2146] = {.lex_state = 58, .external_lex_state = 3}, + [2147] = {.lex_state = 0, .external_lex_state = 3}, + [2148] = {.lex_state = 0, .external_lex_state = 3}, [2149] = {.lex_state = 0, .external_lex_state = 3}, - [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 4, .external_lex_state = 3}, - [2152] = {.lex_state = 4, .external_lex_state = 3}, + [2150] = {.lex_state = 7, .external_lex_state = 3}, + [2151] = {.lex_state = 0, .external_lex_state = 3}, + [2152] = {.lex_state = 0, .external_lex_state = 3}, [2153] = {.lex_state = 0, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, - [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 0, .external_lex_state = 3}, + [2155] = {.lex_state = 58, .external_lex_state = 3}, + [2156] = {.lex_state = 58, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 58, .external_lex_state = 3}, + [2158] = {.lex_state = 7, .external_lex_state = 3}, [2159] = {.lex_state = 0, .external_lex_state = 3}, - [2160] = {.lex_state = 0, .external_lex_state = 3}, + [2160] = {.lex_state = 58, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, - [2162] = {.lex_state = 0, .external_lex_state = 3}, + [2162] = {.lex_state = 7, .external_lex_state = 3}, [2163] = {.lex_state = 0, .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}, - [2167] = {.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 = 0, .external_lex_state = 3}, [2170] = {.lex_state = 0, .external_lex_state = 3}, - [2171] = {.lex_state = 0, .external_lex_state = 3}, + [2171] = {.lex_state = 18, .external_lex_state = 3}, [2172] = {.lex_state = 0, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, [2174] = {.lex_state = 0, .external_lex_state = 3}, - [2175] = {.lex_state = 0, .external_lex_state = 3}, - [2176] = {.lex_state = 58, .external_lex_state = 3}, - [2177] = {.lex_state = 58, .external_lex_state = 3}, - [2178] = {.lex_state = 0, .external_lex_state = 3}, + [2175] = {.lex_state = 7, .external_lex_state = 3}, + [2176] = {.lex_state = 0, .external_lex_state = 3}, + [2177] = {.lex_state = 0, .external_lex_state = 3}, + [2178] = {.lex_state = 58, .external_lex_state = 3}, [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 0, .external_lex_state = 3}, + [2180] = {.lex_state = 7, .external_lex_state = 3}, [2181] = {.lex_state = 0, .external_lex_state = 3}, - [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 0, .external_lex_state = 3}, + [2182] = {.lex_state = 58, .external_lex_state = 3}, + [2183] = {.lex_state = 7, .external_lex_state = 3}, [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 0, .external_lex_state = 3}, + [2185] = {.lex_state = 58, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, [2187] = {.lex_state = 0, .external_lex_state = 3}, - [2188] = {.lex_state = 0, .external_lex_state = 3}, + [2188] = {.lex_state = 58, .external_lex_state = 3}, [2189] = {.lex_state = 0, .external_lex_state = 3}, - [2190] = {.lex_state = 0, .external_lex_state = 3}, + [2190] = {.lex_state = 7, .external_lex_state = 3}, [2191] = {.lex_state = 0, .external_lex_state = 3}, [2192] = {.lex_state = 0, .external_lex_state = 3}, [2193] = {.lex_state = 0, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, [2195] = {.lex_state = 0, .external_lex_state = 3}, [2196] = {.lex_state = 0, .external_lex_state = 3}, - [2197] = {.lex_state = 58, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, + [2197] = {.lex_state = 0, .external_lex_state = 3}, + [2198] = {.lex_state = 58, .external_lex_state = 3}, [2199] = {.lex_state = 0, .external_lex_state = 3}, [2200] = {.lex_state = 0, .external_lex_state = 3}, [2201] = {.lex_state = 0, .external_lex_state = 3}, - [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 0, .external_lex_state = 3}, + [2202] = {.lex_state = 58, .external_lex_state = 3}, + [2203] = {.lex_state = 0, .external_lex_state = 5}, [2204] = {.lex_state = 0, .external_lex_state = 3}, [2205] = {.lex_state = 0, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, - [2207] = {.lex_state = 18, .external_lex_state = 3}, + [2207] = {.lex_state = 7, .external_lex_state = 3}, [2208] = {.lex_state = 0, .external_lex_state = 3}, [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 58, .external_lex_state = 3}, + [2210] = {.lex_state = 0, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 0, .external_lex_state = 3}, - [2213] = {.lex_state = 0, .external_lex_state = 3}, + [2212] = {.lex_state = 58, .external_lex_state = 3}, + [2213] = {.lex_state = 4, .external_lex_state = 3}, [2214] = {.lex_state = 0, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 0, .external_lex_state = 3}, - [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 0, .external_lex_state = 3}, - [2220] = {.lex_state = 4, .external_lex_state = 3}, + [2217] = {.lex_state = 7, .external_lex_state = 3}, + [2218] = {.lex_state = 58, .external_lex_state = 3}, + [2219] = {.lex_state = 18, .external_lex_state = 3}, + [2220] = {.lex_state = 0, .external_lex_state = 3}, [2221] = {.lex_state = 0, .external_lex_state = 3}, [2222] = {.lex_state = 0, .external_lex_state = 3}, - [2223] = {.lex_state = 4, .external_lex_state = 3}, + [2223] = {.lex_state = 0, .external_lex_state = 3}, [2224] = {.lex_state = 0, .external_lex_state = 3}, [2225] = {.lex_state = 0, .external_lex_state = 3}, [2226] = {.lex_state = 58, .external_lex_state = 3}, [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, + [2228] = {.lex_state = 7, .external_lex_state = 3}, [2229] = {.lex_state = 0, .external_lex_state = 3}, [2230] = {.lex_state = 0, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, [2233] = {.lex_state = 0, .external_lex_state = 3}, - [2234] = {.lex_state = 0, .external_lex_state = 3}, + [2234] = {.lex_state = 58, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, - [2236] = {.lex_state = 4, .external_lex_state = 3}, + [2236] = {.lex_state = 58, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, [2238] = {.lex_state = 0, .external_lex_state = 3}, [2239] = {.lex_state = 0, .external_lex_state = 3}, - [2240] = {.lex_state = 0, .external_lex_state = 3}, - [2241] = {.lex_state = 0, .external_lex_state = 5}, - [2242] = {.lex_state = 0, .external_lex_state = 3}, - [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 0, .external_lex_state = 3}, + [2240] = {.lex_state = 7, .external_lex_state = 3}, + [2241] = {.lex_state = 0, .external_lex_state = 3}, + [2242] = {.lex_state = 58, .external_lex_state = 3}, + [2243] = {.lex_state = 7, .external_lex_state = 3}, + [2244] = {.lex_state = 58, .external_lex_state = 3}, [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 58, .external_lex_state = 3}, - [2247] = {.lex_state = 0, .external_lex_state = 3}, - [2248] = {.lex_state = 0, .external_lex_state = 3}, + [2246] = {.lex_state = 0, .external_lex_state = 3}, + [2247] = {.lex_state = 58, .external_lex_state = 3}, + [2248] = {.lex_state = 7, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, [2251] = {.lex_state = 58, .external_lex_state = 3}, - [2252] = {.lex_state = 0, .external_lex_state = 3}, - [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 58, .external_lex_state = 3}, - [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 4, .external_lex_state = 3}, - [2257] = {.lex_state = 4, .external_lex_state = 3}, - [2258] = {.lex_state = 0, .external_lex_state = 3}, - [2259] = {.lex_state = 4, .external_lex_state = 3}, - [2260] = {.lex_state = 0, .external_lex_state = 3}, - [2261] = {.lex_state = 58, .external_lex_state = 3}, - [2262] = {.lex_state = 58, .external_lex_state = 3}, + [2252] = {.lex_state = 7, .external_lex_state = 3}, + [2253] = {.lex_state = 58, .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}, + [2257] = {.lex_state = 0, .external_lex_state = 3}, + [2258] = {.lex_state = 58, .external_lex_state = 3}, + [2259] = {.lex_state = 0, .external_lex_state = 3}, + [2260] = {.lex_state = 58, .external_lex_state = 3}, + [2261] = {.lex_state = 0, .external_lex_state = 3}, + [2262] = {.lex_state = 0, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, - [2264] = {.lex_state = 58, .external_lex_state = 3}, - [2265] = {.lex_state = 0, .external_lex_state = 3}, + [2264] = {.lex_state = 0, .external_lex_state = 3}, + [2265] = {.lex_state = 58, .external_lex_state = 3}, [2266] = {.lex_state = 0, .external_lex_state = 3}, - [2267] = {.lex_state = 0, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, + [2267] = {.lex_state = 7, .external_lex_state = 3}, + [2268] = {.lex_state = 4, .external_lex_state = 3}, [2269] = {.lex_state = 58, .external_lex_state = 3}, - [2270] = {.lex_state = 0, .external_lex_state = 3}, + [2270] = {.lex_state = 7, .external_lex_state = 3}, [2271] = {.lex_state = 0, .external_lex_state = 3}, - [2272] = {.lex_state = 58, .external_lex_state = 3}, - [2273] = {.lex_state = 18, .external_lex_state = 3}, + [2272] = {.lex_state = 0, .external_lex_state = 3}, + [2273] = {.lex_state = 0, .external_lex_state = 3}, [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 0, .external_lex_state = 3}, + [2275] = {.lex_state = 58, .external_lex_state = 3}, [2276] = {.lex_state = 0, .external_lex_state = 3}, - [2277] = {.lex_state = 0, .external_lex_state = 3}, - [2278] = {.lex_state = 58, .external_lex_state = 3}, - [2279] = {.lex_state = 58, .external_lex_state = 3}, - [2280] = {.lex_state = 4, .external_lex_state = 3}, - [2281] = {.lex_state = 58, .external_lex_state = 3}, - [2282] = {.lex_state = 0, .external_lex_state = 3}, - [2283] = {.lex_state = 4, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 4, .external_lex_state = 3}, - [2286] = {.lex_state = 58, .external_lex_state = 3}, + [2277] = {.lex_state = 7, .external_lex_state = 3}, + [2278] = {.lex_state = 0, .external_lex_state = 3}, + [2279] = {.lex_state = 0, .external_lex_state = 3}, + [2280] = {.lex_state = 0, .external_lex_state = 3}, + [2281] = {.lex_state = 0, .external_lex_state = 3}, + [2282] = {.lex_state = 7, .external_lex_state = 3}, + [2283] = {.lex_state = 10, .external_lex_state = 3}, + [2284] = {.lex_state = 58, .external_lex_state = 3}, + [2285] = {.lex_state = 0, .external_lex_state = 3}, + [2286] = {.lex_state = 0, .external_lex_state = 3}, [2287] = {.lex_state = 0, .external_lex_state = 3}, [2288] = {.lex_state = 0, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, - [2290] = {.lex_state = 9, .external_lex_state = 3}, - [2291] = {.lex_state = 58, .external_lex_state = 3}, - [2292] = {.lex_state = 58, .external_lex_state = 3}, - [2293] = {.lex_state = 4, .external_lex_state = 3}, - [2294] = {.lex_state = 0, .external_lex_state = 3}, - [2295] = {.lex_state = 4, .external_lex_state = 3}, - [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 4, .external_lex_state = 3}, - [2298] = {.lex_state = 4, .external_lex_state = 3}, + [2290] = {.lex_state = 58, .external_lex_state = 3}, + [2291] = {.lex_state = 0, .external_lex_state = 3}, + [2292] = {.lex_state = 7, .external_lex_state = 3}, + [2293] = {.lex_state = 0, .external_lex_state = 3}, + [2294] = {.lex_state = 58, .external_lex_state = 3}, + [2295] = {.lex_state = 0, .external_lex_state = 3}, + [2296] = {.lex_state = 18, .external_lex_state = 3}, + [2297] = {.lex_state = 58, .external_lex_state = 3}, + [2298] = {.lex_state = 0, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 18, .external_lex_state = 3}, + [2300] = {.lex_state = 0, .external_lex_state = 3}, [2301] = {.lex_state = 0, .external_lex_state = 3}, [2302] = {.lex_state = 0, .external_lex_state = 3}, [2303] = {.lex_state = 0, .external_lex_state = 3}, @@ -18316,318 +16975,290 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2305] = {.lex_state = 0, .external_lex_state = 3}, [2306] = {.lex_state = 0, .external_lex_state = 3}, [2307] = {.lex_state = 0, .external_lex_state = 3}, - [2308] = {.lex_state = 18, .external_lex_state = 3}, - [2309] = {.lex_state = 18, .external_lex_state = 3}, + [2308] = {.lex_state = 0, .external_lex_state = 3}, + [2309] = {.lex_state = 58, .external_lex_state = 3}, [2310] = {.lex_state = 58, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 58, .external_lex_state = 3}, - [2313] = {.lex_state = 0, .external_lex_state = 3}, + [2312] = {.lex_state = 0, .external_lex_state = 3}, + [2313] = {.lex_state = 7, .external_lex_state = 3}, [2314] = {.lex_state = 0, .external_lex_state = 3}, - [2315] = {.lex_state = 58, .external_lex_state = 3}, + [2315] = {.lex_state = 0, .external_lex_state = 3}, [2316] = {.lex_state = 0, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, [2318] = {.lex_state = 0, .external_lex_state = 3}, [2319] = {.lex_state = 0, .external_lex_state = 3}, - [2320] = {.lex_state = 18, .external_lex_state = 3}, + [2320] = {.lex_state = 7, .external_lex_state = 3}, [2321] = {.lex_state = 0, .external_lex_state = 3}, [2322] = {.lex_state = 0, .external_lex_state = 3}, - [2323] = {.lex_state = 4, .external_lex_state = 3}, + [2323] = {.lex_state = 0, .external_lex_state = 3}, [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 58, .external_lex_state = 3}, - [2326] = {.lex_state = 0, .external_lex_state = 3}, + [2325] = {.lex_state = 0, .external_lex_state = 3}, + [2326] = {.lex_state = 18, .external_lex_state = 3}, [2327] = {.lex_state = 0, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, - [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 4, .external_lex_state = 3}, - [2331] = {.lex_state = 0, .external_lex_state = 3}, - [2332] = {.lex_state = 0, .external_lex_state = 3}, - [2333] = {.lex_state = 0, .external_lex_state = 3}, + [2329] = {.lex_state = 58, .external_lex_state = 3}, + [2330] = {.lex_state = 0, .external_lex_state = 3}, + [2331] = {.lex_state = 58, .external_lex_state = 3}, + [2332] = {.lex_state = 7, .external_lex_state = 3}, + [2333] = {.lex_state = 18, .external_lex_state = 3}, [2334] = {.lex_state = 0, .external_lex_state = 3}, - [2335] = {.lex_state = 58, .external_lex_state = 3}, - [2336] = {.lex_state = 58, .external_lex_state = 3}, + [2335] = {.lex_state = 18, .external_lex_state = 3}, + [2336] = {.lex_state = 0, .external_lex_state = 3}, [2337] = {.lex_state = 0, .external_lex_state = 3}, - [2338] = {.lex_state = 0, .external_lex_state = 3}, - [2339] = {.lex_state = 4, .external_lex_state = 3}, + [2338] = {.lex_state = 7, .external_lex_state = 3}, + [2339] = {.lex_state = 7, .external_lex_state = 3}, [2340] = {.lex_state = 0, .external_lex_state = 3}, - [2341] = {.lex_state = 4, .external_lex_state = 3}, + [2341] = {.lex_state = 0, .external_lex_state = 3}, [2342] = {.lex_state = 0, .external_lex_state = 3}, - [2343] = {.lex_state = 4, .external_lex_state = 3}, - [2344] = {.lex_state = 4, .external_lex_state = 3}, - [2345] = {.lex_state = 58, .external_lex_state = 3}, - [2346] = {.lex_state = 58, .external_lex_state = 3}, - [2347] = {.lex_state = 58, .external_lex_state = 3}, - [2348] = {.lex_state = 4, .external_lex_state = 3}, - [2349] = {.lex_state = 58, .external_lex_state = 3}, - [2350] = {.lex_state = 58, .external_lex_state = 3}, - [2351] = {.lex_state = 0, .external_lex_state = 3}, - [2352] = {.lex_state = 4, .external_lex_state = 3}, - [2353] = {.lex_state = 58, .external_lex_state = 3}, - [2354] = {.lex_state = 58, .external_lex_state = 3}, - [2355] = {.lex_state = 4, .external_lex_state = 3}, - [2356] = {.lex_state = 58, .external_lex_state = 3}, - [2357] = {.lex_state = 4, .external_lex_state = 3}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 4, .external_lex_state = 3}, - [2360] = {.lex_state = 0, .external_lex_state = 3}, - [2361] = {.lex_state = 0, .external_lex_state = 3}, - [2362] = {.lex_state = 4, .external_lex_state = 3}, - [2363] = {.lex_state = 0, .external_lex_state = 3}, - [2364] = {.lex_state = 58, .external_lex_state = 3}, + [2343] = {.lex_state = 7, .external_lex_state = 3}, + [2344] = {.lex_state = 7, .external_lex_state = 3}, + [2345] = {.lex_state = 7, .external_lex_state = 3}, + [2346] = {.lex_state = 7, .external_lex_state = 3}, + [2347] = {.lex_state = 7, .external_lex_state = 3}, + [2348] = {.lex_state = 7, .external_lex_state = 3}, + [2349] = {.lex_state = 0, .external_lex_state = 3}, + [2350] = {.lex_state = 7, .external_lex_state = 3}, + [2351] = {.lex_state = 7, .external_lex_state = 3}, + [2352] = {.lex_state = 7, .external_lex_state = 3}, + [2353] = {.lex_state = 7, .external_lex_state = 3}, + [2354] = {.lex_state = 0, .external_lex_state = 3}, + [2355] = {.lex_state = 7, .external_lex_state = 3}, + [2356] = {.lex_state = 7, .external_lex_state = 3}, + [2357] = {.lex_state = 7, .external_lex_state = 3}, + [2358] = {.lex_state = 7, .external_lex_state = 3}, + [2359] = {.lex_state = 7, .external_lex_state = 3}, + [2360] = {.lex_state = 7, .external_lex_state = 3}, + [2361] = {.lex_state = 7, .external_lex_state = 3}, + [2362] = {.lex_state = 7, .external_lex_state = 3}, + [2363] = {.lex_state = 7, .external_lex_state = 3}, + [2364] = {.lex_state = 7, .external_lex_state = 3}, [2365] = {.lex_state = 58, .external_lex_state = 3}, - [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2366] = {.lex_state = 7, .external_lex_state = 3}, [2367] = {.lex_state = 0, .external_lex_state = 3}, - [2368] = {.lex_state = 0, .external_lex_state = 3}, - [2369] = {.lex_state = 4, .external_lex_state = 3}, - [2370] = {.lex_state = 4, .external_lex_state = 3}, - [2371] = {.lex_state = 9, .external_lex_state = 3}, - [2372] = {.lex_state = 4, .external_lex_state = 3}, - [2373] = {.lex_state = 9, .external_lex_state = 3}, - [2374] = {.lex_state = 4, .external_lex_state = 3}, - [2375] = {.lex_state = 4, .external_lex_state = 3}, + [2368] = {.lex_state = 7, .external_lex_state = 3}, + [2369] = {.lex_state = 7, .external_lex_state = 3}, + [2370] = {.lex_state = 7, .external_lex_state = 3}, + [2371] = {.lex_state = 7, .external_lex_state = 3}, + [2372] = {.lex_state = 7, .external_lex_state = 3}, + [2373] = {.lex_state = 0, .external_lex_state = 3}, + [2374] = {.lex_state = 0, .external_lex_state = 3}, + [2375] = {.lex_state = 0, .external_lex_state = 3}, [2376] = {.lex_state = 0, .external_lex_state = 3}, [2377] = {.lex_state = 0, .external_lex_state = 3}, - [2378] = {.lex_state = 4, .external_lex_state = 3}, - [2379] = {.lex_state = 4, .external_lex_state = 3}, - [2380] = {.lex_state = 4, .external_lex_state = 3}, - [2381] = {.lex_state = 0, .external_lex_state = 3}, - [2382] = {.lex_state = 4, .external_lex_state = 3}, + [2378] = {.lex_state = 0, .external_lex_state = 3}, + [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 0, .external_lex_state = 3}, + [2381] = {.lex_state = 7, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 4, .external_lex_state = 3}, - [2385] = {.lex_state = 0, .external_lex_state = 3}, - [2386] = {.lex_state = 4, .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 = 0, .external_lex_state = 3}, - [2388] = {.lex_state = 4, .external_lex_state = 3}, - [2389] = {.lex_state = 4, .external_lex_state = 3}, - [2390] = {.lex_state = 0, .external_lex_state = 3}, - [2391] = {.lex_state = 4, .external_lex_state = 3}, - [2392] = {.lex_state = 4, .external_lex_state = 3}, - [2393] = {.lex_state = 58, .external_lex_state = 3}, - [2394] = {.lex_state = 9, .external_lex_state = 3}, - [2395] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, - [2400] = {.lex_state = 4, .external_lex_state = 3}, - [2401] = {.lex_state = 0, .external_lex_state = 3}, - [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 9, .external_lex_state = 3}, - [2404] = {.lex_state = 4, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 4, .external_lex_state = 3}, - [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 4, .external_lex_state = 3}, + [2388] = {.lex_state = 0, .external_lex_state = 3}, + [2389] = {.lex_state = 0, .external_lex_state = 3}, + [2390] = {.lex_state = 7, .external_lex_state = 3}, + [2391] = {.lex_state = 0, .external_lex_state = 3}, + [2392] = {.lex_state = 7, .external_lex_state = 3}, + [2393] = {.lex_state = 7, .external_lex_state = 3}, + [2394] = {.lex_state = 0, .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 = 0, .external_lex_state = 3}, + [2399] = {.lex_state = 0, .external_lex_state = 3}, + [2400] = {.lex_state = 7, .external_lex_state = 3}, + [2401] = {.lex_state = 7, .external_lex_state = 3}, + [2402] = {.lex_state = 7, .external_lex_state = 3}, + [2403] = {.lex_state = 7, .external_lex_state = 3}, + [2404] = {.lex_state = 7, .external_lex_state = 3}, + [2405] = {.lex_state = 7, .external_lex_state = 3}, + [2406] = {.lex_state = 7, .external_lex_state = 3}, + [2407] = {.lex_state = 7, .external_lex_state = 3}, + [2408] = {.lex_state = 7, .external_lex_state = 3}, [2409] = {.lex_state = 0, .external_lex_state = 3}, [2410] = {.lex_state = 0, .external_lex_state = 3}, [2411] = {.lex_state = 0, .external_lex_state = 3}, [2412] = {.lex_state = 0, .external_lex_state = 3}, - [2413] = {.lex_state = 4, .external_lex_state = 3}, - [2414] = {.lex_state = 4, .external_lex_state = 3}, - [2415] = {.lex_state = 4, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 3}, + [2413] = {.lex_state = 10, .external_lex_state = 3}, + [2414] = {.lex_state = 0, .external_lex_state = 3}, + [2415] = {.lex_state = 0, .external_lex_state = 3}, + [2416] = {.lex_state = 7, .external_lex_state = 3}, [2417] = {.lex_state = 0, .external_lex_state = 3}, [2418] = {.lex_state = 0, .external_lex_state = 3}, - [2419] = {.lex_state = 4, .external_lex_state = 3}, + [2419] = {.lex_state = 0, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, [2421] = {.lex_state = 0, .external_lex_state = 3}, - [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 4, .external_lex_state = 3}, - [2424] = {.lex_state = 4, .external_lex_state = 3}, + [2422] = {.lex_state = 7, .external_lex_state = 3}, + [2423] = {.lex_state = 0, .external_lex_state = 3}, + [2424] = {.lex_state = 0, .external_lex_state = 3}, [2425] = {.lex_state = 0, .external_lex_state = 3}, [2426] = {.lex_state = 0, .external_lex_state = 3}, [2427] = {.lex_state = 0, .external_lex_state = 3}, [2428] = {.lex_state = 0, .external_lex_state = 3}, - [2429] = {.lex_state = 4, .external_lex_state = 3}, - [2430] = {.lex_state = 4, .external_lex_state = 3}, + [2429] = {.lex_state = 0, .external_lex_state = 3}, + [2430] = {.lex_state = 58, .external_lex_state = 3}, [2431] = {.lex_state = 0, .external_lex_state = 3}, - [2432] = {.lex_state = 4, .external_lex_state = 3}, - [2433] = {.lex_state = 4, .external_lex_state = 3}, - [2434] = {.lex_state = 4, .external_lex_state = 3}, - [2435] = {.lex_state = 4, .external_lex_state = 3}, - [2436] = {.lex_state = 4, .external_lex_state = 3}, + [2432] = {.lex_state = 0, .external_lex_state = 3}, + [2433] = {.lex_state = 7, .external_lex_state = 3}, + [2434] = {.lex_state = 7, .external_lex_state = 3}, + [2435] = {.lex_state = 7, .external_lex_state = 3}, + [2436] = {.lex_state = 0, .external_lex_state = 3}, [2437] = {.lex_state = 0, .external_lex_state = 3}, [2438] = {.lex_state = 0, .external_lex_state = 3}, - [2439] = {.lex_state = 9, .external_lex_state = 3}, - [2440] = {.lex_state = 0, .external_lex_state = 3}, + [2439] = {.lex_state = 0, .external_lex_state = 3}, + [2440] = {.lex_state = 7, .external_lex_state = 3}, [2441] = {.lex_state = 0, .external_lex_state = 3}, [2442] = {.lex_state = 0, .external_lex_state = 3}, - [2443] = {.lex_state = 0, .external_lex_state = 3}, - [2444] = {.lex_state = 0, .external_lex_state = 3}, + [2443] = {.lex_state = 7, .external_lex_state = 3}, + [2444] = {.lex_state = 10, .external_lex_state = 3}, [2445] = {.lex_state = 0, .external_lex_state = 3}, [2446] = {.lex_state = 0, .external_lex_state = 3}, - [2447] = {.lex_state = 0, .external_lex_state = 3}, - [2448] = {.lex_state = 0, .external_lex_state = 3}, + [2447] = {.lex_state = 7, .external_lex_state = 3}, + [2448] = {.lex_state = 58, .external_lex_state = 3}, [2449] = {.lex_state = 0, .external_lex_state = 3}, - [2450] = {.lex_state = 4, .external_lex_state = 3}, - [2451] = {.lex_state = 0, .external_lex_state = 3}, + [2450] = {.lex_state = 0, .external_lex_state = 3}, + [2451] = {.lex_state = 7, .external_lex_state = 3}, [2452] = {.lex_state = 0, .external_lex_state = 3}, - [2453] = {.lex_state = 58, .external_lex_state = 3}, + [2453] = {.lex_state = 0, .external_lex_state = 3}, [2454] = {.lex_state = 0, .external_lex_state = 3}, - [2455] = {.lex_state = 0, .external_lex_state = 3}, - [2456] = {.lex_state = 4, .external_lex_state = 3}, - [2457] = {.lex_state = 0, .external_lex_state = 3}, + [2455] = {.lex_state = 7, .external_lex_state = 3}, + [2456] = {.lex_state = 7, .external_lex_state = 3}, + [2457] = {.lex_state = 7, .external_lex_state = 3}, [2458] = {.lex_state = 0, .external_lex_state = 3}, [2459] = {.lex_state = 0, .external_lex_state = 3}, - [2460] = {.lex_state = 0, .external_lex_state = 3}, - [2461] = {.lex_state = 4, .external_lex_state = 3}, - [2462] = {.lex_state = 4, .external_lex_state = 3}, + [2460] = {.lex_state = 7, .external_lex_state = 3}, + [2461] = {.lex_state = 7, .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}, + [2464] = {.lex_state = 7, .external_lex_state = 3}, [2465] = {.lex_state = 0, .external_lex_state = 3}, - [2466] = {.lex_state = 0, .external_lex_state = 3}, - [2467] = {.lex_state = 0, .external_lex_state = 3}, + [2466] = {.lex_state = 7, .external_lex_state = 3}, + [2467] = {.lex_state = 7, .external_lex_state = 3}, [2468] = {.lex_state = 0, .external_lex_state = 3}, - [2469] = {.lex_state = 0, .external_lex_state = 3}, - [2470] = {.lex_state = 4, .external_lex_state = 3}, - [2471] = {.lex_state = 58, .external_lex_state = 3}, - [2472] = {.lex_state = 0, .external_lex_state = 3}, - [2473] = {.lex_state = 0, .external_lex_state = 3}, - [2474] = {.lex_state = 4, .external_lex_state = 3}, - [2475] = {.lex_state = 9, .external_lex_state = 3}, - [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 0, .external_lex_state = 3}, - [2478] = {.lex_state = 4, .external_lex_state = 3}, - [2479] = {.lex_state = 0, .external_lex_state = 3}, - [2480] = {.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 = 7, .external_lex_state = 3}, + [2472] = {.lex_state = 7, .external_lex_state = 3}, + [2473] = {.lex_state = 7, .external_lex_state = 3}, + [2474] = {.lex_state = 7, .external_lex_state = 3}, + [2475] = {.lex_state = 7, .external_lex_state = 3}, + [2476] = {.lex_state = 7, .external_lex_state = 3}, + [2477] = {.lex_state = 7, .external_lex_state = 3}, + [2478] = {.lex_state = 10, .external_lex_state = 3}, + [2479] = {.lex_state = 7, .external_lex_state = 3}, + [2480] = {.lex_state = 7, .external_lex_state = 3}, [2481] = {.lex_state = 0, .external_lex_state = 3}, [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 0, .external_lex_state = 3}, + [2483] = {.lex_state = 7, .external_lex_state = 3}, [2484] = {.lex_state = 0, .external_lex_state = 3}, - [2485] = {.lex_state = 0, .external_lex_state = 3}, + [2485] = {.lex_state = 10, .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 = 0, .external_lex_state = 3}, + [2488] = {.lex_state = 10, .external_lex_state = 3}, + [2489] = {.lex_state = 7, .external_lex_state = 3}, [2490] = {.lex_state = 0, .external_lex_state = 3}, - [2491] = {.lex_state = 0, .external_lex_state = 3}, + [2491] = {.lex_state = 7, .external_lex_state = 3}, [2492] = {.lex_state = 0, .external_lex_state = 3}, [2493] = {.lex_state = 0, .external_lex_state = 3}, [2494] = {.lex_state = 0, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, - [2496] = {.lex_state = 0, .external_lex_state = 3}, + [2496] = {.lex_state = 10, .external_lex_state = 3}, [2497] = {.lex_state = 0, .external_lex_state = 3}, - [2498] = {.lex_state = 0, .external_lex_state = 3}, + [2498] = {.lex_state = 7, .external_lex_state = 3}, [2499] = {.lex_state = 0, .external_lex_state = 3}, - [2500] = {.lex_state = 0, .external_lex_state = 3}, - [2501] = {.lex_state = 9, .external_lex_state = 3}, - [2502] = {.lex_state = 4, .external_lex_state = 3}, - [2503] = {.lex_state = 9, .external_lex_state = 3}, + [2500] = {.lex_state = 7, .external_lex_state = 3}, + [2501] = {.lex_state = 7, .external_lex_state = 3}, + [2502] = {.lex_state = 0, .external_lex_state = 3}, + [2503] = {.lex_state = 0, .external_lex_state = 3}, [2504] = {.lex_state = 0, .external_lex_state = 3}, - [2505] = {.lex_state = 4, .external_lex_state = 3}, - [2506] = {.lex_state = 4, .external_lex_state = 3}, - [2507] = {.lex_state = 4, .external_lex_state = 3}, - [2508] = {.lex_state = 4, .external_lex_state = 3}, - [2509] = {.lex_state = 4, .external_lex_state = 3}, - [2510] = {.lex_state = 4, .external_lex_state = 3}, - [2511] = {.lex_state = 4, .external_lex_state = 3}, - [2512] = {.lex_state = 4, .external_lex_state = 3}, - [2513] = {.lex_state = 4, .external_lex_state = 3}, - [2514] = {.lex_state = 0, .external_lex_state = 3}, - [2515] = {.lex_state = 4, .external_lex_state = 3}, + [2505] = {.lex_state = 0, .external_lex_state = 3}, + [2506] = {.lex_state = 7, .external_lex_state = 3}, + [2507] = {.lex_state = 0, .external_lex_state = 3}, + [2508] = {.lex_state = 0, .external_lex_state = 3}, + [2509] = {.lex_state = 0, .external_lex_state = 3}, + [2510] = {.lex_state = 7, .external_lex_state = 3}, + [2511] = {.lex_state = 0, .external_lex_state = 3}, + [2512] = {.lex_state = 0, .external_lex_state = 3}, + [2513] = {.lex_state = 0, .external_lex_state = 3}, + [2514] = {.lex_state = 7, .external_lex_state = 3}, + [2515] = {.lex_state = 7, .external_lex_state = 3}, [2516] = {.lex_state = 0, .external_lex_state = 3}, - [2517] = {.lex_state = 4, .external_lex_state = 3}, + [2517] = {.lex_state = 0, .external_lex_state = 3}, [2518] = {.lex_state = 0, .external_lex_state = 3}, - [2519] = {.lex_state = 4, .external_lex_state = 3}, - [2520] = {.lex_state = 4, .external_lex_state = 3}, - [2521] = {.lex_state = 0, .external_lex_state = 3}, - [2522] = {.lex_state = 4, .external_lex_state = 3}, + [2519] = {.lex_state = 0, .external_lex_state = 3}, + [2520] = {.lex_state = 0, .external_lex_state = 3}, + [2521] = {.lex_state = 10, .external_lex_state = 3}, + [2522] = {.lex_state = 0, .external_lex_state = 3}, [2523] = {.lex_state = 0, .external_lex_state = 3}, - [2524] = {.lex_state = 4, .external_lex_state = 3}, - [2525] = {.lex_state = 0, .external_lex_state = 3}, - [2526] = {.lex_state = 58, .external_lex_state = 3}, + [2524] = {.lex_state = 0, .external_lex_state = 3}, + [2525] = {.lex_state = 7, .external_lex_state = 3}, + [2526] = {.lex_state = 0, .external_lex_state = 3}, [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 4, .external_lex_state = 3}, - [2529] = {.lex_state = 4, .external_lex_state = 3}, - [2530] = {.lex_state = 0, .external_lex_state = 3}, + [2528] = {.lex_state = 0, .external_lex_state = 3}, + [2529] = {.lex_state = 10, .external_lex_state = 3}, + [2530] = {.lex_state = 7, .external_lex_state = 3}, [2531] = {.lex_state = 0, .external_lex_state = 3}, - [2532] = {.lex_state = 0, .external_lex_state = 3}, - [2533] = {.lex_state = 4, .external_lex_state = 3}, - [2534] = {.lex_state = 4, .external_lex_state = 3}, + [2532] = {.lex_state = 10, .external_lex_state = 3}, + [2533] = {.lex_state = 0, .external_lex_state = 3}, + [2534] = {.lex_state = 10, .external_lex_state = 3}, [2535] = {.lex_state = 0, .external_lex_state = 3}, - [2536] = {.lex_state = 4, .external_lex_state = 3}, + [2536] = {.lex_state = 7, .external_lex_state = 3}, [2537] = {.lex_state = 0, .external_lex_state = 3}, - [2538] = {.lex_state = 4, .external_lex_state = 3}, - [2539] = {.lex_state = 0, .external_lex_state = 3}, - [2540] = {.lex_state = 4, .external_lex_state = 3}, - [2541] = {.lex_state = 4, .external_lex_state = 3}, - [2542] = {.lex_state = 4, .external_lex_state = 3}, - [2543] = {.lex_state = 4, .external_lex_state = 3}, - [2544] = {.lex_state = 4, .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 = 7, .external_lex_state = 3}, + [2544] = {.lex_state = 0, .external_lex_state = 3}, [2545] = {.lex_state = 0, .external_lex_state = 3}, [2546] = {.lex_state = 0, .external_lex_state = 3}, [2547] = {.lex_state = 0, .external_lex_state = 3}, - [2548] = {.lex_state = 0, .external_lex_state = 3}, + [2548] = {.lex_state = 10, .external_lex_state = 3}, [2549] = {.lex_state = 0, .external_lex_state = 3}, - [2550] = {.lex_state = 4, .external_lex_state = 3}, + [2550] = {.lex_state = 7, .external_lex_state = 3}, [2551] = {.lex_state = 0, .external_lex_state = 3}, [2552] = {.lex_state = 0, .external_lex_state = 3}, - [2553] = {.lex_state = 4, .external_lex_state = 3}, + [2553] = {.lex_state = 10, .external_lex_state = 3}, [2554] = {.lex_state = 0, .external_lex_state = 3}, - [2555] = {.lex_state = 0, .external_lex_state = 3}, - [2556] = {.lex_state = 0, .external_lex_state = 3}, - [2557] = {.lex_state = 4, .external_lex_state = 3}, + [2555] = {.lex_state = 10, .external_lex_state = 3}, + [2556] = {.lex_state = 10, .external_lex_state = 3}, + [2557] = {.lex_state = 0, .external_lex_state = 3}, [2558] = {.lex_state = 0, .external_lex_state = 3}, - [2559] = {.lex_state = 0, .external_lex_state = 3}, - [2560] = {.lex_state = 9, .external_lex_state = 3}, + [2559] = {.lex_state = 10, .external_lex_state = 3}, + [2560] = {.lex_state = 0, .external_lex_state = 3}, [2561] = {.lex_state = 0, .external_lex_state = 3}, - [2562] = {.lex_state = 9, .external_lex_state = 3}, - [2563] = {.lex_state = 0, .external_lex_state = 3}, - [2564] = {.lex_state = 0, .external_lex_state = 3}, + [2562] = {.lex_state = 10, .external_lex_state = 3}, + [2563] = {.lex_state = 7, .external_lex_state = 3}, + [2564] = {.lex_state = 10, .external_lex_state = 3}, [2565] = {.lex_state = 0, .external_lex_state = 3}, [2566] = {.lex_state = 0, .external_lex_state = 3}, - [2567] = {.lex_state = 9, .external_lex_state = 3}, + [2567] = {.lex_state = 0, .external_lex_state = 3}, [2568] = {.lex_state = 0, .external_lex_state = 3}, - [2569] = {.lex_state = 4, .external_lex_state = 3}, - [2570] = {.lex_state = 4, .external_lex_state = 3}, - [2571] = {.lex_state = 0, .external_lex_state = 3}, + [2569] = {.lex_state = 0, .external_lex_state = 3}, + [2570] = {.lex_state = 0, .external_lex_state = 3}, + [2571] = {.lex_state = 7, .external_lex_state = 3}, [2572] = {.lex_state = 0, .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 = 9, .external_lex_state = 3}, - [2577] = {.lex_state = 4, .external_lex_state = 3}, + [2573] = {.lex_state = 7, .external_lex_state = 3}, + [2574] = {.lex_state = 7, .external_lex_state = 3}, + [2575] = {.lex_state = 0, .external_lex_state = 3}, + [2576] = {.lex_state = 7, .external_lex_state = 3}, + [2577] = {.lex_state = 0, .external_lex_state = 3}, [2578] = {.lex_state = 0, .external_lex_state = 3}, [2579] = {.lex_state = 0, .external_lex_state = 3}, - [2580] = {.lex_state = 0, .external_lex_state = 3}, - [2581] = {.lex_state = 9, .external_lex_state = 3}, - [2582] = {.lex_state = 4, .external_lex_state = 3}, - [2583] = {.lex_state = 4, .external_lex_state = 3}, - [2584] = {.lex_state = 9, .external_lex_state = 3}, - [2585] = {.lex_state = 0, .external_lex_state = 3}, + [2580] = {.lex_state = 7, .external_lex_state = 3}, + [2581] = {.lex_state = 7, .external_lex_state = 3}, + [2582] = {.lex_state = 7, .external_lex_state = 3}, + [2583] = {.lex_state = 0, .external_lex_state = 3}, + [2584] = {.lex_state = 7, .external_lex_state = 3}, + [2585] = {.lex_state = 7, .external_lex_state = 3}, [2586] = {.lex_state = 0, .external_lex_state = 3}, - [2587] = {.lex_state = 4, .external_lex_state = 3}, - [2588] = {.lex_state = 0, .external_lex_state = 3}, + [2587] = {.lex_state = 0, .external_lex_state = 3}, + [2588] = {.lex_state = 7, .external_lex_state = 3}, [2589] = {.lex_state = 0, .external_lex_state = 3}, - [2590] = {.lex_state = 9, .external_lex_state = 3}, - [2591] = {.lex_state = 4, .external_lex_state = 3}, - [2592] = {.lex_state = 9, .external_lex_state = 3}, - [2593] = {.lex_state = 0, .external_lex_state = 3}, - [2594] = {.lex_state = 9, .external_lex_state = 3}, - [2595] = {.lex_state = 0, .external_lex_state = 3}, - [2596] = {.lex_state = 0, .external_lex_state = 3}, - [2597] = {.lex_state = 4, .external_lex_state = 3}, - [2598] = {.lex_state = 0, .external_lex_state = 3}, - [2599] = {.lex_state = 0, .external_lex_state = 3}, - [2600] = {.lex_state = 0, .external_lex_state = 3}, - [2601] = {.lex_state = 4, .external_lex_state = 3}, - [2602] = {.lex_state = 4, .external_lex_state = 3}, - [2603] = {.lex_state = 4, .external_lex_state = 3}, - [2604] = {.lex_state = 4, .external_lex_state = 3}, - [2605] = {.lex_state = 4, .external_lex_state = 3}, - [2606] = {.lex_state = 4, .external_lex_state = 3}, - [2607] = {.lex_state = 4, .external_lex_state = 3}, - [2608] = {.lex_state = 4, .external_lex_state = 3}, - [2609] = {.lex_state = 4, .external_lex_state = 3}, - [2610] = {.lex_state = 4, .external_lex_state = 3}, - [2611] = {.lex_state = 0, .external_lex_state = 3}, - [2612] = {.lex_state = 0, .external_lex_state = 3}, - [2613] = {.lex_state = 4, .external_lex_state = 3}, - [2614] = {.lex_state = 4, .external_lex_state = 3}, - [2615] = {.lex_state = 9, .external_lex_state = 3}, - [2616] = {.lex_state = 4, .external_lex_state = 3}, - [2617] = {.lex_state = 4, .external_lex_state = 3}, - [2618] = {.lex_state = 0, .external_lex_state = 3}, - [2619] = {.lex_state = 4, .external_lex_state = 3}, + [2590] = {.lex_state = 0, .external_lex_state = 3}, + [2591] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -18748,50 +17379,6 @@ 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), @@ -18854,80 +17441,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2518), - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1332), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [sym_source_file] = STATE(2508), + [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(2506), + [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(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -19004,79 +17591,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19153,79 +17740,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19302,234 +17889,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1332), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(109), - [sym_identifier] = ACTIONS(111), - [anon_sym_SEMI] = ACTIONS(114), - [anon_sym_macro_rules_BANG] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(123), - [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(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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1310), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [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_RBRACE] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -19599,7 +18037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [6] = { + [5] = { [sym__statement] = STATE(8), [sym_empty_statement] = STATE(8), [sym_expression_statement] = STATE(8), @@ -19617,68 +18055,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(8), [sym_function_item] = STATE(8), [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2517), + [sym_function_modifiers] = STATE(2506), [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_extern_modifier] = STATE(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [ts_builtin_sym_end] = ACTIONS(111), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -19748,86 +18186,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1315), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [6] = { + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_macro_definition] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_foreign_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_union_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_extern_crate_declaration] = STATE(3), + [sym_const_item] = STATE(3), + [sym_static_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function_modifiers] = STATE(2506), + [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(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -19897,86 +18335,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [7] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(264), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -20046,80 +18484,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [8] = { + [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(2506), + [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(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [ts_builtin_sym_end] = ACTIONS(117), + [sym_identifier] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(122), + [anon_sym_macro_rules_BANG] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(134), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_u8] = ACTIONS(140), + [anon_sym_i8] = ACTIONS(140), + [anon_sym_u16] = ACTIONS(140), + [anon_sym_i16] = ACTIONS(140), + [anon_sym_u32] = ACTIONS(140), + [anon_sym_i32] = ACTIONS(140), + [anon_sym_u64] = ACTIONS(140), + [anon_sym_i64] = ACTIONS(140), + [anon_sym_u128] = ACTIONS(140), + [anon_sym_i128] = ACTIONS(140), + [anon_sym_isize] = ACTIONS(140), + [anon_sym_usize] = ACTIONS(140), + [anon_sym_f32] = ACTIONS(140), + [anon_sym_f64] = ACTIONS(140), + [anon_sym_bool] = ACTIONS(140), + [anon_sym_str] = ACTIONS(140), + [anon_sym_char] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(146), + [anon_sym_break] = ACTIONS(149), + [anon_sym_const] = ACTIONS(152), + [anon_sym_continue] = ACTIONS(155), + [anon_sym_default] = ACTIONS(158), + [anon_sym_enum] = ACTIONS(161), + [anon_sym_fn] = ACTIONS(164), + [anon_sym_for] = ACTIONS(167), + [anon_sym_if] = ACTIONS(170), + [anon_sym_impl] = ACTIONS(173), + [anon_sym_let] = ACTIONS(176), + [anon_sym_loop] = ACTIONS(179), + [anon_sym_match] = ACTIONS(182), + [anon_sym_mod] = ACTIONS(185), + [anon_sym_pub] = ACTIONS(188), + [anon_sym_return] = ACTIONS(191), + [anon_sym_static] = ACTIONS(194), + [anon_sym_struct] = ACTIONS(197), + [anon_sym_trait] = ACTIONS(200), + [anon_sym_type] = ACTIONS(203), + [anon_sym_union] = ACTIONS(206), + [anon_sym_unsafe] = ACTIONS(209), + [anon_sym_use] = ACTIONS(212), + [anon_sym_while] = ACTIONS(215), + [anon_sym_POUND] = ACTIONS(218), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(224), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_DOT_DOT] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(236), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_move] = ACTIONS(242), + [sym_integer_literal] = ACTIONS(245), + [aux_sym_string_literal_token1] = ACTIONS(248), + [sym_char_literal] = ACTIONS(245), + [anon_sym_true] = ACTIONS(251), + [anon_sym_false] = ACTIONS(251), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(254), + [sym_super] = ACTIONS(257), + [sym_crate] = ACTIONS(260), + [sym_metavariable] = ACTIONS(263), + [sym_raw_string_literal] = ACTIONS(245), + [sym_float_literal] = ACTIONS(245), + [sym_block_comment] = ACTIONS(3), + }, [9] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [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(2506), + [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(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -20196,79 +18783,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [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(2506), + [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(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -20345,85 +18932,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1332), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(270), + [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(2506), + [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(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(270), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -20494,79 +19081,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2517), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -20643,79 +19230,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_macro_definition] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_foreign_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_union_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_extern_crate_declaration] = STATE(15), - [sym_const_item] = STATE(15), - [sym_static_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2517), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [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(2506), + [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(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -20792,228 +19379,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1332), - [sym_macro_invocation] = STATE(188), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(111), - [anon_sym_SEMI] = ACTIONS(114), - [anon_sym_macro_rules_BANG] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(109), - [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), - }, - [15] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -21089,80 +19527,229 @@ 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(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(185), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(122), + [anon_sym_macro_rules_BANG] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(134), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_u8] = ACTIONS(140), + [anon_sym_i8] = ACTIONS(140), + [anon_sym_u16] = ACTIONS(140), + [anon_sym_i16] = ACTIONS(140), + [anon_sym_u32] = ACTIONS(140), + [anon_sym_i32] = ACTIONS(140), + [anon_sym_u64] = ACTIONS(140), + [anon_sym_i64] = ACTIONS(140), + [anon_sym_u128] = ACTIONS(140), + [anon_sym_i128] = ACTIONS(140), + [anon_sym_isize] = ACTIONS(140), + [anon_sym_usize] = ACTIONS(140), + [anon_sym_f32] = ACTIONS(140), + [anon_sym_f64] = ACTIONS(140), + [anon_sym_bool] = ACTIONS(140), + [anon_sym_str] = ACTIONS(140), + [anon_sym_char] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(146), + [anon_sym_break] = ACTIONS(149), + [anon_sym_const] = ACTIONS(152), + [anon_sym_continue] = ACTIONS(155), + [anon_sym_default] = ACTIONS(158), + [anon_sym_enum] = ACTIONS(161), + [anon_sym_fn] = ACTIONS(164), + [anon_sym_for] = ACTIONS(167), + [anon_sym_if] = ACTIONS(170), + [anon_sym_impl] = ACTIONS(173), + [anon_sym_let] = ACTIONS(176), + [anon_sym_loop] = ACTIONS(179), + [anon_sym_match] = ACTIONS(182), + [anon_sym_mod] = ACTIONS(185), + [anon_sym_pub] = ACTIONS(188), + [anon_sym_return] = ACTIONS(191), + [anon_sym_static] = ACTIONS(194), + [anon_sym_struct] = ACTIONS(197), + [anon_sym_trait] = ACTIONS(200), + [anon_sym_type] = ACTIONS(203), + [anon_sym_union] = ACTIONS(206), + [anon_sym_unsafe] = ACTIONS(209), + [anon_sym_use] = ACTIONS(212), + [anon_sym_while] = ACTIONS(215), + [anon_sym_POUND] = ACTIONS(218), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(224), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_DOT_DOT] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(236), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_move] = ACTIONS(242), + [sym_integer_literal] = ACTIONS(245), + [aux_sym_string_literal_token1] = ACTIONS(248), + [sym_char_literal] = ACTIONS(245), + [anon_sym_true] = ACTIONS(251), + [anon_sym_false] = ACTIONS(251), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(254), + [sym_super] = ACTIONS(257), + [sym_crate] = ACTIONS(260), + [sym_metavariable] = ACTIONS(263), + [sym_raw_string_literal] = ACTIONS(245), + [sym_float_literal] = ACTIONS(245), + [sym_block_comment] = ACTIONS(3), + }, [16] = { - [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(2517), - [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(1544), - [sym_visibility_modifier] = STATE(1381), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(83), - [sym_scoped_identifier] = STATE(1205), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(87), - [sym_if_let_expression] = STATE(87), - [sym_match_expression] = STATE(87), - [sym_while_expression] = STATE(87), - [sym_while_let_expression] = STATE(87), - [sym_loop_expression] = STATE(87), - [sym_for_expression] = STATE(87), - [sym_const_block] = STATE(87), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2503), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(87), - [sym_async_block] = STATE(87), - [sym_block] = STATE(87), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2506), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1534), + [sym_visibility_modifier] = STATE(1369), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(136), + [sym_scoped_identifier] = STATE(1195), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(76), + [sym_if_let_expression] = STATE(76), + [sym_match_expression] = STATE(76), + [sym_while_expression] = STATE(76), + [sym_while_let_expression] = STATE(76), + [sym_loop_expression] = STATE(76), + [sym_for_expression] = STATE(76), + [sym_const_block] = STATE(76), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2496), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(76), + [sym_async_block] = STATE(76), + [sym_block] = STATE(76), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -21239,52 +19826,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -21382,63 +19969,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1182), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1179), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(310), [anon_sym_RPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(310), [anon_sym_EQ_GT] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(310), [anon_sym_RBRACK] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(312), [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -21457,7 +20044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(314), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), @@ -21475,18 +20062,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(312), [anon_sym_COMMA] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(312), [anon_sym_GT] = ACTIONS(312), [anon_sym_else] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(312), [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(312), [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DASH] = ACTIONS(312), [anon_sym_AMP_AMP] = ACTIONS(310), [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(312), [anon_sym_CARET] = ACTIONS(312), [anon_sym_EQ_EQ] = ACTIONS(310), [anon_sym_BANG_EQ] = ACTIONS(310), @@ -21524,64 +20111,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1067), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_EQ_GT] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_RBRACK] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(324), - [anon_sym_QMARK] = ACTIONS(322), + [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), @@ -21600,7 +20187,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(324), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -21615,42 +20202,42 @@ 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(324), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_else] = ACTIONS(324), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_else] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_CARET] = ACTIONS(324), - [anon_sym_EQ_EQ] = ACTIONS(322), - [anon_sym_BANG_EQ] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(322), - [anon_sym_GT_EQ] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(324), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PERCENT] = ACTIONS(324), - [anon_sym_PLUS_EQ] = ACTIONS(322), - [anon_sym_DASH_EQ] = ACTIONS(322), - [anon_sym_STAR_EQ] = ACTIONS(322), - [anon_sym_SLASH_EQ] = ACTIONS(322), - [anon_sym_PERCENT_EQ] = ACTIONS(322), - [anon_sym_AMP_EQ] = ACTIONS(322), - [anon_sym_PIPE_EQ] = ACTIONS(322), - [anon_sym_CARET_EQ] = ACTIONS(322), - [anon_sym_LT_LT_EQ] = ACTIONS(322), - [anon_sym_GT_GT_EQ] = ACTIONS(322), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(324), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21666,64 +20253,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1084), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_RPAREN] = ACTIONS(326), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_EQ_GT] = ACTIONS(326), - [anon_sym_LBRACK] = ACTIONS(326), - [anon_sym_RBRACK] = ACTIONS(326), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_QMARK] = ACTIONS(326), + [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), @@ -21742,7 +20329,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(328), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -21757,42 +20344,42 @@ 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(328), - [anon_sym_COMMA] = ACTIONS(326), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(328), - [anon_sym_else] = ACTIONS(328), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_else] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(328), - [anon_sym_DOT_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE_PIPE] = ACTIONS(326), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(328), - [anon_sym_EQ_EQ] = ACTIONS(326), - [anon_sym_BANG_EQ] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_PLUS_EQ] = ACTIONS(326), - [anon_sym_DASH_EQ] = ACTIONS(326), - [anon_sym_STAR_EQ] = ACTIONS(326), - [anon_sym_SLASH_EQ] = ACTIONS(326), - [anon_sym_PERCENT_EQ] = ACTIONS(326), - [anon_sym_AMP_EQ] = ACTIONS(326), - [anon_sym_PIPE_EQ] = ACTIONS(326), - [anon_sym_CARET_EQ] = ACTIONS(326), - [anon_sym_LT_LT_EQ] = ACTIONS(326), - [anon_sym_GT_GT_EQ] = ACTIONS(326), + [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(328), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21808,64 +20395,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1067), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(326), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_EQ_GT] = ACTIONS(326), - [anon_sym_LBRACK] = ACTIONS(326), - [anon_sym_RBRACK] = ACTIONS(326), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_QMARK] = ACTIONS(326), + [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), @@ -21884,7 +20471,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(328), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -21899,42 +20486,42 @@ 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(328), - [anon_sym_COMMA] = ACTIONS(326), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(328), - [anon_sym_else] = ACTIONS(328), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_else] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(328), - [anon_sym_DOT_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE_PIPE] = ACTIONS(326), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(328), - [anon_sym_EQ_EQ] = ACTIONS(326), - [anon_sym_BANG_EQ] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_PLUS_EQ] = ACTIONS(326), - [anon_sym_DASH_EQ] = ACTIONS(326), - [anon_sym_STAR_EQ] = ACTIONS(326), - [anon_sym_SLASH_EQ] = ACTIONS(326), - [anon_sym_PERCENT_EQ] = ACTIONS(326), - [anon_sym_AMP_EQ] = ACTIONS(326), - [anon_sym_PIPE_EQ] = ACTIONS(326), - [anon_sym_CARET_EQ] = ACTIONS(326), - [anon_sym_LT_LT_EQ] = ACTIONS(326), - [anon_sym_GT_GT_EQ] = ACTIONS(326), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(328), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21950,64 +20537,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(330), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(324), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(330), - [anon_sym_EQ_GT] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_RBRACK] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_QMARK] = ACTIONS(330), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_EQ_GT] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -22025,8 +20612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(334), - [anon_sym_as] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -22041,42 +20628,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_COMMA] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_else] = ACTIONS(332), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_COMMA] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), + [anon_sym_else] = ACTIONS(326), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), [anon_sym_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(330), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -22092,64 +20679,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1084), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(320), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_EQ_GT] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_RBRACK] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(324), - [anon_sym_QMARK] = ACTIONS(322), + [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), @@ -22168,7 +20755,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(324), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -22183,42 +20770,42 @@ 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(324), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_else] = ACTIONS(324), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_else] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_CARET] = ACTIONS(324), - [anon_sym_EQ_EQ] = ACTIONS(322), - [anon_sym_BANG_EQ] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(322), - [anon_sym_GT_EQ] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(324), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PERCENT] = ACTIONS(324), - [anon_sym_PLUS_EQ] = ACTIONS(322), - [anon_sym_DASH_EQ] = ACTIONS(322), - [anon_sym_STAR_EQ] = ACTIONS(322), - [anon_sym_SLASH_EQ] = ACTIONS(322), - [anon_sym_PERCENT_EQ] = ACTIONS(322), - [anon_sym_AMP_EQ] = ACTIONS(322), - [anon_sym_PIPE_EQ] = ACTIONS(322), - [anon_sym_CARET_EQ] = ACTIONS(322), - [anon_sym_LT_LT_EQ] = ACTIONS(322), - [anon_sym_GT_GT_EQ] = ACTIONS(322), + [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(324), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -22234,52 +20821,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1178), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), @@ -22327,18 +20914,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(338), [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(328), [anon_sym_GT] = ACTIONS(338), [anon_sym_else] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(330), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(332), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), [anon_sym_DASH] = ACTIONS(308), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(334), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -22376,52 +20963,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -22512,59 +21099,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(326), - [anon_sym_LBRACK] = ACTIONS(326), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_QMARK] = ACTIONS(326), + [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), @@ -22583,7 +21170,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(328), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -22598,40 +21185,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(328), + [anon_sym_EQ] = ACTIONS(338), [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(328), - [anon_sym_DOT_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE_PIPE] = ACTIONS(326), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(328), - [anon_sym_EQ_EQ] = ACTIONS(326), - [anon_sym_BANG_EQ] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_PLUS_EQ] = ACTIONS(326), - [anon_sym_DASH_EQ] = ACTIONS(326), - [anon_sym_STAR_EQ] = ACTIONS(326), - [anon_sym_SLASH_EQ] = ACTIONS(326), - [anon_sym_PERCENT_EQ] = ACTIONS(326), - [anon_sym_AMP_EQ] = ACTIONS(326), - [anon_sym_PIPE_EQ] = ACTIONS(326), - [anon_sym_CARET_EQ] = ACTIONS(326), - [anon_sym_LT_LT_EQ] = ACTIONS(326), - [anon_sym_GT_GT_EQ] = ACTIONS(326), + [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(328), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -22647,59 +21234,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_QMARK] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22717,8 +21304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(334), - [anon_sym_as] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -22733,40 +21320,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(330), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -22782,59 +21369,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1084), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [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_LPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22853,7 +21440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -22868,40 +21455,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(314), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(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(320), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -22917,59 +21504,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1067), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(324), - [anon_sym_QMARK] = ACTIONS(322), + [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), @@ -22988,7 +21575,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(324), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -23003,40 +21590,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(324), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), + [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(324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_CARET] = ACTIONS(324), - [anon_sym_EQ_EQ] = ACTIONS(322), - [anon_sym_BANG_EQ] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(322), - [anon_sym_GT_EQ] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(324), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PERCENT] = ACTIONS(324), - [anon_sym_PLUS_EQ] = ACTIONS(322), - [anon_sym_DASH_EQ] = ACTIONS(322), - [anon_sym_STAR_EQ] = ACTIONS(322), - [anon_sym_SLASH_EQ] = ACTIONS(322), - [anon_sym_PERCENT_EQ] = ACTIONS(322), - [anon_sym_AMP_EQ] = ACTIONS(322), - [anon_sym_PIPE_EQ] = ACTIONS(322), - [anon_sym_CARET_EQ] = ACTIONS(322), - [anon_sym_LT_LT_EQ] = ACTIONS(322), - [anon_sym_GT_GT_EQ] = ACTIONS(322), + [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(324), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -23052,59 +21639,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1127), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1067), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(324), - [anon_sym_QMARK] = ACTIONS(322), + [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), @@ -23123,7 +21710,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(324), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -23138,40 +21725,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(324), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), + [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(324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_CARET] = ACTIONS(324), - [anon_sym_EQ_EQ] = ACTIONS(322), - [anon_sym_BANG_EQ] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(322), - [anon_sym_GT_EQ] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(324), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PERCENT] = ACTIONS(324), - [anon_sym_PLUS_EQ] = ACTIONS(322), - [anon_sym_DASH_EQ] = ACTIONS(322), - [anon_sym_STAR_EQ] = ACTIONS(322), - [anon_sym_SLASH_EQ] = ACTIONS(322), - [anon_sym_PERCENT_EQ] = ACTIONS(322), - [anon_sym_AMP_EQ] = ACTIONS(322), - [anon_sym_PIPE_EQ] = ACTIONS(322), - [anon_sym_CARET_EQ] = ACTIONS(322), - [anon_sym_LT_LT_EQ] = ACTIONS(322), - [anon_sym_GT_GT_EQ] = ACTIONS(322), + [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(324), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -23187,59 +21774,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1084), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23258,7 +21845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -23273,40 +21860,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(314), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(320), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -23322,59 +21909,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_LBRACE] = ACTIONS(326), - [anon_sym_LBRACK] = ACTIONS(326), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_QMARK] = ACTIONS(326), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23392,8 +21979,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(328), + [anon_sym_SQUOTE] = ACTIONS(314), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -23408,40 +21995,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(328), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(328), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(328), - [anon_sym_DOT_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(328), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE_PIPE] = ACTIONS(326), - [anon_sym_PIPE] = ACTIONS(328), - [anon_sym_CARET] = ACTIONS(328), - [anon_sym_EQ_EQ] = ACTIONS(326), - [anon_sym_BANG_EQ] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_PLUS_EQ] = ACTIONS(326), - [anon_sym_DASH_EQ] = ACTIONS(326), - [anon_sym_STAR_EQ] = ACTIONS(326), - [anon_sym_SLASH_EQ] = ACTIONS(326), - [anon_sym_PERCENT_EQ] = ACTIONS(326), - [anon_sym_AMP_EQ] = ACTIONS(326), - [anon_sym_PIPE_EQ] = ACTIONS(326), - [anon_sym_CARET_EQ] = ACTIONS(326), - [anon_sym_LT_LT_EQ] = ACTIONS(326), - [anon_sym_GT_GT_EQ] = ACTIONS(326), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(328), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -23457,54 +22044,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(648), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_enum_variant_list_repeat1] = STATE(648), + [sym_attribute_item] = STATE(642), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_enum_variant_list_repeat1] = STATE(642), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23568,170 +22155,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(42), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = 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_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(376), - [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), - }, - [35] = { [sym_attribute_item] = STATE(33), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [aux_sym_enum_variant_list_repeat1] = STATE(33), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(378), + [anon_sym_RBRACK] = ACTIONS(374), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23766,7 +22242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(306), [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(376), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), @@ -23789,58 +22265,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [36] = { + [35] = { [sym_attribute_item] = STATE(41), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [aux_sym_enum_variant_list_repeat1] = STATE(41), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(382), + [anon_sym_RPAREN] = ACTIONS(378), + [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_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(380), + [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), + }, + [36] = { + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_enum_variant_list_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(382), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -23900,54 +22487,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_attribute_item] = STATE(41), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_enum_variant_list_repeat1] = STATE(41), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(384), @@ -24010,54 +22597,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(386), @@ -24120,54 +22707,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(41), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_enum_variant_list_repeat1] = STATE(41), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(388), @@ -24230,54 +22817,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_attribute_item] = STATE(41), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_enum_variant_list_repeat1] = STATE(41), + [sym_attribute_item] = STATE(642), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_enum_variant_list_repeat1] = STATE(642), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24339,54 +22926,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_attribute_item] = STATE(648), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_enum_variant_list_repeat1] = STATE(648), + [sym_attribute_item] = STATE(642), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_enum_variant_list_repeat1] = STATE(642), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24448,54 +23035,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_attribute_item] = STATE(648), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_enum_variant_list_repeat1] = STATE(648), + [sym_attribute_item] = STATE(642), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_enum_variant_list_repeat1] = STATE(642), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24557,54 +23144,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(648), - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1338), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_enum_variant_list_repeat1] = STATE(648), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24666,53 +23253,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_tuple_expression_repeat1] = STATE(47), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_tuple_expression_repeat1] = STATE(49), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(390), @@ -24774,56 +23361,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_else_clause] = STATE(143), + [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_else] = ACTIONS(396), + [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_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(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [aux_sym_tuple_expression_repeat1] = STATE(47), [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), @@ -24881,273 +23576,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(173), - [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_else] = ACTIONS(398), - [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_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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1333), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [aux_sym_tuple_expression_repeat1] = STATE(45), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_tuple_expression_repeat1] = STATE(49), [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), @@ -25205,57 +23684,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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [48] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [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(400), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -25313,8 +23792,116 @@ 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(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1324), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [aux_sym_tuple_expression_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_RPAREN] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_u8] = ACTIONS(419), + [anon_sym_i8] = ACTIONS(419), + [anon_sym_u16] = ACTIONS(419), + [anon_sym_i16] = ACTIONS(419), + [anon_sym_u32] = ACTIONS(419), + [anon_sym_i32] = ACTIONS(419), + [anon_sym_u64] = ACTIONS(419), + [anon_sym_i64] = ACTIONS(419), + [anon_sym_u128] = ACTIONS(419), + [anon_sym_i128] = ACTIONS(419), + [anon_sym_isize] = ACTIONS(419), + [anon_sym_usize] = ACTIONS(419), + [anon_sym_f32] = ACTIONS(419), + [anon_sym_f64] = ACTIONS(419), + [anon_sym_bool] = ACTIONS(419), + [anon_sym_str] = ACTIONS(419), + [anon_sym_char] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(422), + [anon_sym_async] = ACTIONS(425), + [anon_sym_break] = ACTIONS(428), + [anon_sym_const] = ACTIONS(431), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(440), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(446), + [anon_sym_match] = ACTIONS(449), + [anon_sym_return] = ACTIONS(452), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(455), + [anon_sym_while] = ACTIONS(458), + [anon_sym_BANG] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(464), + [anon_sym_AMP] = ACTIONS(467), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(416), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_yield] = ACTIONS(476), + [anon_sym_move] = ACTIONS(479), + [sym_integer_literal] = ACTIONS(482), + [aux_sym_string_literal_token1] = ACTIONS(485), + [sym_char_literal] = ACTIONS(482), + [anon_sym_true] = ACTIONS(488), + [anon_sym_false] = ACTIONS(488), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(491), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(497), + [sym_raw_string_literal] = ACTIONS(482), + [sym_float_literal] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + }, [50] = { - [sym_else_clause] = STATE(159), + [sym_else_clause] = STATE(133), [ts_builtin_sym_end] = ACTIONS(500), [sym_identifier] = ACTIONS(502), [anon_sym_SEMI] = ACTIONS(500), @@ -25375,7 +23962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(502), [anon_sym_LT] = ACTIONS(502), [anon_sym_GT] = ACTIONS(502), - [anon_sym_else] = ACTIONS(398), + [anon_sym_else] = ACTIONS(396), [anon_sym_COLON_COLON] = ACTIONS(500), [anon_sym_AMP] = ACTIONS(502), [anon_sym_DOT_DOT_DOT] = ACTIONS(500), @@ -25422,52 +24009,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25505,12 +24092,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(506), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), + [sym_mutable_specifier] = ACTIONS(508), [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -25529,57 +24116,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(512), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), + }, + [53] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(516), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), + }, + [54] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(518), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), + }, + [55] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(512), + [anon_sym_RBRACK] = ACTIONS(520), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -25635,267 +24543,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [53] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = 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), - }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(516), - [sym_identifier] = ACTIONS(518), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_macro_rules_BANG] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_QMARK] = ACTIONS(516), - [anon_sym_u8] = ACTIONS(518), - [anon_sym_i8] = ACTIONS(518), - [anon_sym_u16] = ACTIONS(518), - [anon_sym_i16] = ACTIONS(518), - [anon_sym_u32] = ACTIONS(518), - [anon_sym_i32] = ACTIONS(518), - [anon_sym_u64] = ACTIONS(518), - [anon_sym_i64] = ACTIONS(518), - [anon_sym_u128] = ACTIONS(518), - [anon_sym_i128] = ACTIONS(518), - [anon_sym_isize] = ACTIONS(518), - [anon_sym_usize] = ACTIONS(518), - [anon_sym_f32] = ACTIONS(518), - [anon_sym_f64] = ACTIONS(518), - [anon_sym_bool] = ACTIONS(518), - [anon_sym_str] = ACTIONS(518), - [anon_sym_char] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(518), - [anon_sym_as] = ACTIONS(518), - [anon_sym_async] = ACTIONS(518), - [anon_sym_break] = ACTIONS(518), - [anon_sym_const] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(518), - [anon_sym_default] = ACTIONS(518), - [anon_sym_enum] = ACTIONS(518), - [anon_sym_fn] = ACTIONS(518), - [anon_sym_for] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_impl] = ACTIONS(518), - [anon_sym_let] = ACTIONS(518), - [anon_sym_loop] = ACTIONS(518), - [anon_sym_match] = ACTIONS(518), - [anon_sym_mod] = ACTIONS(518), - [anon_sym_pub] = ACTIONS(518), - [anon_sym_return] = ACTIONS(518), - [anon_sym_static] = ACTIONS(518), - [anon_sym_struct] = ACTIONS(518), - [anon_sym_trait] = ACTIONS(518), - [anon_sym_type] = ACTIONS(518), - [anon_sym_union] = ACTIONS(518), - [anon_sym_unsafe] = ACTIONS(518), - [anon_sym_use] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_POUND] = ACTIONS(516), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(518), - [anon_sym_extern] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_else] = ACTIONS(518), - [anon_sym_COLON_COLON] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(516), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(516), - [anon_sym_PIPE_PIPE] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(516), - [anon_sym_BANG_EQ] = ACTIONS(516), - [anon_sym_LT_EQ] = ACTIONS(516), - [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_PLUS_EQ] = ACTIONS(516), - [anon_sym_DASH_EQ] = ACTIONS(516), - [anon_sym_STAR_EQ] = ACTIONS(516), - [anon_sym_SLASH_EQ] = ACTIONS(516), - [anon_sym_PERCENT_EQ] = ACTIONS(516), - [anon_sym_AMP_EQ] = ACTIONS(516), - [anon_sym_PIPE_EQ] = ACTIONS(516), - [anon_sym_CARET_EQ] = ACTIONS(516), - [anon_sym_LT_LT_EQ] = ACTIONS(516), - [anon_sym_GT_GT_EQ] = ACTIONS(516), - [anon_sym_yield] = ACTIONS(518), - [anon_sym_move] = ACTIONS(518), - [anon_sym_DOT] = ACTIONS(518), - [sym_integer_literal] = ACTIONS(516), - [aux_sym_string_literal_token1] = ACTIONS(516), - [sym_char_literal] = ACTIONS(516), - [anon_sym_true] = ACTIONS(518), - [anon_sym_false] = ACTIONS(518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(518), - [sym_super] = ACTIONS(518), - [sym_crate] = ACTIONS(518), - [sym_metavariable] = ACTIONS(516), - [sym_raw_string_literal] = ACTIONS(516), - [sym_float_literal] = ACTIONS(516), - [sym_block_comment] = ACTIONS(3), - }, - [55] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1311), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [56] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25926,7 +24620,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(522), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -25936,8 +24630,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -25956,267 +24650,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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [57] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(524), [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(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [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), }, - [57] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [58] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_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(526), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), }, - [58] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [59] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26247,7 +24941,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(528), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -26257,8 +24951,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -26277,53 +24971,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [60] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26354,7 +25048,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(532), + [anon_sym_let] = ACTIONS(530), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -26364,8 +25058,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -26384,53 +25078,160 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [61] = { + [ts_builtin_sym_end] = ACTIONS(532), + [sym_identifier] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(532), + [anon_sym_macro_rules_BANG] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_QMARK] = ACTIONS(532), + [anon_sym_u8] = ACTIONS(534), + [anon_sym_i8] = ACTIONS(534), + [anon_sym_u16] = ACTIONS(534), + [anon_sym_i16] = ACTIONS(534), + [anon_sym_u32] = ACTIONS(534), + [anon_sym_i32] = ACTIONS(534), + [anon_sym_u64] = ACTIONS(534), + [anon_sym_i64] = ACTIONS(534), + [anon_sym_u128] = ACTIONS(534), + [anon_sym_i128] = ACTIONS(534), + [anon_sym_isize] = ACTIONS(534), + [anon_sym_usize] = ACTIONS(534), + [anon_sym_f32] = ACTIONS(534), + [anon_sym_f64] = ACTIONS(534), + [anon_sym_bool] = ACTIONS(534), + [anon_sym_str] = ACTIONS(534), + [anon_sym_char] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_as] = ACTIONS(534), + [anon_sym_async] = ACTIONS(534), + [anon_sym_break] = ACTIONS(534), + [anon_sym_const] = ACTIONS(534), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_default] = ACTIONS(534), + [anon_sym_enum] = ACTIONS(534), + [anon_sym_fn] = ACTIONS(534), + [anon_sym_for] = ACTIONS(534), + [anon_sym_if] = ACTIONS(534), + [anon_sym_impl] = ACTIONS(534), + [anon_sym_let] = ACTIONS(534), + [anon_sym_loop] = ACTIONS(534), + [anon_sym_match] = ACTIONS(534), + [anon_sym_mod] = ACTIONS(534), + [anon_sym_pub] = ACTIONS(534), + [anon_sym_return] = ACTIONS(534), + [anon_sym_static] = ACTIONS(534), + [anon_sym_struct] = ACTIONS(534), + [anon_sym_trait] = ACTIONS(534), + [anon_sym_type] = ACTIONS(534), + [anon_sym_union] = ACTIONS(534), + [anon_sym_unsafe] = ACTIONS(534), + [anon_sym_use] = ACTIONS(534), + [anon_sym_while] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(534), + [anon_sym_extern] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_else] = ACTIONS(534), + [anon_sym_COLON_COLON] = ACTIONS(532), + [anon_sym_AMP] = ACTIONS(534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(532), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_AMP_AMP] = ACTIONS(532), + [anon_sym_PIPE_PIPE] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(534), + [anon_sym_EQ_EQ] = ACTIONS(532), + [anon_sym_BANG_EQ] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_GT_GT] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_PLUS_EQ] = ACTIONS(532), + [anon_sym_DASH_EQ] = ACTIONS(532), + [anon_sym_STAR_EQ] = ACTIONS(532), + [anon_sym_SLASH_EQ] = ACTIONS(532), + [anon_sym_PERCENT_EQ] = ACTIONS(532), + [anon_sym_AMP_EQ] = ACTIONS(532), + [anon_sym_PIPE_EQ] = ACTIONS(532), + [anon_sym_CARET_EQ] = ACTIONS(532), + [anon_sym_LT_LT_EQ] = ACTIONS(532), + [anon_sym_GT_GT_EQ] = ACTIONS(532), + [anon_sym_yield] = ACTIONS(534), + [anon_sym_move] = ACTIONS(534), + [anon_sym_DOT] = ACTIONS(534), + [sym_integer_literal] = ACTIONS(532), + [aux_sym_string_literal_token1] = ACTIONS(532), + [sym_char_literal] = ACTIONS(532), + [anon_sym_true] = ACTIONS(534), + [anon_sym_false] = ACTIONS(534), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(534), + [sym_super] = ACTIONS(534), + [sym_crate] = ACTIONS(534), + [sym_metavariable] = ACTIONS(532), + [sym_raw_string_literal] = ACTIONS(532), + [sym_float_literal] = ACTIONS(532), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26468,12 +25269,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(534), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(308), + [sym_mutable_specifier] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -26491,374 +25292,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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(534), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(536), - [sym_identifier] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_macro_rules_BANG] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(536), - [anon_sym_u8] = ACTIONS(538), - [anon_sym_i8] = ACTIONS(538), - [anon_sym_u16] = ACTIONS(538), - [anon_sym_i16] = ACTIONS(538), - [anon_sym_u32] = ACTIONS(538), - [anon_sym_i32] = ACTIONS(538), - [anon_sym_u64] = ACTIONS(538), - [anon_sym_i64] = ACTIONS(538), - [anon_sym_u128] = ACTIONS(538), - [anon_sym_i128] = ACTIONS(538), - [anon_sym_isize] = ACTIONS(538), - [anon_sym_usize] = ACTIONS(538), - [anon_sym_f32] = ACTIONS(538), - [anon_sym_f64] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(538), - [anon_sym_str] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_as] = ACTIONS(538), - [anon_sym_async] = ACTIONS(538), - [anon_sym_break] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(538), - [anon_sym_fn] = ACTIONS(538), - [anon_sym_for] = ACTIONS(538), - [anon_sym_if] = ACTIONS(538), - [anon_sym_impl] = ACTIONS(538), - [anon_sym_let] = ACTIONS(538), - [anon_sym_loop] = ACTIONS(538), - [anon_sym_match] = ACTIONS(538), - [anon_sym_mod] = ACTIONS(538), - [anon_sym_pub] = ACTIONS(538), - [anon_sym_return] = ACTIONS(538), - [anon_sym_static] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(538), - [anon_sym_trait] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_union] = ACTIONS(538), - [anon_sym_unsafe] = ACTIONS(538), - [anon_sym_use] = ACTIONS(538), - [anon_sym_while] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_EQ] = ACTIONS(538), - [anon_sym_extern] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_else] = ACTIONS(538), - [anon_sym_COLON_COLON] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(536), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(538), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(538), - [anon_sym_move] = ACTIONS(538), - [anon_sym_DOT] = ACTIONS(538), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(536), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_crate] = ACTIONS(538), - [sym_metavariable] = ACTIONS(536), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), - [sym_block_comment] = ACTIONS(3), - }, [63] = { - [ts_builtin_sym_end] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_macro_rules_BANG] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_QMARK] = ACTIONS(540), - [anon_sym_u8] = ACTIONS(542), - [anon_sym_i8] = ACTIONS(542), - [anon_sym_u16] = ACTIONS(542), - [anon_sym_i16] = ACTIONS(542), - [anon_sym_u32] = ACTIONS(542), - [anon_sym_i32] = ACTIONS(542), - [anon_sym_u64] = ACTIONS(542), - [anon_sym_i64] = ACTIONS(542), - [anon_sym_u128] = ACTIONS(542), - [anon_sym_i128] = ACTIONS(542), - [anon_sym_isize] = ACTIONS(542), - [anon_sym_usize] = ACTIONS(542), - [anon_sym_f32] = ACTIONS(542), - [anon_sym_f64] = ACTIONS(542), - [anon_sym_bool] = ACTIONS(542), - [anon_sym_str] = ACTIONS(542), - [anon_sym_char] = ACTIONS(542), - [anon_sym_SQUOTE] = ACTIONS(542), - [anon_sym_as] = ACTIONS(542), - [anon_sym_async] = ACTIONS(542), - [anon_sym_break] = ACTIONS(542), - [anon_sym_const] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(542), - [anon_sym_default] = ACTIONS(542), - [anon_sym_enum] = ACTIONS(542), - [anon_sym_fn] = ACTIONS(542), - [anon_sym_for] = ACTIONS(542), - [anon_sym_if] = ACTIONS(542), - [anon_sym_impl] = ACTIONS(542), - [anon_sym_let] = ACTIONS(542), - [anon_sym_loop] = ACTIONS(542), - [anon_sym_match] = ACTIONS(542), - [anon_sym_mod] = ACTIONS(542), - [anon_sym_pub] = ACTIONS(542), - [anon_sym_return] = ACTIONS(542), - [anon_sym_static] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(542), - [anon_sym_trait] = ACTIONS(542), - [anon_sym_type] = ACTIONS(542), - [anon_sym_union] = ACTIONS(542), - [anon_sym_unsafe] = ACTIONS(542), - [anon_sym_use] = ACTIONS(542), - [anon_sym_while] = ACTIONS(542), - [anon_sym_POUND] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(542), - [anon_sym_extern] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_else] = ACTIONS(542), - [anon_sym_COLON_COLON] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(540), - [anon_sym_DOT_DOT] = ACTIONS(542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(540), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(540), - [anon_sym_BANG_EQ] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(540), - [anon_sym_GT_EQ] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_PLUS_EQ] = ACTIONS(540), - [anon_sym_DASH_EQ] = ACTIONS(540), - [anon_sym_STAR_EQ] = ACTIONS(540), - [anon_sym_SLASH_EQ] = ACTIONS(540), - [anon_sym_PERCENT_EQ] = ACTIONS(540), - [anon_sym_AMP_EQ] = ACTIONS(540), - [anon_sym_PIPE_EQ] = ACTIONS(540), - [anon_sym_CARET_EQ] = ACTIONS(540), - [anon_sym_LT_LT_EQ] = ACTIONS(540), - [anon_sym_GT_GT_EQ] = ACTIONS(540), - [anon_sym_yield] = ACTIONS(542), - [anon_sym_move] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(542), - [sym_integer_literal] = ACTIONS(540), - [aux_sym_string_literal_token1] = ACTIONS(540), - [sym_char_literal] = ACTIONS(540), - [anon_sym_true] = ACTIONS(542), - [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(542), - [sym_super] = ACTIONS(542), - [sym_crate] = ACTIONS(542), - [sym_metavariable] = ACTIONS(540), - [sym_raw_string_literal] = ACTIONS(540), - [sym_float_literal] = ACTIONS(540), - [sym_block_comment] = ACTIONS(3), - }, - [64] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26896,11 +25376,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(506), + [anon_sym_DASH_GT] = ACTIONS(540), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(538), [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26919,53 +25399,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [64] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26996,7 +25476,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(544), + [anon_sym_let] = ACTIONS(542), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -27006,8 +25486,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -27026,267 +25506,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_macro_rules_BANG] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_isize] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_f32] = ACTIONS(546), + [anon_sym_f64] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_str] = ACTIONS(546), + [anon_sym_char] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_as] = ACTIONS(546), + [anon_sym_async] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_static] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_union] = ACTIONS(546), + [anon_sym_unsafe] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_else] = 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_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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1171), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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_DASH_GT] = ACTIONS(548), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [sym_mutable_specifier] = ACTIONS(546), - [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(538), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [67] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(550), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = 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(548), [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(522), - [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), }, [68] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27317,7 +25904,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(550), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -27325,11 +25911,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(540), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -27348,52 +25935,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [69] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1303), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27424,7 +26011,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(552), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -27432,11 +26018,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(548), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -27455,523 +26042,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [70] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(552), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = 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(554), [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(522), - [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), - [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), - }, - [71] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(556), - [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(522), - [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), - }, - [72] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(522), - [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), - }, - [73] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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), - }, - [74] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1321), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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), + [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), @@ -27986,113 +26148,114 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(522), - [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), + [71] = { + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_macro_rules_BANG] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(556), + [anon_sym_i8] = ACTIONS(556), + [anon_sym_u16] = ACTIONS(556), + [anon_sym_i16] = ACTIONS(556), + [anon_sym_u32] = ACTIONS(556), + [anon_sym_i32] = ACTIONS(556), + [anon_sym_u64] = ACTIONS(556), + [anon_sym_i64] = ACTIONS(556), + [anon_sym_u128] = ACTIONS(556), + [anon_sym_i128] = ACTIONS(556), + [anon_sym_isize] = ACTIONS(556), + [anon_sym_usize] = ACTIONS(556), + [anon_sym_f32] = ACTIONS(556), + [anon_sym_f64] = ACTIONS(556), + [anon_sym_bool] = ACTIONS(556), + [anon_sym_str] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_as] = ACTIONS(556), + [anon_sym_async] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_enum] = ACTIONS(556), + [anon_sym_fn] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_impl] = ACTIONS(556), + [anon_sym_let] = ACTIONS(556), + [anon_sym_loop] = ACTIONS(556), + [anon_sym_match] = ACTIONS(556), + [anon_sym_mod] = ACTIONS(556), + [anon_sym_pub] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_struct] = ACTIONS(556), + [anon_sym_trait] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_union] = ACTIONS(556), + [anon_sym_unsafe] = ACTIONS(556), + [anon_sym_use] = ACTIONS(556), + [anon_sym_while] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_EQ] = ACTIONS(556), + [anon_sym_extern] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(556), + [anon_sym_else] = ACTIONS(556), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT] = ACTIONS(556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(556), + [anon_sym_PERCENT] = ACTIONS(556), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [anon_sym_DOT] = ACTIONS(556), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(554), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(556), + [anon_sym_false] = ACTIONS(556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_crate] = ACTIONS(556), + [sym_metavariable] = ACTIONS(554), + [sym_raw_string_literal] = ACTIONS(554), + [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), }, - [76] = { + [72] = { [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(558), @@ -28198,56 +26361,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), }, - [77] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1325), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(250), - [sym_if_let_expression] = STATE(250), - [sym_match_expression] = STATE(250), - [sym_while_expression] = STATE(250), - [sym_while_let_expression] = STATE(250), - [sym_loop_expression] = STATE(250), - [sym_for_expression] = STATE(250), - [sym_const_block] = STATE(250), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2592), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(250), - [sym_async_block] = STATE(250), - [sym_block] = STATE(250), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [73] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28268,19 +26431,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(564), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(566), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(568), - [anon_sym_if] = ACTIONS(570), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(574), + [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(576), - [anon_sym_while] = ACTIONS(578), + [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), @@ -28304,53 +26467,53 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1335), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [74] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1309), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28410,265 +26573,371 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1337), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [75] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [76] = { + [ts_builtin_sym_end] = ACTIONS(562), + [sym_identifier] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_macro_rules_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(568), + [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(566), + [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(566), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_move] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(566), + [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), + }, + [77] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [78] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28708,8 +26977,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -28728,53 +26997,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1326), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [79] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1312), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28834,901 +27103,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(580), - [sym_identifier] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_macro_rules_BANG] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(582), - [anon_sym_i8] = ACTIONS(582), - [anon_sym_u16] = ACTIONS(582), - [anon_sym_i16] = ACTIONS(582), - [anon_sym_u32] = ACTIONS(582), - [anon_sym_i32] = ACTIONS(582), - [anon_sym_u64] = ACTIONS(582), - [anon_sym_i64] = ACTIONS(582), - [anon_sym_u128] = ACTIONS(582), - [anon_sym_i128] = ACTIONS(582), - [anon_sym_isize] = ACTIONS(582), - [anon_sym_usize] = ACTIONS(582), - [anon_sym_f32] = ACTIONS(582), - [anon_sym_f64] = ACTIONS(582), - [anon_sym_bool] = ACTIONS(582), - [anon_sym_str] = ACTIONS(582), - [anon_sym_char] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(582), - [anon_sym_as] = ACTIONS(586), - [anon_sym_async] = ACTIONS(582), - [anon_sym_break] = ACTIONS(582), - [anon_sym_const] = ACTIONS(582), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_enum] = ACTIONS(582), - [anon_sym_fn] = ACTIONS(582), - [anon_sym_for] = ACTIONS(582), - [anon_sym_if] = ACTIONS(582), - [anon_sym_impl] = ACTIONS(582), - [anon_sym_let] = ACTIONS(582), - [anon_sym_loop] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_mod] = ACTIONS(582), - [anon_sym_pub] = ACTIONS(582), - [anon_sym_return] = ACTIONS(582), - [anon_sym_static] = ACTIONS(582), - [anon_sym_struct] = ACTIONS(582), - [anon_sym_trait] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_union] = ACTIONS(582), - [anon_sym_unsafe] = ACTIONS(582), - [anon_sym_use] = ACTIONS(582), - [anon_sym_while] = ACTIONS(582), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_extern] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_move] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(580), - [aux_sym_string_literal_token1] = ACTIONS(580), - [sym_char_literal] = ACTIONS(580), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(582), - [sym_super] = ACTIONS(582), - [sym_crate] = ACTIONS(582), - [sym_metavariable] = ACTIONS(580), - [sym_raw_string_literal] = ACTIONS(580), - [sym_float_literal] = ACTIONS(580), - [sym_block_comment] = ACTIONS(3), - }, - [84] = { - [ts_builtin_sym_end] = ACTIONS(588), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_macro_rules_BANG] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(590), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_extern] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_move] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), - [sym_block_comment] = ACTIONS(3), - }, - [85] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1342), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [80] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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_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), - }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(592), - [sym_identifier] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_macro_rules_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_async] = ACTIONS(594), - [anon_sym_break] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_enum] = ACTIONS(594), - [anon_sym_fn] = ACTIONS(594), - [anon_sym_for] = ACTIONS(594), - [anon_sym_if] = ACTIONS(594), - [anon_sym_impl] = ACTIONS(594), - [anon_sym_let] = ACTIONS(594), - [anon_sym_loop] = ACTIONS(594), - [anon_sym_match] = ACTIONS(594), - [anon_sym_mod] = ACTIONS(594), - [anon_sym_pub] = ACTIONS(594), - [anon_sym_return] = ACTIONS(594), - [anon_sym_static] = ACTIONS(594), - [anon_sym_struct] = ACTIONS(594), - [anon_sym_trait] = ACTIONS(594), - [anon_sym_type] = ACTIONS(594), - [anon_sym_union] = ACTIONS(594), - [anon_sym_unsafe] = ACTIONS(594), - [anon_sym_use] = ACTIONS(594), - [anon_sym_while] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_extern] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(594), - [anon_sym_move] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), - [sym_block_comment] = ACTIONS(3), - }, - [87] = { - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(596), - [anon_sym_macro_rules_BANG] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(598), - [anon_sym_i8] = ACTIONS(598), - [anon_sym_u16] = ACTIONS(598), - [anon_sym_i16] = ACTIONS(598), - [anon_sym_u32] = ACTIONS(598), - [anon_sym_i32] = ACTIONS(598), - [anon_sym_u64] = ACTIONS(598), - [anon_sym_i64] = ACTIONS(598), - [anon_sym_u128] = ACTIONS(598), - [anon_sym_i128] = ACTIONS(598), - [anon_sym_isize] = ACTIONS(598), - [anon_sym_usize] = ACTIONS(598), - [anon_sym_f32] = ACTIONS(598), - [anon_sym_f64] = ACTIONS(598), - [anon_sym_bool] = ACTIONS(598), - [anon_sym_str] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_as] = ACTIONS(586), - [anon_sym_async] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_default] = ACTIONS(598), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_impl] = ACTIONS(598), - [anon_sym_let] = ACTIONS(598), - [anon_sym_loop] = ACTIONS(598), - [anon_sym_match] = ACTIONS(598), - [anon_sym_mod] = ACTIONS(598), - [anon_sym_pub] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_static] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(598), - [anon_sym_trait] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_union] = ACTIONS(598), - [anon_sym_unsafe] = ACTIONS(598), - [anon_sym_use] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_extern] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_yield] = ACTIONS(598), - [anon_sym_move] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_crate] = ACTIONS(598), - [sym_metavariable] = ACTIONS(596), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), - [sym_block_comment] = ACTIONS(3), - }, - [88] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1339), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_macro_rules_BANG] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_async] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_fn] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_impl] = ACTIONS(602), - [anon_sym_let] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(602), - [anon_sym_match] = ACTIONS(602), - [anon_sym_mod] = ACTIONS(602), - [anon_sym_pub] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_static] = ACTIONS(602), - [anon_sym_struct] = ACTIONS(602), - [anon_sym_trait] = ACTIONS(602), - [anon_sym_type] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_unsafe] = ACTIONS(602), - [anon_sym_use] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_extern] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_yield] = ACTIONS(602), - [anon_sym_move] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), - [sym_block_comment] = ACTIONS(3), - }, - [90] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [81] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1314), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [82] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29768,8 +27401,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -29788,53 +27421,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1328), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [83] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1326), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29894,53 +27527,53 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [84] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1316), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30000,56 +27633,162 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1322), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [85] = { + [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), + }, + [86] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(240), + [sym_if_let_expression] = STATE(240), + [sym_match_expression] = STATE(240), + [sym_while_expression] = STATE(240), + [sym_while_let_expression] = STATE(240), + [sym_loop_expression] = STATE(240), + [sym_for_expression] = STATE(240), + [sym_const_block] = STATE(240), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2564), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(240), + [sym_async_block] = STATE(240), + [sym_block] = STATE(240), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30070,19 +27809,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(576), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(578), [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(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(586), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_while] = ACTIONS(590), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -30106,266 +27845,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(522), - [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), - }, - [96] = { - [ts_builtin_sym_end] = ACTIONS(604), - [sym_identifier] = ACTIONS(606), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_macro_rules_BANG] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(604), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_QMARK] = ACTIONS(604), - [anon_sym_u8] = ACTIONS(606), - [anon_sym_i8] = ACTIONS(606), - [anon_sym_u16] = ACTIONS(606), - [anon_sym_i16] = ACTIONS(606), - [anon_sym_u32] = ACTIONS(606), - [anon_sym_i32] = ACTIONS(606), - [anon_sym_u64] = ACTIONS(606), - [anon_sym_i64] = ACTIONS(606), - [anon_sym_u128] = ACTIONS(606), - [anon_sym_i128] = ACTIONS(606), - [anon_sym_isize] = ACTIONS(606), - [anon_sym_usize] = ACTIONS(606), - [anon_sym_f32] = ACTIONS(606), - [anon_sym_f64] = ACTIONS(606), - [anon_sym_bool] = ACTIONS(606), - [anon_sym_str] = ACTIONS(606), - [anon_sym_char] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_async] = ACTIONS(606), - [anon_sym_break] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_continue] = ACTIONS(606), - [anon_sym_default] = ACTIONS(606), - [anon_sym_enum] = ACTIONS(606), - [anon_sym_fn] = ACTIONS(606), - [anon_sym_for] = ACTIONS(606), - [anon_sym_if] = ACTIONS(606), - [anon_sym_impl] = ACTIONS(606), - [anon_sym_let] = ACTIONS(606), - [anon_sym_loop] = ACTIONS(606), - [anon_sym_match] = ACTIONS(606), - [anon_sym_mod] = ACTIONS(606), - [anon_sym_pub] = ACTIONS(606), - [anon_sym_return] = ACTIONS(606), - [anon_sym_static] = ACTIONS(606), - [anon_sym_struct] = ACTIONS(606), - [anon_sym_trait] = ACTIONS(606), - [anon_sym_type] = ACTIONS(606), - [anon_sym_union] = ACTIONS(606), - [anon_sym_unsafe] = ACTIONS(606), - [anon_sym_use] = ACTIONS(606), - [anon_sym_while] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_BANG] = ACTIONS(606), - [anon_sym_EQ] = ACTIONS(606), - [anon_sym_extern] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_COLON_COLON] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(604), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_CARET] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_BANG_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(606), - [anon_sym_PLUS_EQ] = ACTIONS(604), - [anon_sym_DASH_EQ] = ACTIONS(604), - [anon_sym_STAR_EQ] = ACTIONS(604), - [anon_sym_SLASH_EQ] = ACTIONS(604), - [anon_sym_PERCENT_EQ] = ACTIONS(604), - [anon_sym_AMP_EQ] = ACTIONS(604), - [anon_sym_PIPE_EQ] = ACTIONS(604), - [anon_sym_CARET_EQ] = ACTIONS(604), - [anon_sym_LT_LT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_EQ] = ACTIONS(604), - [anon_sym_yield] = ACTIONS(606), - [anon_sym_move] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(606), - [sym_integer_literal] = ACTIONS(604), - [aux_sym_string_literal_token1] = ACTIONS(604), - [sym_char_literal] = ACTIONS(604), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(606), - [sym_super] = ACTIONS(606), - [sym_crate] = ACTIONS(606), - [sym_metavariable] = ACTIONS(604), - [sym_raw_string_literal] = ACTIONS(604), - [sym_float_literal] = ACTIONS(604), - [sym_block_comment] = ACTIONS(3), - }, - [97] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [87] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1306), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), @@ -30424,56 +27951,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1345), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(246), - [sym_if_let_expression] = STATE(246), - [sym_match_expression] = STATE(246), - [sym_while_expression] = STATE(246), - [sym_while_let_expression] = STATE(246), - [sym_loop_expression] = STATE(246), - [sym_for_expression] = STATE(246), - [sym_const_block] = STATE(246), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2592), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(246), - [sym_async_block] = STATE(246), - [sym_block] = STATE(246), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [88] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1325), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30494,19 +28021,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(564), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(566), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(568), - [anon_sym_if] = ACTIONS(570), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(574), + [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(576), - [anon_sym_while] = ACTIONS(578), + [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), @@ -30530,53 +28057,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1330), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [89] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30636,53 +28163,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1180), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [90] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30723,7 +28250,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(526), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30742,159 +28269,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [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), - }, - [102] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1346), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [91] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1330), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30954,53 +28375,159 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [92] = { + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_SEMI] = ACTIONS(592), + [anon_sym_macro_rules_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_u8] = ACTIONS(594), + [anon_sym_i8] = ACTIONS(594), + [anon_sym_u16] = ACTIONS(594), + [anon_sym_i16] = ACTIONS(594), + [anon_sym_u32] = ACTIONS(594), + [anon_sym_i32] = ACTIONS(594), + [anon_sym_u64] = ACTIONS(594), + [anon_sym_i64] = ACTIONS(594), + [anon_sym_u128] = ACTIONS(594), + [anon_sym_i128] = ACTIONS(594), + [anon_sym_isize] = ACTIONS(594), + [anon_sym_usize] = ACTIONS(594), + [anon_sym_f32] = ACTIONS(594), + [anon_sym_f64] = ACTIONS(594), + [anon_sym_bool] = ACTIONS(594), + [anon_sym_str] = ACTIONS(594), + [anon_sym_char] = ACTIONS(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_async] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_enum] = ACTIONS(594), + [anon_sym_fn] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_impl] = ACTIONS(594), + [anon_sym_let] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(594), + [anon_sym_match] = ACTIONS(594), + [anon_sym_mod] = ACTIONS(594), + [anon_sym_pub] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_static] = ACTIONS(594), + [anon_sym_struct] = ACTIONS(594), + [anon_sym_trait] = ACTIONS(594), + [anon_sym_type] = ACTIONS(594), + [anon_sym_union] = ACTIONS(594), + [anon_sym_unsafe] = ACTIONS(594), + [anon_sym_use] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(594), + [anon_sym_extern] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_COLON_COLON] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(592), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(592), + [anon_sym_BANG_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(592), + [anon_sym_DASH_EQ] = ACTIONS(592), + [anon_sym_STAR_EQ] = ACTIONS(592), + [anon_sym_SLASH_EQ] = ACTIONS(592), + [anon_sym_PERCENT_EQ] = ACTIONS(592), + [anon_sym_AMP_EQ] = ACTIONS(592), + [anon_sym_PIPE_EQ] = ACTIONS(592), + [anon_sym_CARET_EQ] = ACTIONS(592), + [anon_sym_LT_LT_EQ] = ACTIONS(592), + [anon_sym_GT_GT_EQ] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_move] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(594), + [sym_integer_literal] = ACTIONS(592), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(592), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_crate] = ACTIONS(594), + [sym_metavariable] = ACTIONS(592), + [sym_raw_string_literal] = ACTIONS(592), + [sym_float_literal] = ACTIONS(592), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31040,8 +28567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -31060,477 +28587,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [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), - }, - [105] = { - [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), + [94] = { + [ts_builtin_sym_end] = ACTIONS(596), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_macro_rules_BANG] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_u8] = ACTIONS(598), + [anon_sym_i8] = ACTIONS(598), + [anon_sym_u16] = ACTIONS(598), + [anon_sym_i16] = ACTIONS(598), + [anon_sym_u32] = ACTIONS(598), + [anon_sym_i32] = ACTIONS(598), + [anon_sym_u64] = ACTIONS(598), + [anon_sym_i64] = ACTIONS(598), + [anon_sym_u128] = ACTIONS(598), + [anon_sym_i128] = ACTIONS(598), + [anon_sym_isize] = ACTIONS(598), + [anon_sym_usize] = ACTIONS(598), + [anon_sym_f32] = ACTIONS(598), + [anon_sym_f64] = ACTIONS(598), + [anon_sym_bool] = ACTIONS(598), + [anon_sym_str] = ACTIONS(598), + [anon_sym_char] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_async] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_default] = ACTIONS(598), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_fn] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_impl] = ACTIONS(598), + [anon_sym_let] = ACTIONS(598), + [anon_sym_loop] = ACTIONS(598), + [anon_sym_match] = ACTIONS(598), + [anon_sym_mod] = ACTIONS(598), + [anon_sym_pub] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_static] = ACTIONS(598), + [anon_sym_struct] = ACTIONS(598), + [anon_sym_trait] = ACTIONS(598), + [anon_sym_type] = ACTIONS(598), + [anon_sym_union] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(598), + [anon_sym_use] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(598), + [anon_sym_extern] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_COLON_COLON] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_move] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(598), + [sym_integer_literal] = ACTIONS(596), + [aux_sym_string_literal_token1] = ACTIONS(596), + [sym_char_literal] = ACTIONS(596), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(618), - [sym_super] = ACTIONS(618), - [sym_crate] = ACTIONS(618), - [sym_metavariable] = ACTIONS(616), - [sym_raw_string_literal] = ACTIONS(616), - [sym_float_literal] = ACTIONS(616), + [sym_self] = ACTIONS(598), + [sym_super] = ACTIONS(598), + [sym_crate] = ACTIONS(598), + [sym_metavariable] = ACTIONS(596), + [sym_raw_string_literal] = ACTIONS(596), + [sym_float_literal] = ACTIONS(596), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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), + [95] = { + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_macro_rules_BANG] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_async] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_fn] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_impl] = ACTIONS(602), + [anon_sym_let] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(602), + [anon_sym_match] = ACTIONS(602), + [anon_sym_mod] = ACTIONS(602), + [anon_sym_pub] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_static] = ACTIONS(602), + [anon_sym_struct] = ACTIONS(602), + [anon_sym_trait] = ACTIONS(602), + [anon_sym_type] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_unsafe] = ACTIONS(602), + [anon_sym_use] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(602), + [anon_sym_move] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(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(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1185), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(526), - [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), + [96] = { + [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(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(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), }, - [108] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [97] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31590,53 +29011,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [98] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31696,159 +29117,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [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), + [99] = { + [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(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_metavariable] = ACTIONS(620), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), + [sym_self] = ACTIONS(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), }, - [111] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [100] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1177), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31889,7 +29310,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(526), + [anon_sym_DOT_DOT] = ACTIONS(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31908,53 +29329,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [101] = { + [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), + }, + [102] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), + }, + [103] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1313), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32014,53 +29647,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [104] = { + [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), + }, + [105] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32101,7 +29840,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(526), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32120,53 +29859,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [106] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1305), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32226,162 +29965,56 @@ 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(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), - }, - [116] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1302), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(250), - [sym_if_let_expression] = STATE(250), - [sym_match_expression] = STATE(250), - [sym_while_expression] = STATE(250), - [sym_while_let_expression] = STATE(250), - [sym_loop_expression] = STATE(250), - [sym_for_expression] = STATE(250), - [sym_const_block] = STATE(250), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2592), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(250), - [sym_async_block] = STATE(250), - [sym_block] = STATE(250), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [107] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1308), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32402,19 +30035,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(564), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(566), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(568), - [anon_sym_if] = ACTIONS(570), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(574), + [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(576), - [anon_sym_while] = ACTIONS(578), + [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), @@ -32438,53 +30071,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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1324), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [108] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32544,56 +30177,56 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [109] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(225), + [sym_if_let_expression] = STATE(225), + [sym_match_expression] = STATE(225), + [sym_while_expression] = STATE(225), + [sym_while_let_expression] = STATE(225), + [sym_loop_expression] = STATE(225), + [sym_for_expression] = STATE(225), + [sym_const_block] = STATE(225), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2564), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(225), + [sym_async_block] = STATE(225), + [sym_block] = STATE(225), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32614,19 +30247,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(576), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(578), [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(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(586), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_while] = ACTIONS(590), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -32650,53 +30283,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1296), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [110] = { + [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), + }, + [111] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32756,159 +30495,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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(522), - [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), - }, - [121] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1181), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [112] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1319), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32949,7 +30582,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(526), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32968,53 +30601,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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [113] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1304), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33074,219 +30707,325 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [114] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(526), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [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), }, - [124] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1334), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [115] = { + [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), + }, + [116] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), }, - [125] = { + [117] = { [ts_builtin_sym_end] = ACTIONS(628), [sym_identifier] = ACTIONS(630), [anon_sym_SEMI] = ACTIONS(628), @@ -33392,53 +31131,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [118] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1322), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(225), + [sym_if_let_expression] = STATE(225), + [sym_match_expression] = STATE(225), + [sym_while_expression] = STATE(225), + [sym_while_let_expression] = STATE(225), + [sym_loop_expression] = STATE(225), + [sym_for_expression] = STATE(225), + [sym_const_block] = STATE(225), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2564), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(225), + [sym_async_block] = STATE(225), + [sym_block] = STATE(225), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(574), + [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(576), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(586), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_while] = ACTIONS(590), + [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), + }, + [119] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33479,7 +31324,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(526), + [anon_sym_DOT_DOT] = ACTIONS(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33498,53 +31343,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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1320), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [120] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1150), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33585,7 +31430,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(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33604,113 +31449,325 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [121] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1180), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(522), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(538), + [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] = { + [122] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1176), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(538), + [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), + }, + [123] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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), + }, + [124] = { [ts_builtin_sym_end] = ACTIONS(632), [sym_identifier] = ACTIONS(634), [anon_sym_SEMI] = ACTIONS(632), @@ -33816,53 +31873,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(632), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1336), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [125] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1321), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33922,53 +31979,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [126] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34028,265 +32085,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [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), - }, - [133] = { - [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), - }, - [134] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [127] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34346,265 +32191,265 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [128] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1323), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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), }, - [136] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1305), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [129] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1329), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(240), + [sym_if_let_expression] = STATE(240), + [sym_match_expression] = STATE(240), + [sym_while_expression] = STATE(240), + [sym_while_let_expression] = STATE(240), + [sym_loop_expression] = STATE(240), + [sym_for_expression] = STATE(240), + [sym_const_block] = STATE(240), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2564), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(240), + [sym_async_block] = STATE(240), + [sym_block] = STATE(240), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(574), [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_const] = ACTIONS(292), + [anon_sym_async] = ACTIONS(576), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(578), [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_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(586), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_while] = ACTIONS(590), + [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), }, - [137] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [130] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34644,8 +32489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -34664,159 +32509,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1301), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [131] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(522), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(538), + [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), }, - [139] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1340), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [132] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34857,7 +32702,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(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34876,53 +32721,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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [133] = { + [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), + }, + [134] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34963,7 +32914,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(526), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34982,265 +32933,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1306), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [135] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1320), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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), }, - [142] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1307), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [136] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_macro_rules_BANG] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(568), + [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(566), + [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(566), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_yield] = ACTIONS(642), + [anon_sym_move] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(566), + [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), + }, + [137] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1318), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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), }, - [143] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1308), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [138] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35280,8 +33337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35300,537 +33357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(526), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [145] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1300), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(522), - [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), - }, - [146] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1309), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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), - }, - [147] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(522), - [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), - }, - [148] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1298), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(522), - [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), - }, - [149] = { + [139] = { [ts_builtin_sym_end] = ACTIONS(644), [sym_identifier] = ACTIONS(646), [anon_sym_SEMI] = ACTIONS(644), @@ -35936,159 +33463,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(644), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [140] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(522), - [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), }, - [151] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1186), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [141] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1084), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36129,7 +33656,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(526), + [anon_sym_DOT_DOT] = ACTIONS(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36148,53 +33675,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1183), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [142] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1328), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36235,7 +33762,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(526), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36254,53 +33781,159 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1313), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [143] = { + [ts_builtin_sym_end] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_macro_rules_BANG] = ACTIONS(648), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_async] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_impl] = ACTIONS(650), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(650), + [anon_sym_mod] = ACTIONS(650), + [anon_sym_pub] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_static] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_trait] = ACTIONS(650), + [anon_sym_type] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_unsafe] = ACTIONS(650), + [anon_sym_use] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_extern] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_yield] = ACTIONS(650), + [anon_sym_move] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), + [sym_block_comment] = ACTIONS(3), + }, + [144] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36340,8 +33973,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -36360,689 +33993,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1319), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(340), + [145] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_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), - }, - [155] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1318), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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), - }, - [156] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1317), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1316), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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), - }, - [158] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1304), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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_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(522), - [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), }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(648), - [sym_identifier] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_macro_rules_BANG] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_async] = ACTIONS(650), - [anon_sym_break] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_continue] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_enum] = ACTIONS(650), - [anon_sym_fn] = ACTIONS(650), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(650), - [anon_sym_impl] = ACTIONS(650), - [anon_sym_let] = ACTIONS(650), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(650), - [anon_sym_mod] = ACTIONS(650), - [anon_sym_pub] = ACTIONS(650), - [anon_sym_return] = ACTIONS(650), - [anon_sym_static] = ACTIONS(650), - [anon_sym_struct] = ACTIONS(650), - [anon_sym_trait] = ACTIONS(650), - [anon_sym_type] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_unsafe] = ACTIONS(650), - [anon_sym_use] = ACTIONS(650), - [anon_sym_while] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_extern] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_yield] = ACTIONS(650), - [anon_sym_move] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), - [sym_block_comment] = ACTIONS(3), - }, - [160] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1344), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [146] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1084), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37102,53 +34205,53 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1331), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [147] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37189,7 +34292,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(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -37208,53 +34311,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1179), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [148] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37295,7 +34398,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(526), + [anon_sym_DOT_DOT] = ACTIONS(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -37314,7 +34417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [163] = { + [149] = { [ts_builtin_sym_end] = ACTIONS(652), [sym_identifier] = ACTIONS(654), [anon_sym_SEMI] = ACTIONS(652), @@ -37420,53 +34523,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [150] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37507,7 +34610,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(526), + [anon_sym_DOT_DOT] = ACTIONS(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -37526,53 +34629,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1347), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [151] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), + }, + [152] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), + }, + [153] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37613,7 +34928,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(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -37632,12 +34947,542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [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), + [154] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(538), + [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), + }, + [155] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1314), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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), + }, + [156] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [157] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1084), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), + }, + [158] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [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), @@ -37738,7 +35583,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), }, - [167] = { + [160] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), + }, + [161] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { [ts_builtin_sym_end] = ACTIONS(660), [sym_identifier] = ACTIONS(662), [anon_sym_SEMI] = ACTIONS(660), @@ -37844,7 +35901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, - [168] = { + [163] = { [ts_builtin_sym_end] = ACTIONS(664), [sym_identifier] = ACTIONS(666), [anon_sym_SEMI] = ACTIONS(664), @@ -37950,431 +36007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1327), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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), - }, - [170] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1312), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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(522), - [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), - }, - [171] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(246), - [sym_if_let_expression] = STATE(246), - [sym_match_expression] = STATE(246), - [sym_while_expression] = STATE(246), - [sym_while_let_expression] = STATE(246), - [sym_loop_expression] = STATE(246), - [sym_for_expression] = STATE(246), - [sym_const_block] = STATE(246), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2592), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(246), - [sym_async_block] = STATE(246), - [sym_block] = STATE(246), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(562), - [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(564), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(566), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(568), - [anon_sym_if] = ACTIONS(570), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(574), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(576), - [anon_sym_while] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [172] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [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), - }, - [173] = { + [164] = { [ts_builtin_sym_end] = ACTIONS(668), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(668), @@ -38480,53 +36113,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [165] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1327), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -38586,53 +36219,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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [166] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -38672,7 +36305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), @@ -38692,53 +36325,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1045), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [167] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -38778,8 +36411,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -38798,159 +36431,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1329), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [168] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [169] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -38990,8 +36623,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -39010,53 +36643,265 @@ 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(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [170] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [171] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [172] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -39116,7 +36961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [180] = { + [173] = { [ts_builtin_sym_end] = ACTIONS(672), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(672), @@ -39222,159 +37067,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [181] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [174] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), }, - [182] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [175] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -39414,8 +37259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -39434,53 +37279,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(1922), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(1217), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [176] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -39520,8 +37365,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -39540,78 +37385,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [184] = { - [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), + [177] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [179] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1084), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [180] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(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), + }, + [181] = { + [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), @@ -39646,159 +37915,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(676), [sym_block_comment] = ACTIONS(3), }, - [185] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), - [sym_identifier] = ACTIONS(280), + [182] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1940), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(1204), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), + [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(526), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(506), + [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), }, - [186] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [183] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1315), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -39858,53 +38127,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym_bracketed_type] = STATE(2514), - [sym_generic_function] = STATE(811), - [sym_generic_type_with_turbofish] = STATE(2044), - [sym__expression_except_range] = STATE(811), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(811), - [sym_scoped_identifier] = STATE(813), - [sym_scoped_type_identifier_in_expression_position] = STATE(2233), - [sym_range_expression] = STATE(915), - [sym_unary_expression] = STATE(811), - [sym_try_expression] = STATE(811), - [sym_reference_expression] = STATE(811), - [sym_binary_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_compound_assignment_expr] = STATE(811), - [sym_type_cast_expression] = STATE(811), - [sym_return_expression] = STATE(811), - [sym_yield_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_array_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_tuple_expression] = STATE(811), - [sym_unit_expression] = STATE(811), - [sym_struct_expression] = STATE(811), - [sym_if_expression] = STATE(811), - [sym_if_let_expression] = STATE(811), - [sym_match_expression] = STATE(811), - [sym_while_expression] = STATE(811), - [sym_while_let_expression] = STATE(811), - [sym_loop_expression] = STATE(811), - [sym_for_expression] = STATE(811), - [sym_const_block] = STATE(811), - [sym_closure_expression] = STATE(811), - [sym_closure_parameters] = STATE(64), - [sym_loop_label] = STATE(2560), - [sym_break_expression] = STATE(811), - [sym_continue_expression] = STATE(811), - [sym_index_expression] = STATE(811), - [sym_await_expression] = STATE(811), - [sym_field_expression] = STATE(819), - [sym_unsafe_block] = STATE(811), - [sym_async_block] = STATE(811), - [sym_block] = STATE(811), - [sym__literal] = STATE(811), - [sym_string_literal] = STATE(924), - [sym_boolean_literal] = STATE(924), + [184] = { + [sym_bracketed_type] = STATE(2499), + [sym_generic_function] = STATE(809), + [sym_generic_type_with_turbofish] = STATE(1945), + [sym__expression_except_range] = STATE(809), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(809), + [sym_scoped_identifier] = STATE(815), + [sym_scoped_type_identifier_in_expression_position] = STATE(2304), + [sym_range_expression] = STATE(1090), + [sym_unary_expression] = STATE(809), + [sym_try_expression] = STATE(809), + [sym_reference_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_compound_assignment_expr] = STATE(809), + [sym_type_cast_expression] = STATE(809), + [sym_return_expression] = STATE(809), + [sym_yield_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_array_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_tuple_expression] = STATE(809), + [sym_unit_expression] = STATE(809), + [sym_struct_expression] = STATE(809), + [sym_if_expression] = STATE(809), + [sym_if_let_expression] = STATE(809), + [sym_match_expression] = STATE(809), + [sym_while_expression] = STATE(809), + [sym_while_let_expression] = STATE(809), + [sym_loop_expression] = STATE(809), + [sym_for_expression] = STATE(809), + [sym_const_block] = STATE(809), + [sym_closure_expression] = STATE(809), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2532), + [sym_break_expression] = STATE(809), + [sym_continue_expression] = STATE(809), + [sym_index_expression] = STATE(809), + [sym_await_expression] = STATE(809), + [sym_field_expression] = STATE(806), + [sym_unsafe_block] = STATE(809), + [sym_async_block] = STATE(809), + [sym_block] = STATE(809), + [sym__literal] = STATE(809), + [sym_string_literal] = STATE(986), + [sym_boolean_literal] = STATE(986), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -39945,7 +38214,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(538), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -39964,155 +38233,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [188] = { - [sym_identifier] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_macro_rules_BANG] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(582), - [anon_sym_i8] = ACTIONS(582), - [anon_sym_u16] = ACTIONS(582), - [anon_sym_i16] = ACTIONS(582), - [anon_sym_u32] = ACTIONS(582), - [anon_sym_i32] = ACTIONS(582), - [anon_sym_u64] = ACTIONS(582), - [anon_sym_i64] = ACTIONS(582), - [anon_sym_u128] = ACTIONS(582), - [anon_sym_i128] = ACTIONS(582), - [anon_sym_isize] = ACTIONS(582), - [anon_sym_usize] = ACTIONS(582), - [anon_sym_f32] = ACTIONS(582), - [anon_sym_f64] = ACTIONS(582), - [anon_sym_bool] = ACTIONS(582), - [anon_sym_str] = ACTIONS(582), - [anon_sym_char] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(582), - [anon_sym_as] = ACTIONS(586), - [anon_sym_async] = ACTIONS(582), - [anon_sym_break] = ACTIONS(582), - [anon_sym_const] = ACTIONS(582), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_enum] = ACTIONS(582), - [anon_sym_fn] = ACTIONS(582), - [anon_sym_for] = ACTIONS(582), - [anon_sym_if] = ACTIONS(582), - [anon_sym_impl] = ACTIONS(582), - [anon_sym_let] = ACTIONS(582), - [anon_sym_loop] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_mod] = ACTIONS(582), - [anon_sym_pub] = ACTIONS(582), - [anon_sym_return] = ACTIONS(582), - [anon_sym_static] = ACTIONS(582), - [anon_sym_struct] = ACTIONS(582), - [anon_sym_trait] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_union] = ACTIONS(582), - [anon_sym_unsafe] = ACTIONS(582), - [anon_sym_use] = ACTIONS(582), - [anon_sym_while] = ACTIONS(582), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_extern] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_move] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(580), - [aux_sym_string_literal_token1] = ACTIONS(580), - [sym_char_literal] = ACTIONS(580), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(582), - [sym_super] = ACTIONS(582), - [sym_crate] = ACTIONS(582), - [sym_metavariable] = ACTIONS(580), - [sym_raw_string_literal] = ACTIONS(580), - [sym_float_literal] = ACTIONS(580), + [185] = { + [sym_identifier] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_macro_rules_BANG] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(568), + [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(566), + [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(566), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_yield] = ACTIONS(642), + [anon_sym_move] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(566), + [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), }, - [189] = { - [sym_attribute_item] = STATE(202), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(1970), - [sym_variadic_parameter] = STATE(1970), - [sym_parameter] = STATE(1970), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1884), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [186] = { + [sym_attribute_item] = STATE(199), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2084), + [sym_variadic_parameter] = STATE(2084), + [sym_parameter] = STATE(2084), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1848), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(684), @@ -40172,50 +38441,50 @@ 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(202), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(1970), - [sym_variadic_parameter] = STATE(1970), - [sym_parameter] = STATE(1970), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1884), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1781), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [187] = { + [sym_attribute_item] = STATE(200), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2035), + [sym_variadic_parameter] = STATE(2035), + [sym_parameter] = STATE(2035), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1856), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1752), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(750), @@ -40275,50 +38544,50 @@ 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(201), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(2111), - [sym_variadic_parameter] = STATE(2111), - [sym_parameter] = STATE(2111), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1828), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [188] = { + [sym_attribute_item] = STATE(200), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2035), + [sym_variadic_parameter] = STATE(2035), + [sym_parameter] = STATE(2035), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1856), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(772), @@ -40378,50 +38647,50 @@ 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(202), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(1970), - [sym_variadic_parameter] = STATE(1970), - [sym_parameter] = STATE(1970), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1884), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1781), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [189] = { + [sym_attribute_item] = STATE(200), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2035), + [sym_variadic_parameter] = STATE(2035), + [sym_parameter] = STATE(2035), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1856), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1752), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(778), @@ -40481,50 +38750,50 @@ 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(202), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(1970), - [sym_variadic_parameter] = STATE(1970), - [sym_parameter] = STATE(1970), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1884), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1781), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [190] = { + [sym_attribute_item] = STATE(200), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2035), + [sym_variadic_parameter] = STATE(2035), + [sym_parameter] = STATE(2035), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1856), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1752), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(782), @@ -40584,50 +38853,50 @@ 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(203), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(2211), - [sym_variadic_parameter] = STATE(2211), - [sym_parameter] = STATE(2211), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2108), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [191] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2168), + [sym_variadic_parameter] = STATE(2168), + [sym_parameter] = STATE(2168), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(786), @@ -40686,50 +38955,50 @@ 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(203), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(2211), - [sym_variadic_parameter] = STATE(2211), - [sym_parameter] = STATE(2211), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2108), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [192] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2168), + [sym_variadic_parameter] = STATE(2168), + [sym_parameter] = STATE(2168), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(790), @@ -40788,50 +39057,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(2211), - [sym_variadic_parameter] = STATE(2211), - [sym_parameter] = STATE(2211), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2108), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [193] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2168), + [sym_variadic_parameter] = STATE(2168), + [sym_parameter] = STATE(2168), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(792), @@ -40890,50 +39159,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(2211), - [sym_variadic_parameter] = STATE(2211), - [sym_parameter] = STATE(2211), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2108), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [194] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2168), + [sym_variadic_parameter] = STATE(2168), + [sym_parameter] = STATE(2168), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(794), @@ -40992,50 +39261,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [198] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(2211), - [sym_variadic_parameter] = STATE(2211), - [sym_parameter] = STATE(2211), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2108), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [195] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2168), + [sym_variadic_parameter] = STATE(2168), + [sym_parameter] = STATE(2168), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(796), @@ -41094,50 +39363,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [199] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(2211), - [sym_variadic_parameter] = STATE(2211), - [sym_parameter] = STATE(2211), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2108), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [196] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2168), + [sym_variadic_parameter] = STATE(2168), + [sym_parameter] = STATE(2168), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(798), @@ -41196,50 +39465,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [200] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(2211), - [sym_variadic_parameter] = STATE(2211), - [sym_parameter] = STATE(2211), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2108), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [197] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2168), + [sym_variadic_parameter] = STATE(2168), + [sym_parameter] = STATE(2168), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -41297,49 +39566,49 @@ 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(2369), - [sym_self_parameter] = STATE(2155), - [sym_variadic_parameter] = STATE(2155), - [sym_parameter] = STATE(2155), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1812), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [198] = { + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2302), + [sym_variadic_parameter] = STATE(2302), + [sym_parameter] = STATE(2302), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2004), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -41396,49 +39665,49 @@ 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(2369), - [sym_self_parameter] = STATE(1915), - [sym_variadic_parameter] = STATE(1915), - [sym_parameter] = STATE(1915), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1897), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [199] = { + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(2119), + [sym_variadic_parameter] = STATE(2119), + [sym_parameter] = STATE(2119), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1833), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -41495,49 +39764,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym_function_modifiers] = STATE(2369), - [sym_self_parameter] = STATE(2276), - [sym_variadic_parameter] = STATE(2276), - [sym_parameter] = STATE(2276), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1966), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(1972), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [200] = { + [sym_function_modifiers] = STATE(2435), + [sym_self_parameter] = STATE(1935), + [sym_variadic_parameter] = STATE(1935), + [sym_parameter] = STATE(1935), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1884), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2042), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2219), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -41594,146 +39863,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [204] = { - [sym_identifier] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(808), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_RPAREN] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(808), - [anon_sym_RBRACE] = ACTIONS(808), - [anon_sym_EQ_GT] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_RBRACK] = ACTIONS(808), - [anon_sym_COLON] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_QMARK] = ACTIONS(808), - [anon_sym_u8] = ACTIONS(806), - [anon_sym_i8] = ACTIONS(806), - [anon_sym_u16] = ACTIONS(806), - [anon_sym_i16] = ACTIONS(806), - [anon_sym_u32] = ACTIONS(806), - [anon_sym_i32] = ACTIONS(806), - [anon_sym_u64] = ACTIONS(806), - [anon_sym_i64] = ACTIONS(806), - [anon_sym_u128] = ACTIONS(806), - [anon_sym_i128] = ACTIONS(806), - [anon_sym_isize] = ACTIONS(806), - [anon_sym_usize] = ACTIONS(806), - [anon_sym_f32] = ACTIONS(806), - [anon_sym_f64] = ACTIONS(806), - [anon_sym_bool] = ACTIONS(806), - [anon_sym_str] = ACTIONS(806), - [anon_sym_char] = ACTIONS(806), - [anon_sym_SQUOTE] = ACTIONS(806), - [anon_sym_as] = ACTIONS(806), - [anon_sym_async] = ACTIONS(806), - [anon_sym_break] = ACTIONS(806), - [anon_sym_const] = ACTIONS(806), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_default] = ACTIONS(806), - [anon_sym_for] = ACTIONS(806), - [anon_sym_if] = ACTIONS(806), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(806), - [anon_sym_return] = ACTIONS(806), - [anon_sym_union] = ACTIONS(806), - [anon_sym_unsafe] = ACTIONS(806), - [anon_sym_while] = ACTIONS(806), - [anon_sym_BANG] = ACTIONS(806), - [anon_sym_EQ] = ACTIONS(806), - [anon_sym_COMMA] = ACTIONS(808), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_else] = ACTIONS(806), - [anon_sym_COLON_COLON] = ACTIONS(808), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(808), - [anon_sym_DOT_DOT] = ACTIONS(806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(808), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(808), - [anon_sym_PIPE_PIPE] = ACTIONS(808), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_CARET] = ACTIONS(806), - [anon_sym_EQ_EQ] = ACTIONS(808), - [anon_sym_BANG_EQ] = ACTIONS(808), - [anon_sym_LT_EQ] = ACTIONS(808), - [anon_sym_GT_EQ] = ACTIONS(808), - [anon_sym_LT_LT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_PERCENT] = ACTIONS(806), - [anon_sym_PLUS_EQ] = ACTIONS(808), - [anon_sym_DASH_EQ] = ACTIONS(808), - [anon_sym_STAR_EQ] = ACTIONS(808), - [anon_sym_SLASH_EQ] = ACTIONS(808), - [anon_sym_PERCENT_EQ] = ACTIONS(808), - [anon_sym_AMP_EQ] = ACTIONS(808), - [anon_sym_PIPE_EQ] = ACTIONS(808), - [anon_sym_CARET_EQ] = ACTIONS(808), - [anon_sym_LT_LT_EQ] = ACTIONS(808), - [anon_sym_GT_GT_EQ] = ACTIONS(808), - [anon_sym_yield] = ACTIONS(806), - [anon_sym_move] = ACTIONS(806), - [anon_sym_DOT] = ACTIONS(806), - [sym_integer_literal] = ACTIONS(808), - [aux_sym_string_literal_token1] = ACTIONS(808), - [sym_char_literal] = ACTIONS(808), - [anon_sym_true] = ACTIONS(806), - [anon_sym_false] = ACTIONS(806), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(806), - [sym_super] = ACTIONS(806), - [sym_crate] = ACTIONS(806), - [sym_metavariable] = ACTIONS(808), - [sym_raw_string_literal] = ACTIONS(808), - [sym_float_literal] = ACTIONS(808), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1813), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [201] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1825), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(806), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -41763,16 +39935,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_COMMA] = ACTIONS(808), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -41788,88 +39960,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [206] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2043), - [sym_bracketed_type] = STATE(2554), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2555), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1802), - [sym_scoped_identifier] = STATE(1576), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1904), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(824), + [202] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(2526), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2527), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(1572), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1814), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(820), [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_RBRACK] = ACTIONS(822), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), + [anon_sym_u8] = ACTIONS(824), + [anon_sym_i8] = ACTIONS(824), + [anon_sym_u16] = ACTIONS(824), + [anon_sym_i16] = ACTIONS(824), + [anon_sym_u32] = ACTIONS(824), + [anon_sym_i32] = ACTIONS(824), + [anon_sym_u64] = ACTIONS(824), + [anon_sym_i64] = ACTIONS(824), + [anon_sym_u128] = ACTIONS(824), + [anon_sym_i128] = ACTIONS(824), + [anon_sym_isize] = ACTIONS(824), + [anon_sym_usize] = ACTIONS(824), + [anon_sym_f32] = ACTIONS(824), + [anon_sym_f64] = ACTIONS(824), + [anon_sym_bool] = ACTIONS(824), + [anon_sym_str] = ACTIONS(824), + [anon_sym_char] = ACTIONS(824), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(830), + [anon_sym_default] = ACTIONS(826), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(832), + [anon_sym_union] = ACTIONS(828), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(830), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(836), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(838), + [anon_sym_COLON_COLON] = ACTIONS(832), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(834), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -41877,57 +40049,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(842), + [sym_self] = ACTIONS(836), + [sym_super] = ACTIONS(836), + [sym_crate] = ACTIONS(836), + [sym_metavariable] = ACTIONS(838), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [207] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1813), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [203] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1825), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(840), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -41957,16 +40129,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), + [anon_sym_COMMA] = ACTIONS(808), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -41982,145 +40154,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [208] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1813), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(846), - [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_COMMA] = ACTIONS(812), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [204] = { + [sym_identifier] = ACTIONS(842), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(844), + [anon_sym_RBRACK] = ACTIONS(844), + [anon_sym_COLON] = ACTIONS(842), + [anon_sym_PLUS] = ACTIONS(842), + [anon_sym_STAR] = ACTIONS(842), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_u8] = ACTIONS(842), + [anon_sym_i8] = ACTIONS(842), + [anon_sym_u16] = ACTIONS(842), + [anon_sym_i16] = ACTIONS(842), + [anon_sym_u32] = ACTIONS(842), + [anon_sym_i32] = ACTIONS(842), + [anon_sym_u64] = ACTIONS(842), + [anon_sym_i64] = ACTIONS(842), + [anon_sym_u128] = ACTIONS(842), + [anon_sym_i128] = ACTIONS(842), + [anon_sym_isize] = ACTIONS(842), + [anon_sym_usize] = ACTIONS(842), + [anon_sym_f32] = ACTIONS(842), + [anon_sym_f64] = ACTIONS(842), + [anon_sym_bool] = ACTIONS(842), + [anon_sym_str] = ACTIONS(842), + [anon_sym_char] = ACTIONS(842), + [anon_sym_SQUOTE] = ACTIONS(842), + [anon_sym_as] = ACTIONS(842), + [anon_sym_async] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_const] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_default] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_loop] = ACTIONS(842), + [anon_sym_match] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_union] = ACTIONS(842), + [anon_sym_unsafe] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_COMMA] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(842), + [anon_sym_GT] = ACTIONS(842), + [anon_sym_else] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(844), + [anon_sym_DOT_DOT] = ACTIONS(842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_AMP_AMP] = ACTIONS(844), + [anon_sym_PIPE_PIPE] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(842), + [anon_sym_CARET] = ACTIONS(842), + [anon_sym_EQ_EQ] = ACTIONS(844), + [anon_sym_BANG_EQ] = ACTIONS(844), + [anon_sym_LT_EQ] = ACTIONS(844), + [anon_sym_GT_EQ] = ACTIONS(844), + [anon_sym_LT_LT] = ACTIONS(842), + [anon_sym_GT_GT] = ACTIONS(842), + [anon_sym_SLASH] = ACTIONS(842), + [anon_sym_PERCENT] = ACTIONS(842), + [anon_sym_PLUS_EQ] = ACTIONS(844), + [anon_sym_DASH_EQ] = ACTIONS(844), + [anon_sym_STAR_EQ] = ACTIONS(844), + [anon_sym_SLASH_EQ] = ACTIONS(844), + [anon_sym_PERCENT_EQ] = ACTIONS(844), + [anon_sym_AMP_EQ] = ACTIONS(844), + [anon_sym_PIPE_EQ] = ACTIONS(844), + [anon_sym_CARET_EQ] = ACTIONS(844), + [anon_sym_LT_LT_EQ] = ACTIONS(844), + [anon_sym_GT_GT_EQ] = ACTIONS(844), + [anon_sym_yield] = ACTIONS(842), + [anon_sym_move] = ACTIONS(842), + [anon_sym_DOT] = ACTIONS(842), + [sym_integer_literal] = ACTIONS(844), + [aux_sym_string_literal_token1] = ACTIONS(844), + [sym_char_literal] = ACTIONS(844), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(842), + [sym_super] = ACTIONS(842), + [sym_crate] = ACTIONS(842), + [sym_metavariable] = ACTIONS(844), + [sym_raw_string_literal] = ACTIONS(844), + [sym_float_literal] = ACTIONS(844), [sym_block_comment] = ACTIONS(3), }, - [209] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1439), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1494), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [205] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1825), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -42150,15 +40323,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(808), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -42166,7 +40340,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(848), + [sym_self] = ACTIONS(768), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -42174,46 +40348,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [210] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1435), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(652), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1472), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [206] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1426), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1490), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -42235,7 +40409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(690), [anon_sym_str] = ACTIONS(690), [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(698), @@ -42249,11 +40423,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(852), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(848), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -42269,46 +40443,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [211] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1439), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1494), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [207] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(641), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -42330,7 +40504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(690), [anon_sym_str] = ACTIONS(690), [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_SQUOTE] = ACTIONS(850), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(698), @@ -42344,11 +40518,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(852), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(848), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -42356,7 +40530,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(856), + [sym_self] = ACTIONS(854), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -42364,46 +40538,46 @@ 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(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1439), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1494), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [208] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1426), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1490), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -42439,11 +40613,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -42459,46 +40633,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [213] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1435), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(651), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1472), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [209] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(641), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -42534,11 +40708,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(858), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(856), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -42546,7 +40720,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(860), + [sym_self] = ACTIONS(858), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -42554,46 +40728,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [214] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1435), - [sym_bracketed_type] = STATE(2551), - [sym_lifetime] = STATE(652), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2552), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1770), - [sym_scoped_identifier] = STATE(1538), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1472), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), + [210] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(640), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [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(850), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_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(810), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(860), + [anon_sym_DOT_DOT] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [211] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1426), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1490), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -42615,7 +40884,7 @@ 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(850), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), [anon_sym_default] = ACTIONS(754), @@ -42629,11 +40898,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(862), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -42641,7 +40910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), + [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -42649,86 +40918,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1439), - [sym_bracketed_type] = STATE(2554), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2555), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1802), - [sym_scoped_identifier] = STATE(1576), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1494), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(824), + [212] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1426), + [sym_bracketed_type] = STATE(2519), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2520), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1745), + [sym_scoped_identifier] = STATE(1617), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1490), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), + [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(830), + [anon_sym_default] = ACTIONS(698), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(832), + [anon_sym_union] = ACTIONS(706), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(836), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(838), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(848), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -42736,94 +41005,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(842), + [sym_self] = ACTIONS(864), + [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(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1435), - [sym_bracketed_type] = STATE(2554), - [sym_lifetime] = STATE(652), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2555), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1802), - [sym_scoped_identifier] = STATE(1576), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1472), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(824), + [213] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2523), + [sym_lifetime] = STATE(640), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2524), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1762), + [sym_scoped_identifier] = STATE(1547), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), + [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(850), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(830), + [anon_sym_default] = ACTIONS(754), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(832), + [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(836), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(838), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(864), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -42831,94 +41100,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(842), + [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), }, - [217] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1435), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(651), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1472), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [214] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1426), + [sym_bracketed_type] = STATE(2526), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2527), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(1572), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1490), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(820), [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(850), + [anon_sym_u8] = ACTIONS(824), + [anon_sym_i8] = ACTIONS(824), + [anon_sym_u16] = ACTIONS(824), + [anon_sym_i16] = ACTIONS(824), + [anon_sym_u32] = ACTIONS(824), + [anon_sym_i32] = ACTIONS(824), + [anon_sym_u64] = ACTIONS(824), + [anon_sym_i64] = ACTIONS(824), + [anon_sym_u128] = ACTIONS(824), + [anon_sym_i128] = ACTIONS(824), + [anon_sym_isize] = ACTIONS(824), + [anon_sym_usize] = ACTIONS(824), + [anon_sym_f32] = ACTIONS(824), + [anon_sym_f64] = ACTIONS(824), + [anon_sym_bool] = ACTIONS(824), + [anon_sym_str] = ACTIONS(824), + [anon_sym_char] = ACTIONS(824), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(826), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(828), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(852), + [anon_sym_COLON_COLON] = ACTIONS(832), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(834), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(866), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -42926,94 +41195,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(868), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(836), + [sym_super] = ACTIONS(836), + [sym_crate] = ACTIONS(836), + [sym_metavariable] = ACTIONS(838), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1439), - [sym_bracketed_type] = STATE(2547), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2548), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1804), - [sym_scoped_identifier] = STATE(1637), - [sym_scoped_type_identifier] = STATE(1522), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1494), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [215] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2526), + [sym_lifetime] = STATE(640), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2527), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(1572), + [sym_scoped_type_identifier] = STATE(1516), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(820), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_u8] = ACTIONS(824), + [anon_sym_i8] = ACTIONS(824), + [anon_sym_u16] = ACTIONS(824), + [anon_sym_i16] = ACTIONS(824), + [anon_sym_u32] = ACTIONS(824), + [anon_sym_i32] = ACTIONS(824), + [anon_sym_u64] = ACTIONS(824), + [anon_sym_i64] = ACTIONS(824), + [anon_sym_u128] = ACTIONS(824), + [anon_sym_i128] = ACTIONS(824), + [anon_sym_isize] = ACTIONS(824), + [anon_sym_usize] = ACTIONS(824), + [anon_sym_f32] = ACTIONS(824), + [anon_sym_f64] = ACTIONS(824), + [anon_sym_bool] = ACTIONS(824), + [anon_sym_str] = ACTIONS(824), + [anon_sym_char] = ACTIONS(824), + [anon_sym_SQUOTE] = ACTIONS(850), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), + [anon_sym_default] = ACTIONS(826), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), + [anon_sym_union] = ACTIONS(828), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(852), + [anon_sym_COLON_COLON] = ACTIONS(832), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(834), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(868), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -43021,38 +41290,38 @@ 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(836), + [sym_super] = ACTIONS(836), + [sym_crate] = ACTIONS(836), + [sym_metavariable] = ACTIONS(838), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [219] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1478), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), + [216] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1456), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), [sym_identifier] = ACTIONS(870), [anon_sym_LPAREN] = ACTIONS(872), [anon_sym_LBRACE] = ACTIONS(872), @@ -43094,9 +41363,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(872), [anon_sym_LT] = ACTIONS(872), [anon_sym_COLON_COLON] = ACTIONS(872), - [anon_sym__] = ACTIONS(814), + [anon_sym__] = ACTIONS(810), [anon_sym_AMP] = ACTIONS(872), - [sym_mutable_specifier] = ACTIONS(818), + [sym_mutable_specifier] = ACTIONS(814), [anon_sym_DOT_DOT] = ACTIONS(872), [anon_sym_DASH] = ACTIONS(870), [anon_sym_PIPE] = ACTIONS(872), @@ -43116,664 +41385,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(872), [sym_block_comment] = ACTIONS(3), }, - [220] = { - [sym__attr] = STATE(2377), - [sym_custom_attr] = STATE(2377), - [sym_built_in_attr] = STATE(2377), - [sym__built_in_attr_path] = STATE(1849), - [sym_bracketed_type] = STATE(2514), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_scoped_identifier] = STATE(1639), - [sym_identifier] = ACTIONS(874), - [anon_sym_path] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_cfg] = ACTIONS(876), - [anon_sym_cfg_attr] = ACTIONS(876), - [anon_sym_test] = ACTIONS(876), - [anon_sym_ignore] = ACTIONS(876), - [anon_sym_should_panic] = ACTIONS(876), - [anon_sym_derive] = ACTIONS(876), - [anon_sym_automatically_derived] = ACTIONS(876), - [anon_sym_macro_export] = ACTIONS(876), - [anon_sym_macro_use] = ACTIONS(876), - [anon_sym_proc_macro] = ACTIONS(876), - [anon_sym_proc_macro_derive] = ACTIONS(876), - [anon_sym_proc_macro_attribute] = ACTIONS(876), - [anon_sym_allow] = ACTIONS(876), - [anon_sym_warn] = ACTIONS(876), - [anon_sym_deny] = ACTIONS(876), - [anon_sym_forbid] = ACTIONS(876), - [anon_sym_deprecated] = ACTIONS(876), - [anon_sym_must_use] = ACTIONS(876), - [anon_sym_link] = ACTIONS(876), - [anon_sym_link_name] = ACTIONS(876), - [anon_sym_no_link] = ACTIONS(876), - [anon_sym_repr] = ACTIONS(876), - [anon_sym_crate_type] = ACTIONS(876), - [anon_sym_no_main] = ACTIONS(876), - [anon_sym_export_name] = ACTIONS(876), - [anon_sym_link_section] = ACTIONS(876), - [anon_sym_no_mangle] = ACTIONS(876), - [anon_sym_used] = ACTIONS(876), - [anon_sym_crate_name] = ACTIONS(876), - [anon_sym_inline] = ACTIONS(876), - [anon_sym_cold] = ACTIONS(876), - [anon_sym_no_builtins] = ACTIONS(876), - [anon_sym_target_feature] = ACTIONS(876), - [anon_sym_track_caller] = ACTIONS(876), - [anon_sym_doc] = ACTIONS(876), - [anon_sym_no_std] = ACTIONS(876), - [anon_sym_no_implicit_prelude] = ACTIONS(876), - [anon_sym_recursion_limit] = ACTIONS(876), - [anon_sym_type_length_limit] = ACTIONS(876), - [anon_sym_panic_handler] = ACTIONS(876), - [anon_sym_global_allocator] = ACTIONS(876), - [anon_sym_windows_subsystem] = ACTIONS(876), - [anon_sym_feature] = ACTIONS(876), - [anon_sym_non_exhaustive] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), - }, - [221] = { - [sym__attr] = STATE(2481), - [sym_custom_attr] = STATE(2481), - [sym_built_in_attr] = STATE(2481), - [sym__built_in_attr_path] = STATE(1849), - [sym_bracketed_type] = STATE(2514), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_scoped_identifier] = STATE(1639), - [sym_identifier] = ACTIONS(874), - [anon_sym_path] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_cfg] = ACTIONS(876), - [anon_sym_cfg_attr] = ACTIONS(876), - [anon_sym_test] = ACTIONS(876), - [anon_sym_ignore] = ACTIONS(876), - [anon_sym_should_panic] = ACTIONS(876), - [anon_sym_derive] = ACTIONS(876), - [anon_sym_automatically_derived] = ACTIONS(876), - [anon_sym_macro_export] = ACTIONS(876), - [anon_sym_macro_use] = ACTIONS(876), - [anon_sym_proc_macro] = ACTIONS(876), - [anon_sym_proc_macro_derive] = ACTIONS(876), - [anon_sym_proc_macro_attribute] = ACTIONS(876), - [anon_sym_allow] = ACTIONS(876), - [anon_sym_warn] = ACTIONS(876), - [anon_sym_deny] = ACTIONS(876), - [anon_sym_forbid] = ACTIONS(876), - [anon_sym_deprecated] = ACTIONS(876), - [anon_sym_must_use] = ACTIONS(876), - [anon_sym_link] = ACTIONS(876), - [anon_sym_link_name] = ACTIONS(876), - [anon_sym_no_link] = ACTIONS(876), - [anon_sym_repr] = ACTIONS(876), - [anon_sym_crate_type] = ACTIONS(876), - [anon_sym_no_main] = ACTIONS(876), - [anon_sym_export_name] = ACTIONS(876), - [anon_sym_link_section] = ACTIONS(876), - [anon_sym_no_mangle] = ACTIONS(876), - [anon_sym_used] = ACTIONS(876), - [anon_sym_crate_name] = ACTIONS(876), - [anon_sym_inline] = ACTIONS(876), - [anon_sym_cold] = ACTIONS(876), - [anon_sym_no_builtins] = ACTIONS(876), - [anon_sym_target_feature] = ACTIONS(876), - [anon_sym_track_caller] = ACTIONS(876), - [anon_sym_doc] = ACTIONS(876), - [anon_sym_no_std] = ACTIONS(876), - [anon_sym_no_implicit_prelude] = ACTIONS(876), - [anon_sym_recursion_limit] = ACTIONS(876), - [anon_sym_type_length_limit] = ACTIONS(876), - [anon_sym_panic_handler] = ACTIONS(876), - [anon_sym_global_allocator] = ACTIONS(876), - [anon_sym_windows_subsystem] = ACTIONS(876), - [anon_sym_feature] = ACTIONS(876), - [anon_sym_non_exhaustive] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), - }, - [222] = { - [sym__attr] = STATE(2376), - [sym_custom_attr] = STATE(2376), - [sym_built_in_attr] = STATE(2376), - [sym__built_in_attr_path] = STATE(1849), - [sym_bracketed_type] = STATE(2514), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_scoped_identifier] = STATE(1639), - [sym_identifier] = ACTIONS(874), - [anon_sym_path] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_cfg] = ACTIONS(876), - [anon_sym_cfg_attr] = ACTIONS(876), - [anon_sym_test] = ACTIONS(876), - [anon_sym_ignore] = ACTIONS(876), - [anon_sym_should_panic] = ACTIONS(876), - [anon_sym_derive] = ACTIONS(876), - [anon_sym_automatically_derived] = ACTIONS(876), - [anon_sym_macro_export] = ACTIONS(876), - [anon_sym_macro_use] = ACTIONS(876), - [anon_sym_proc_macro] = ACTIONS(876), - [anon_sym_proc_macro_derive] = ACTIONS(876), - [anon_sym_proc_macro_attribute] = ACTIONS(876), - [anon_sym_allow] = ACTIONS(876), - [anon_sym_warn] = ACTIONS(876), - [anon_sym_deny] = ACTIONS(876), - [anon_sym_forbid] = ACTIONS(876), - [anon_sym_deprecated] = ACTIONS(876), - [anon_sym_must_use] = ACTIONS(876), - [anon_sym_link] = ACTIONS(876), - [anon_sym_link_name] = ACTIONS(876), - [anon_sym_no_link] = ACTIONS(876), - [anon_sym_repr] = ACTIONS(876), - [anon_sym_crate_type] = ACTIONS(876), - [anon_sym_no_main] = ACTIONS(876), - [anon_sym_export_name] = ACTIONS(876), - [anon_sym_link_section] = ACTIONS(876), - [anon_sym_no_mangle] = ACTIONS(876), - [anon_sym_used] = ACTIONS(876), - [anon_sym_crate_name] = ACTIONS(876), - [anon_sym_inline] = ACTIONS(876), - [anon_sym_cold] = ACTIONS(876), - [anon_sym_no_builtins] = ACTIONS(876), - [anon_sym_target_feature] = ACTIONS(876), - [anon_sym_track_caller] = ACTIONS(876), - [anon_sym_doc] = ACTIONS(876), - [anon_sym_no_std] = ACTIONS(876), - [anon_sym_no_implicit_prelude] = ACTIONS(876), - [anon_sym_recursion_limit] = ACTIONS(876), - [anon_sym_type_length_limit] = ACTIONS(876), - [anon_sym_panic_handler] = ACTIONS(876), - [anon_sym_global_allocator] = ACTIONS(876), - [anon_sym_windows_subsystem] = ACTIONS(876), - [anon_sym_feature] = ACTIONS(876), - [anon_sym_non_exhaustive] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), - }, - [223] = { - [sym_else_clause] = STATE(256), - [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_else] = ACTIONS(886), - [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_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), - }, - [224] = { - [sym__attr] = STATE(2500), - [sym_custom_attr] = STATE(2500), - [sym_built_in_attr] = STATE(2500), - [sym__built_in_attr_path] = STATE(1849), - [sym_bracketed_type] = STATE(2514), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_scoped_identifier] = STATE(1639), - [sym_identifier] = ACTIONS(874), - [anon_sym_path] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_cfg] = ACTIONS(876), - [anon_sym_cfg_attr] = ACTIONS(876), - [anon_sym_test] = ACTIONS(876), - [anon_sym_ignore] = ACTIONS(876), - [anon_sym_should_panic] = ACTIONS(876), - [anon_sym_derive] = ACTIONS(876), - [anon_sym_automatically_derived] = ACTIONS(876), - [anon_sym_macro_export] = ACTIONS(876), - [anon_sym_macro_use] = ACTIONS(876), - [anon_sym_proc_macro] = ACTIONS(876), - [anon_sym_proc_macro_derive] = ACTIONS(876), - [anon_sym_proc_macro_attribute] = ACTIONS(876), - [anon_sym_allow] = ACTIONS(876), - [anon_sym_warn] = ACTIONS(876), - [anon_sym_deny] = ACTIONS(876), - [anon_sym_forbid] = ACTIONS(876), - [anon_sym_deprecated] = ACTIONS(876), - [anon_sym_must_use] = ACTIONS(876), - [anon_sym_link] = ACTIONS(876), - [anon_sym_link_name] = ACTIONS(876), - [anon_sym_no_link] = ACTIONS(876), - [anon_sym_repr] = ACTIONS(876), - [anon_sym_crate_type] = ACTIONS(876), - [anon_sym_no_main] = ACTIONS(876), - [anon_sym_export_name] = ACTIONS(876), - [anon_sym_link_section] = ACTIONS(876), - [anon_sym_no_mangle] = ACTIONS(876), - [anon_sym_used] = ACTIONS(876), - [anon_sym_crate_name] = ACTIONS(876), - [anon_sym_inline] = ACTIONS(876), - [anon_sym_cold] = ACTIONS(876), - [anon_sym_no_builtins] = ACTIONS(876), - [anon_sym_target_feature] = ACTIONS(876), - [anon_sym_track_caller] = ACTIONS(876), - [anon_sym_doc] = ACTIONS(876), - [anon_sym_no_std] = ACTIONS(876), - [anon_sym_no_implicit_prelude] = ACTIONS(876), - [anon_sym_recursion_limit] = ACTIONS(876), - [anon_sym_type_length_limit] = ACTIONS(876), - [anon_sym_panic_handler] = ACTIONS(876), - [anon_sym_global_allocator] = ACTIONS(876), - [anon_sym_windows_subsystem] = ACTIONS(876), - [anon_sym_feature] = ACTIONS(876), - [anon_sym_non_exhaustive] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), - }, - [225] = { - [sym__attr] = STATE(2418), - [sym_custom_attr] = STATE(2418), - [sym_built_in_attr] = STATE(2418), - [sym__built_in_attr_path] = STATE(1849), - [sym_bracketed_type] = STATE(2514), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_scoped_identifier] = STATE(1639), - [sym_identifier] = ACTIONS(874), - [anon_sym_path] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_cfg] = ACTIONS(876), - [anon_sym_cfg_attr] = ACTIONS(876), - [anon_sym_test] = ACTIONS(876), - [anon_sym_ignore] = ACTIONS(876), - [anon_sym_should_panic] = ACTIONS(876), - [anon_sym_derive] = ACTIONS(876), - [anon_sym_automatically_derived] = ACTIONS(876), - [anon_sym_macro_export] = ACTIONS(876), - [anon_sym_macro_use] = ACTIONS(876), - [anon_sym_proc_macro] = ACTIONS(876), - [anon_sym_proc_macro_derive] = ACTIONS(876), - [anon_sym_proc_macro_attribute] = ACTIONS(876), - [anon_sym_allow] = ACTIONS(876), - [anon_sym_warn] = ACTIONS(876), - [anon_sym_deny] = ACTIONS(876), - [anon_sym_forbid] = ACTIONS(876), - [anon_sym_deprecated] = ACTIONS(876), - [anon_sym_must_use] = ACTIONS(876), - [anon_sym_link] = ACTIONS(876), - [anon_sym_link_name] = ACTIONS(876), - [anon_sym_no_link] = ACTIONS(876), - [anon_sym_repr] = ACTIONS(876), - [anon_sym_crate_type] = ACTIONS(876), - [anon_sym_no_main] = ACTIONS(876), - [anon_sym_export_name] = ACTIONS(876), - [anon_sym_link_section] = ACTIONS(876), - [anon_sym_no_mangle] = ACTIONS(876), - [anon_sym_used] = ACTIONS(876), - [anon_sym_crate_name] = ACTIONS(876), - [anon_sym_inline] = ACTIONS(876), - [anon_sym_cold] = ACTIONS(876), - [anon_sym_no_builtins] = ACTIONS(876), - [anon_sym_target_feature] = ACTIONS(876), - [anon_sym_track_caller] = ACTIONS(876), - [anon_sym_doc] = ACTIONS(876), - [anon_sym_no_std] = ACTIONS(876), - [anon_sym_no_implicit_prelude] = ACTIONS(876), - [anon_sym_recursion_limit] = ACTIONS(876), - [anon_sym_type_length_limit] = ACTIONS(876), - [anon_sym_panic_handler] = ACTIONS(876), - [anon_sym_global_allocator] = ACTIONS(876), - [anon_sym_windows_subsystem] = ACTIONS(876), - [anon_sym_feature] = ACTIONS(876), - [anon_sym_non_exhaustive] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [sym__attr] = STATE(2600), - [sym_custom_attr] = STATE(2600), - [sym_built_in_attr] = STATE(2600), - [sym__built_in_attr_path] = STATE(1849), - [sym_bracketed_type] = STATE(2514), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_scoped_identifier] = STATE(1639), - [sym_identifier] = ACTIONS(874), - [anon_sym_path] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_cfg] = ACTIONS(876), - [anon_sym_cfg_attr] = ACTIONS(876), - [anon_sym_test] = ACTIONS(876), - [anon_sym_ignore] = ACTIONS(876), - [anon_sym_should_panic] = ACTIONS(876), - [anon_sym_derive] = ACTIONS(876), - [anon_sym_automatically_derived] = ACTIONS(876), - [anon_sym_macro_export] = ACTIONS(876), - [anon_sym_macro_use] = ACTIONS(876), - [anon_sym_proc_macro] = ACTIONS(876), - [anon_sym_proc_macro_derive] = ACTIONS(876), - [anon_sym_proc_macro_attribute] = ACTIONS(876), - [anon_sym_allow] = ACTIONS(876), - [anon_sym_warn] = ACTIONS(876), - [anon_sym_deny] = ACTIONS(876), - [anon_sym_forbid] = ACTIONS(876), - [anon_sym_deprecated] = ACTIONS(876), - [anon_sym_must_use] = ACTIONS(876), - [anon_sym_link] = ACTIONS(876), - [anon_sym_link_name] = ACTIONS(876), - [anon_sym_no_link] = ACTIONS(876), - [anon_sym_repr] = ACTIONS(876), - [anon_sym_crate_type] = ACTIONS(876), - [anon_sym_no_main] = ACTIONS(876), - [anon_sym_export_name] = ACTIONS(876), - [anon_sym_link_section] = ACTIONS(876), - [anon_sym_no_mangle] = ACTIONS(876), - [anon_sym_used] = ACTIONS(876), - [anon_sym_crate_name] = ACTIONS(876), - [anon_sym_inline] = ACTIONS(876), - [anon_sym_cold] = ACTIONS(876), - [anon_sym_no_builtins] = ACTIONS(876), - [anon_sym_target_feature] = ACTIONS(876), - [anon_sym_track_caller] = ACTIONS(876), - [anon_sym_doc] = ACTIONS(876), - [anon_sym_no_std] = ACTIONS(876), - [anon_sym_no_implicit_prelude] = ACTIONS(876), - [anon_sym_recursion_limit] = ACTIONS(876), - [anon_sym_type_length_limit] = ACTIONS(876), - [anon_sym_panic_handler] = ACTIONS(876), - [anon_sym_global_allocator] = ACTIONS(876), - [anon_sym_windows_subsystem] = ACTIONS(876), - [anon_sym_feature] = ACTIONS(876), - [anon_sym_non_exhaustive] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { - [sym__attr] = STATE(2401), - [sym_custom_attr] = STATE(2401), - [sym_built_in_attr] = STATE(2401), - [sym__built_in_attr_path] = STATE(1849), - [sym_bracketed_type] = STATE(2514), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_scoped_identifier] = STATE(1639), - [sym_identifier] = ACTIONS(874), - [anon_sym_path] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_cfg] = ACTIONS(876), - [anon_sym_cfg_attr] = ACTIONS(876), - [anon_sym_test] = ACTIONS(876), - [anon_sym_ignore] = ACTIONS(876), - [anon_sym_should_panic] = ACTIONS(876), - [anon_sym_derive] = ACTIONS(876), - [anon_sym_automatically_derived] = ACTIONS(876), - [anon_sym_macro_export] = ACTIONS(876), - [anon_sym_macro_use] = ACTIONS(876), - [anon_sym_proc_macro] = ACTIONS(876), - [anon_sym_proc_macro_derive] = ACTIONS(876), - [anon_sym_proc_macro_attribute] = ACTIONS(876), - [anon_sym_allow] = ACTIONS(876), - [anon_sym_warn] = ACTIONS(876), - [anon_sym_deny] = ACTIONS(876), - [anon_sym_forbid] = ACTIONS(876), - [anon_sym_deprecated] = ACTIONS(876), - [anon_sym_must_use] = ACTIONS(876), - [anon_sym_link] = ACTIONS(876), - [anon_sym_link_name] = ACTIONS(876), - [anon_sym_no_link] = ACTIONS(876), - [anon_sym_repr] = ACTIONS(876), - [anon_sym_crate_type] = ACTIONS(876), - [anon_sym_no_main] = ACTIONS(876), - [anon_sym_export_name] = ACTIONS(876), - [anon_sym_link_section] = ACTIONS(876), - [anon_sym_no_mangle] = ACTIONS(876), - [anon_sym_used] = ACTIONS(876), - [anon_sym_crate_name] = ACTIONS(876), - [anon_sym_inline] = ACTIONS(876), - [anon_sym_cold] = ACTIONS(876), - [anon_sym_no_builtins] = ACTIONS(876), - [anon_sym_target_feature] = ACTIONS(876), - [anon_sym_track_caller] = ACTIONS(876), - [anon_sym_doc] = ACTIONS(876), - [anon_sym_no_std] = ACTIONS(876), - [anon_sym_no_implicit_prelude] = ACTIONS(876), - [anon_sym_recursion_limit] = ACTIONS(876), - [anon_sym_type_length_limit] = ACTIONS(876), - [anon_sym_panic_handler] = ACTIONS(876), - [anon_sym_global_allocator] = ACTIONS(876), - [anon_sym_windows_subsystem] = ACTIONS(876), - [anon_sym_feature] = ACTIONS(876), - [anon_sym_non_exhaustive] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), - }, - [228] = { - [sym_else_clause] = STATE(242), + [217] = { + [sym_else_clause] = STATE(245), [sym_identifier] = ACTIONS(502), [anon_sym_LPAREN] = ACTIONS(500), [anon_sym_RBRACE] = ACTIONS(500), @@ -43808,7 +41421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(502), [anon_sym_LT] = ACTIONS(502), [anon_sym_GT] = ACTIONS(502), - [anon_sym_else] = ACTIONS(886), + [anon_sym_else] = ACTIONS(874), [anon_sym_COLON_COLON] = ACTIONS(500), [anon_sym__] = ACTIONS(502), [anon_sym_AMP] = ACTIONS(502), @@ -43854,410 +41467,652 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(500), [sym_block_comment] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_QMARK] = ACTIONS(540), - [anon_sym_u8] = ACTIONS(542), - [anon_sym_i8] = ACTIONS(542), - [anon_sym_u16] = ACTIONS(542), - [anon_sym_i16] = ACTIONS(542), - [anon_sym_u32] = ACTIONS(542), - [anon_sym_i32] = ACTIONS(542), - [anon_sym_u64] = ACTIONS(542), - [anon_sym_i64] = ACTIONS(542), - [anon_sym_u128] = ACTIONS(542), - [anon_sym_i128] = ACTIONS(542), - [anon_sym_isize] = ACTIONS(542), - [anon_sym_usize] = ACTIONS(542), - [anon_sym_f32] = ACTIONS(542), - [anon_sym_f64] = ACTIONS(542), - [anon_sym_bool] = ACTIONS(542), - [anon_sym_str] = ACTIONS(542), - [anon_sym_char] = ACTIONS(542), - [anon_sym_as] = ACTIONS(542), - [anon_sym_const] = ACTIONS(542), - [anon_sym_default] = ACTIONS(542), - [anon_sym_union] = ACTIONS(542), - [anon_sym_POUND] = ACTIONS(540), - [anon_sym_EQ] = ACTIONS(542), - [anon_sym_COMMA] = ACTIONS(540), - [anon_sym_ref] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_else] = ACTIONS(542), - [anon_sym_COLON_COLON] = ACTIONS(540), - [anon_sym__] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(540), - [sym_mutable_specifier] = ACTIONS(542), - [anon_sym_DOT_DOT] = ACTIONS(542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(540), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(540), - [anon_sym_BANG_EQ] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(540), - [anon_sym_GT_EQ] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_PLUS_EQ] = ACTIONS(540), - [anon_sym_DASH_EQ] = ACTIONS(540), - [anon_sym_STAR_EQ] = ACTIONS(540), - [anon_sym_SLASH_EQ] = ACTIONS(540), - [anon_sym_PERCENT_EQ] = ACTIONS(540), - [anon_sym_AMP_EQ] = ACTIONS(540), - [anon_sym_PIPE_EQ] = ACTIONS(540), - [anon_sym_CARET_EQ] = ACTIONS(540), - [anon_sym_LT_LT_EQ] = ACTIONS(540), - [anon_sym_GT_GT_EQ] = ACTIONS(540), - [anon_sym_DOT] = ACTIONS(542), - [sym_integer_literal] = ACTIONS(540), - [aux_sym_string_literal_token1] = ACTIONS(540), - [sym_char_literal] = ACTIONS(540), - [anon_sym_true] = ACTIONS(542), - [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(542), - [sym_super] = ACTIONS(542), - [sym_crate] = ACTIONS(542), - [sym_metavariable] = ACTIONS(540), - [sym_raw_string_literal] = ACTIONS(540), - [sym_float_literal] = ACTIONS(540), + [218] = { + [sym_else_clause] = STATE(242), + [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_else] = ACTIONS(874), + [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_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), }, - [230] = { - [sym_identifier] = ACTIONS(538), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(536), - [anon_sym_u8] = ACTIONS(538), - [anon_sym_i8] = ACTIONS(538), - [anon_sym_u16] = ACTIONS(538), - [anon_sym_i16] = ACTIONS(538), - [anon_sym_u32] = ACTIONS(538), - [anon_sym_i32] = ACTIONS(538), - [anon_sym_u64] = ACTIONS(538), - [anon_sym_i64] = ACTIONS(538), - [anon_sym_u128] = ACTIONS(538), - [anon_sym_i128] = ACTIONS(538), - [anon_sym_isize] = ACTIONS(538), - [anon_sym_usize] = ACTIONS(538), - [anon_sym_f32] = ACTIONS(538), - [anon_sym_f64] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(538), - [anon_sym_str] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_as] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_union] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_EQ] = ACTIONS(538), - [anon_sym_COMMA] = ACTIONS(536), - [anon_sym_ref] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_else] = ACTIONS(538), - [anon_sym_COLON_COLON] = ACTIONS(536), - [anon_sym__] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(536), - [sym_mutable_specifier] = ACTIONS(538), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(536), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(538), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_STAR_EQ] = ACTIONS(536), - [anon_sym_SLASH_EQ] = ACTIONS(536), - [anon_sym_PERCENT_EQ] = ACTIONS(536), - [anon_sym_AMP_EQ] = ACTIONS(536), - [anon_sym_PIPE_EQ] = ACTIONS(536), - [anon_sym_CARET_EQ] = ACTIONS(536), - [anon_sym_LT_LT_EQ] = ACTIONS(536), - [anon_sym_GT_GT_EQ] = ACTIONS(536), - [anon_sym_DOT] = ACTIONS(538), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(536), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_crate] = ACTIONS(538), - [sym_metavariable] = ACTIONS(536), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), + [219] = { + [sym_identifier] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_QMARK] = ACTIONS(532), + [anon_sym_u8] = ACTIONS(534), + [anon_sym_i8] = ACTIONS(534), + [anon_sym_u16] = ACTIONS(534), + [anon_sym_i16] = ACTIONS(534), + [anon_sym_u32] = ACTIONS(534), + [anon_sym_i32] = ACTIONS(534), + [anon_sym_u64] = ACTIONS(534), + [anon_sym_i64] = ACTIONS(534), + [anon_sym_u128] = ACTIONS(534), + [anon_sym_i128] = ACTIONS(534), + [anon_sym_isize] = ACTIONS(534), + [anon_sym_usize] = ACTIONS(534), + [anon_sym_f32] = ACTIONS(534), + [anon_sym_f64] = ACTIONS(534), + [anon_sym_bool] = ACTIONS(534), + [anon_sym_str] = ACTIONS(534), + [anon_sym_char] = ACTIONS(534), + [anon_sym_as] = ACTIONS(534), + [anon_sym_const] = ACTIONS(534), + [anon_sym_default] = ACTIONS(534), + [anon_sym_union] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_EQ] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(532), + [anon_sym_ref] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_else] = ACTIONS(534), + [anon_sym_COLON_COLON] = ACTIONS(532), + [anon_sym__] = ACTIONS(534), + [anon_sym_AMP] = ACTIONS(534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(532), + [sym_mutable_specifier] = ACTIONS(534), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_AMP_AMP] = ACTIONS(532), + [anon_sym_PIPE_PIPE] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(534), + [anon_sym_EQ_EQ] = ACTIONS(532), + [anon_sym_BANG_EQ] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_GT_GT] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_PLUS_EQ] = ACTIONS(532), + [anon_sym_DASH_EQ] = ACTIONS(532), + [anon_sym_STAR_EQ] = ACTIONS(532), + [anon_sym_SLASH_EQ] = ACTIONS(532), + [anon_sym_PERCENT_EQ] = ACTIONS(532), + [anon_sym_AMP_EQ] = ACTIONS(532), + [anon_sym_PIPE_EQ] = ACTIONS(532), + [anon_sym_CARET_EQ] = ACTIONS(532), + [anon_sym_LT_LT_EQ] = ACTIONS(532), + [anon_sym_GT_GT_EQ] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(534), + [sym_integer_literal] = ACTIONS(532), + [aux_sym_string_literal_token1] = ACTIONS(532), + [sym_char_literal] = ACTIONS(532), + [anon_sym_true] = ACTIONS(534), + [anon_sym_false] = ACTIONS(534), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(534), + [sym_super] = ACTIONS(534), + [sym_crate] = ACTIONS(534), + [sym_metavariable] = ACTIONS(532), + [sym_raw_string_literal] = ACTIONS(532), + [sym_float_literal] = ACTIONS(532), [sym_block_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_QMARK] = ACTIONS(516), - [anon_sym_u8] = ACTIONS(518), - [anon_sym_i8] = ACTIONS(518), - [anon_sym_u16] = ACTIONS(518), - [anon_sym_i16] = ACTIONS(518), - [anon_sym_u32] = ACTIONS(518), - [anon_sym_i32] = ACTIONS(518), - [anon_sym_u64] = ACTIONS(518), - [anon_sym_i64] = ACTIONS(518), - [anon_sym_u128] = ACTIONS(518), - [anon_sym_i128] = ACTIONS(518), - [anon_sym_isize] = ACTIONS(518), - [anon_sym_usize] = ACTIONS(518), - [anon_sym_f32] = ACTIONS(518), - [anon_sym_f64] = ACTIONS(518), - [anon_sym_bool] = ACTIONS(518), - [anon_sym_str] = ACTIONS(518), - [anon_sym_char] = ACTIONS(518), - [anon_sym_as] = ACTIONS(518), - [anon_sym_const] = ACTIONS(518), - [anon_sym_default] = ACTIONS(518), - [anon_sym_union] = ACTIONS(518), - [anon_sym_POUND] = ACTIONS(516), - [anon_sym_EQ] = ACTIONS(518), - [anon_sym_COMMA] = ACTIONS(516), - [anon_sym_ref] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_else] = ACTIONS(518), - [anon_sym_COLON_COLON] = ACTIONS(516), - [anon_sym__] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(516), - [sym_mutable_specifier] = ACTIONS(518), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(516), - [anon_sym_PIPE_PIPE] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(516), - [anon_sym_BANG_EQ] = ACTIONS(516), - [anon_sym_LT_EQ] = ACTIONS(516), - [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_PLUS_EQ] = ACTIONS(516), - [anon_sym_DASH_EQ] = ACTIONS(516), - [anon_sym_STAR_EQ] = ACTIONS(516), - [anon_sym_SLASH_EQ] = ACTIONS(516), - [anon_sym_PERCENT_EQ] = ACTIONS(516), - [anon_sym_AMP_EQ] = ACTIONS(516), - [anon_sym_PIPE_EQ] = ACTIONS(516), - [anon_sym_CARET_EQ] = ACTIONS(516), - [anon_sym_LT_LT_EQ] = ACTIONS(516), - [anon_sym_GT_GT_EQ] = ACTIONS(516), - [anon_sym_DOT] = ACTIONS(518), - [sym_integer_literal] = ACTIONS(516), - [aux_sym_string_literal_token1] = ACTIONS(516), - [sym_char_literal] = ACTIONS(516), - [anon_sym_true] = ACTIONS(518), - [anon_sym_false] = ACTIONS(518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(518), - [sym_super] = ACTIONS(518), - [sym_crate] = ACTIONS(518), - [sym_metavariable] = ACTIONS(516), - [sym_raw_string_literal] = ACTIONS(516), - [sym_float_literal] = ACTIONS(516), + [220] = { + [sym_identifier] = ACTIONS(556), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(556), + [anon_sym_i8] = ACTIONS(556), + [anon_sym_u16] = ACTIONS(556), + [anon_sym_i16] = ACTIONS(556), + [anon_sym_u32] = ACTIONS(556), + [anon_sym_i32] = ACTIONS(556), + [anon_sym_u64] = ACTIONS(556), + [anon_sym_i64] = ACTIONS(556), + [anon_sym_u128] = ACTIONS(556), + [anon_sym_i128] = ACTIONS(556), + [anon_sym_isize] = ACTIONS(556), + [anon_sym_usize] = ACTIONS(556), + [anon_sym_f32] = ACTIONS(556), + [anon_sym_f64] = ACTIONS(556), + [anon_sym_bool] = ACTIONS(556), + [anon_sym_str] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_as] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_union] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(556), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_ref] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(556), + [anon_sym_else] = ACTIONS(556), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym__] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [sym_mutable_specifier] = ACTIONS(556), + [anon_sym_DOT_DOT] = ACTIONS(556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(556), + [anon_sym_PERCENT] = ACTIONS(556), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(556), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(554), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(556), + [anon_sym_false] = ACTIONS(556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_crate] = ACTIONS(556), + [sym_metavariable] = ACTIONS(554), + [sym_raw_string_literal] = ACTIONS(554), + [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(594), - [anon_sym_i8] = ACTIONS(594), - [anon_sym_u16] = ACTIONS(594), - [anon_sym_i16] = ACTIONS(594), - [anon_sym_u32] = ACTIONS(594), - [anon_sym_i32] = ACTIONS(594), - [anon_sym_u64] = ACTIONS(594), - [anon_sym_i64] = ACTIONS(594), - [anon_sym_u128] = ACTIONS(594), - [anon_sym_i128] = ACTIONS(594), - [anon_sym_isize] = ACTIONS(594), - [anon_sym_usize] = ACTIONS(594), - [anon_sym_f32] = ACTIONS(594), - [anon_sym_f64] = ACTIONS(594), - [anon_sym_bool] = ACTIONS(594), - [anon_sym_str] = ACTIONS(594), - [anon_sym_char] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_const] = ACTIONS(594), - [anon_sym_default] = ACTIONS(594), - [anon_sym_union] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_ref] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym__] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [sym_mutable_specifier] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(594), - [sym_integer_literal] = ACTIONS(592), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(592), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), + [221] = { + [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_else] = 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_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), + }, + [222] = { + [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(594), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(592), - [sym_raw_string_literal] = ACTIONS(592), - [sym_float_literal] = ACTIONS(592), + [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), }, - [233] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2138), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2135), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_type_binding] = STATE(2176), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [sym_block] = STATE(2176), - [sym__literal] = STATE(2176), - [sym_string_literal] = STATE(2336), - [sym_boolean_literal] = STATE(2336), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(894), + [223] = { + [sym_identifier] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_ref] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym__] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [sym_mutable_specifier] = ACTIONS(614), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2127), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2126), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_type_binding] = STATE(2155), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [sym_block] = STATE(2155), + [sym__literal] = STATE(2155), + [sym_string_literal] = STATE(2258), + [sym_boolean_literal] = STATE(2258), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(896), - [anon_sym_i8] = ACTIONS(896), - [anon_sym_u16] = ACTIONS(896), - [anon_sym_i16] = ACTIONS(896), - [anon_sym_u32] = ACTIONS(896), - [anon_sym_i32] = ACTIONS(896), - [anon_sym_u64] = ACTIONS(896), - [anon_sym_i64] = ACTIONS(896), - [anon_sym_u128] = ACTIONS(896), - [anon_sym_i128] = ACTIONS(896), - [anon_sym_isize] = ACTIONS(896), - [anon_sym_usize] = ACTIONS(896), - [anon_sym_f32] = ACTIONS(896), - [anon_sym_f64] = ACTIONS(896), - [anon_sym_bool] = ACTIONS(896), - [anon_sym_str] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(908), + [sym_integer_literal] = ACTIONS(896), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(908), + [sym_char_literal] = ACTIONS(896), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_raw_string_literal] = ACTIONS(908), - [sym_float_literal] = ACTIONS(908), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, - [234] = { + [225] = { + [sym_identifier] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [anon_sym_as] = ACTIONS(566), + [anon_sym_const] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_POUND] = ACTIONS(904), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(568), + [anon_sym_ref] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_COLON_COLON] = ACTIONS(904), + [anon_sym__] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [sym_mutable_specifier] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(566), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(904), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(902), + [anon_sym_false] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(902), + [sym_super] = ACTIONS(902), + [sym_crate] = ACTIONS(902), + [sym_metavariable] = ACTIONS(904), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { [sym_identifier] = ACTIONS(654), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RBRACE] = ACTIONS(652), @@ -44337,7 +42192,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), }, - [235] = { + [227] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2127), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2126), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_type_binding] = STATE(2155), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [sym_block] = STATE(2155), + [sym__literal] = STATE(2155), + [sym_string_literal] = STATE(2258), + [sym_boolean_literal] = STATE(2258), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(888), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { + [sym_identifier] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_u8] = ACTIONS(594), + [anon_sym_i8] = ACTIONS(594), + [anon_sym_u16] = ACTIONS(594), + [anon_sym_i16] = ACTIONS(594), + [anon_sym_u32] = ACTIONS(594), + [anon_sym_i32] = ACTIONS(594), + [anon_sym_u64] = ACTIONS(594), + [anon_sym_i64] = ACTIONS(594), + [anon_sym_u128] = ACTIONS(594), + [anon_sym_i128] = ACTIONS(594), + [anon_sym_isize] = ACTIONS(594), + [anon_sym_usize] = ACTIONS(594), + [anon_sym_f32] = ACTIONS(594), + [anon_sym_f64] = ACTIONS(594), + [anon_sym_bool] = ACTIONS(594), + [anon_sym_str] = ACTIONS(594), + [anon_sym_char] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_union] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [anon_sym_EQ] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_ref] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_COLON_COLON] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(592), + [sym_mutable_specifier] = ACTIONS(594), + [anon_sym_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(592), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(592), + [anon_sym_BANG_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(592), + [anon_sym_DASH_EQ] = ACTIONS(592), + [anon_sym_STAR_EQ] = ACTIONS(592), + [anon_sym_SLASH_EQ] = ACTIONS(592), + [anon_sym_PERCENT_EQ] = ACTIONS(592), + [anon_sym_AMP_EQ] = ACTIONS(592), + [anon_sym_PIPE_EQ] = ACTIONS(592), + [anon_sym_CARET_EQ] = ACTIONS(592), + [anon_sym_LT_LT_EQ] = ACTIONS(592), + [anon_sym_GT_GT_EQ] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(594), + [sym_integer_literal] = ACTIONS(592), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(592), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_crate] = ACTIONS(594), + [sym_metavariable] = ACTIONS(592), + [sym_raw_string_literal] = ACTIONS(592), + [sym_float_literal] = ACTIONS(592), + [sym_block_comment] = ACTIONS(3), + }, + [229] = { + [sym_identifier] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(644), + [anon_sym_u8] = ACTIONS(646), + [anon_sym_i8] = ACTIONS(646), + [anon_sym_u16] = ACTIONS(646), + [anon_sym_i16] = ACTIONS(646), + [anon_sym_u32] = ACTIONS(646), + [anon_sym_i32] = ACTIONS(646), + [anon_sym_u64] = ACTIONS(646), + [anon_sym_i64] = ACTIONS(646), + [anon_sym_u128] = ACTIONS(646), + [anon_sym_i128] = ACTIONS(646), + [anon_sym_isize] = ACTIONS(646), + [anon_sym_usize] = ACTIONS(646), + [anon_sym_f32] = ACTIONS(646), + [anon_sym_f64] = ACTIONS(646), + [anon_sym_bool] = ACTIONS(646), + [anon_sym_str] = ACTIONS(646), + [anon_sym_char] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_const] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_union] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_ref] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(644), + [anon_sym__] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(644), + [sym_mutable_specifier] = ACTIONS(646), + [anon_sym_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_SLASH_EQ] = ACTIONS(644), + [anon_sym_PERCENT_EQ] = ACTIONS(644), + [anon_sym_AMP_EQ] = ACTIONS(644), + [anon_sym_PIPE_EQ] = ACTIONS(644), + [anon_sym_CARET_EQ] = ACTIONS(644), + [anon_sym_LT_LT_EQ] = ACTIONS(644), + [anon_sym_GT_GT_EQ] = ACTIONS(644), + [anon_sym_DOT] = ACTIONS(646), + [sym_integer_literal] = ACTIONS(644), + [aux_sym_string_literal_token1] = ACTIONS(644), + [sym_char_literal] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(646), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(644), + [sym_raw_string_literal] = ACTIONS(644), + [sym_float_literal] = ACTIONS(644), + [sym_block_comment] = ACTIONS(3), + }, + [230] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2127), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2126), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_type_binding] = STATE(2155), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [sym_block] = STATE(2155), + [sym__literal] = STATE(2155), + [sym_string_literal] = STATE(2258), + [sym_boolean_literal] = STATE(2258), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(888), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), + [sym_block_comment] = ACTIONS(3), + }, + [231] = { [sym_identifier] = ACTIONS(560), [anon_sym_LPAREN] = ACTIONS(558), [anon_sym_RBRACE] = ACTIONS(558), @@ -44417,7 +42592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), }, - [236] = { + [232] = { [sym_identifier] = ACTIONS(630), [anon_sym_LPAREN] = ACTIONS(628), [anon_sym_RBRACE] = ACTIONS(628), @@ -44497,167 +42672,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_ref] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym__] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [sym_mutable_specifier] = ACTIONS(646), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), + [233] = { + [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(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(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), }, - [238] = { - [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), + [234] = { + [sym_identifier] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(624), + [anon_sym_ref] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym__] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [sym_mutable_specifier] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(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(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), }, - [239] = { + [235] = { + [sym_identifier] = ACTIONS(678), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(678), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_ref] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym__] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [sym_mutable_specifier] = ACTIONS(678), + [anon_sym_DOT_DOT] = ACTIONS(678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_CARET] = ACTIONS(678), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(676), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(676), + [anon_sym_true] = ACTIONS(678), + [anon_sym_false] = ACTIONS(678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym_metavariable] = ACTIONS(676), + [sym_raw_string_literal] = ACTIONS(676), + [sym_float_literal] = ACTIONS(676), + [sym_block_comment] = ACTIONS(3), + }, + [236] = { [sym_identifier] = ACTIONS(658), [anon_sym_LPAREN] = ACTIONS(656), [anon_sym_RBRACE] = ACTIONS(656), @@ -44737,7 +42992,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(656), [sym_block_comment] = ACTIONS(3), }, - [240] = { + [237] = { + [sym_identifier] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_ref] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym__] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [sym_mutable_specifier] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { [sym_identifier] = ACTIONS(662), [anon_sym_LPAREN] = ACTIONS(660), [anon_sym_RBRACE] = ACTIONS(660), @@ -44817,84 +43152,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, + [239] = { + [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), + }, + [240] = { + [sym_identifier] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(910), + [anon_sym_i8] = ACTIONS(910), + [anon_sym_u16] = ACTIONS(910), + [anon_sym_i16] = ACTIONS(910), + [anon_sym_u32] = ACTIONS(910), + [anon_sym_i32] = ACTIONS(910), + [anon_sym_u64] = ACTIONS(910), + [anon_sym_i64] = ACTIONS(910), + [anon_sym_u128] = ACTIONS(910), + [anon_sym_i128] = ACTIONS(910), + [anon_sym_isize] = ACTIONS(910), + [anon_sym_usize] = ACTIONS(910), + [anon_sym_f32] = ACTIONS(910), + [anon_sym_f64] = ACTIONS(910), + [anon_sym_bool] = ACTIONS(910), + [anon_sym_str] = ACTIONS(910), + [anon_sym_char] = ACTIONS(910), + [anon_sym_as] = ACTIONS(566), + [anon_sym_const] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(568), + [anon_sym_ref] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym__] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [sym_mutable_specifier] = ACTIONS(910), + [anon_sym_DOT_DOT] = ACTIONS(910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(566), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(566), + [sym_integer_literal] = ACTIONS(912), + [aux_sym_string_literal_token1] = ACTIONS(912), + [sym_char_literal] = ACTIONS(912), + [anon_sym_true] = ACTIONS(910), + [anon_sym_false] = ACTIONS(910), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(910), + [sym_super] = ACTIONS(910), + [sym_crate] = ACTIONS(910), + [sym_metavariable] = ACTIONS(912), + [sym_raw_string_literal] = ACTIONS(912), + [sym_float_literal] = ACTIONS(912), + [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), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2127), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2126), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_type_binding] = STATE(2155), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [sym_block] = STATE(2155), + [sym__literal] = STATE(2155), + [sym_string_literal] = STATE(2258), + [sym_boolean_literal] = STATE(2258), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(888), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_dyn] = ACTIONS(726), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [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(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, [242] = { @@ -44978,83 +43473,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [243] = { - [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_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(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), + [sym_self] = ACTIONS(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), }, [244] = { @@ -45129,3306 +43624,2453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [245] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2138), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2135), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_type_binding] = STATE(2176), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [sym_block] = STATE(2176), - [sym__literal] = STATE(2176), - [sym_string_literal] = STATE(2336), - [sym_boolean_literal] = STATE(2336), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(908), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(908), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_raw_string_literal] = ACTIONS(908), - [sym_float_literal] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { - [sym_identifier] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(916), - [anon_sym_i8] = ACTIONS(916), - [anon_sym_u16] = ACTIONS(916), - [anon_sym_i16] = ACTIONS(916), - [anon_sym_u32] = ACTIONS(916), - [anon_sym_i32] = ACTIONS(916), - [anon_sym_u64] = ACTIONS(916), - [anon_sym_i64] = ACTIONS(916), - [anon_sym_u128] = ACTIONS(916), - [anon_sym_i128] = ACTIONS(916), - [anon_sym_isize] = ACTIONS(916), - [anon_sym_usize] = ACTIONS(916), - [anon_sym_f32] = ACTIONS(916), - [anon_sym_f64] = ACTIONS(916), - [anon_sym_bool] = ACTIONS(916), - [anon_sym_str] = ACTIONS(916), - [anon_sym_char] = ACTIONS(916), - [anon_sym_as] = ACTIONS(586), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_union] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(918), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_ref] = ACTIONS(916), - [anon_sym_LT] = ACTIONS(916), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(918), - [anon_sym__] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [sym_mutable_specifier] = ACTIONS(916), - [anon_sym_DOT_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(918), - [aux_sym_string_literal_token1] = ACTIONS(918), - [sym_char_literal] = ACTIONS(918), - [anon_sym_true] = ACTIONS(916), - [anon_sym_false] = ACTIONS(916), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(916), - [sym_super] = ACTIONS(916), - [sym_crate] = ACTIONS(916), - [sym_metavariable] = ACTIONS(918), - [sym_raw_string_literal] = ACTIONS(918), - [sym_float_literal] = ACTIONS(918), - [sym_block_comment] = ACTIONS(3), - }, - [247] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2138), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2135), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_type_binding] = STATE(2176), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [sym_block] = STATE(2176), - [sym__literal] = STATE(2176), - [sym_string_literal] = STATE(2336), - [sym_boolean_literal] = STATE(2336), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(908), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(908), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_raw_string_literal] = ACTIONS(908), - [sym_float_literal] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [248] = { - [sym_identifier] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(612), - [anon_sym_u8] = ACTIONS(614), - [anon_sym_i8] = ACTIONS(614), - [anon_sym_u16] = ACTIONS(614), - [anon_sym_i16] = ACTIONS(614), - [anon_sym_u32] = ACTIONS(614), - [anon_sym_i32] = ACTIONS(614), - [anon_sym_u64] = ACTIONS(614), - [anon_sym_i64] = ACTIONS(614), - [anon_sym_u128] = ACTIONS(614), - [anon_sym_i128] = ACTIONS(614), - [anon_sym_isize] = ACTIONS(614), - [anon_sym_usize] = ACTIONS(614), - [anon_sym_f32] = ACTIONS(614), - [anon_sym_f64] = ACTIONS(614), - [anon_sym_bool] = ACTIONS(614), - [anon_sym_str] = ACTIONS(614), - [anon_sym_char] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_default] = ACTIONS(614), - [anon_sym_union] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_COMMA] = ACTIONS(612), - [anon_sym_ref] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_COLON_COLON] = ACTIONS(612), - [anon_sym__] = ACTIONS(614), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [sym_mutable_specifier] = ACTIONS(614), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_AMP_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_DOT] = ACTIONS(614), - [sym_integer_literal] = ACTIONS(612), - [aux_sym_string_literal_token1] = ACTIONS(612), - [sym_char_literal] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(614), - [sym_super] = ACTIONS(614), - [sym_crate] = ACTIONS(614), - [sym_metavariable] = ACTIONS(612), - [sym_raw_string_literal] = ACTIONS(612), - [sym_float_literal] = ACTIONS(612), - [sym_block_comment] = ACTIONS(3), - }, - [249] = { - [sym_identifier] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_ref] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym__] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), - [sym_block_comment] = ACTIONS(3), - }, - [250] = { - [sym_identifier] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(922), - [anon_sym_i8] = ACTIONS(922), - [anon_sym_u16] = ACTIONS(922), - [anon_sym_i16] = ACTIONS(922), - [anon_sym_u32] = ACTIONS(922), - [anon_sym_i32] = ACTIONS(922), - [anon_sym_u64] = ACTIONS(922), - [anon_sym_i64] = ACTIONS(922), - [anon_sym_u128] = ACTIONS(922), - [anon_sym_i128] = ACTIONS(922), - [anon_sym_isize] = ACTIONS(922), - [anon_sym_usize] = ACTIONS(922), - [anon_sym_f32] = ACTIONS(922), - [anon_sym_f64] = ACTIONS(922), - [anon_sym_bool] = ACTIONS(922), - [anon_sym_str] = ACTIONS(922), - [anon_sym_char] = ACTIONS(922), - [anon_sym_as] = ACTIONS(586), - [anon_sym_const] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_union] = ACTIONS(922), - [anon_sym_POUND] = ACTIONS(924), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_ref] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(924), - [anon_sym__] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [sym_mutable_specifier] = ACTIONS(922), - [anon_sym_DOT_DOT] = ACTIONS(922), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(924), - [aux_sym_string_literal_token1] = ACTIONS(924), - [sym_char_literal] = ACTIONS(924), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(924), - [sym_float_literal] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [251] = { - [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), - [sym_block_comment] = ACTIONS(3), - }, - [252] = { - [sym_identifier] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_ref] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym__] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [sym_mutable_specifier] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), - [sym_block_comment] = ACTIONS(3), - }, - [253] = { - [sym_identifier] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(624), - [anon_sym_ref] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym__] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [sym_mutable_specifier] = ACTIONS(626), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), - [sym_block_comment] = ACTIONS(3), - }, - [254] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2138), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2135), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_type_binding] = STATE(2176), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [sym_block] = STATE(2176), - [sym__literal] = STATE(2176), - [sym_string_literal] = STATE(2336), - [sym_boolean_literal] = STATE(2336), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(926), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(908), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(908), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_raw_string_literal] = ACTIONS(908), - [sym_float_literal] = ACTIONS(908), + [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), }, - [255] = { - [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), + [245] = { + [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(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_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), }, - [256] = { - [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), + [246] = { + [sym_identifier] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_u8] = ACTIONS(598), + [anon_sym_i8] = ACTIONS(598), + [anon_sym_u16] = ACTIONS(598), + [anon_sym_i16] = ACTIONS(598), + [anon_sym_u32] = ACTIONS(598), + [anon_sym_i32] = ACTIONS(598), + [anon_sym_u64] = ACTIONS(598), + [anon_sym_i64] = ACTIONS(598), + [anon_sym_u128] = ACTIONS(598), + [anon_sym_i128] = ACTIONS(598), + [anon_sym_isize] = ACTIONS(598), + [anon_sym_usize] = ACTIONS(598), + [anon_sym_f32] = ACTIONS(598), + [anon_sym_f64] = ACTIONS(598), + [anon_sym_bool] = ACTIONS(598), + [anon_sym_str] = ACTIONS(598), + [anon_sym_char] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_default] = ACTIONS(598), + [anon_sym_union] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(598), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_ref] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_COLON_COLON] = ACTIONS(596), + [anon_sym__] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(596), + [sym_mutable_specifier] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(598), + [sym_integer_literal] = ACTIONS(596), + [aux_sym_string_literal_token1] = ACTIONS(596), + [sym_char_literal] = ACTIONS(596), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), [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(598), + [sym_super] = ACTIONS(598), + [sym_crate] = ACTIONS(598), + [sym_metavariable] = ACTIONS(596), + [sym_raw_string_literal] = ACTIONS(596), + [sym_float_literal] = ACTIONS(596), [sym_block_comment] = ACTIONS(3), }, - [257] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2138), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2135), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_type_binding] = STATE(2176), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [sym_block] = STATE(2176), - [sym__literal] = STATE(2176), - [sym_string_literal] = STATE(2336), - [sym_boolean_literal] = STATE(2336), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(894), + [247] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1823), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1822), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_type_binding] = STATE(2026), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [sym_block] = STATE(2026), + [sym__literal] = STATE(2026), + [sym_string_literal] = STATE(2258), + [sym_boolean_literal] = STATE(2258), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(896), - [anon_sym_i8] = ACTIONS(896), - [anon_sym_u16] = ACTIONS(896), - [anon_sym_i16] = ACTIONS(896), - [anon_sym_u32] = ACTIONS(896), - [anon_sym_i32] = ACTIONS(896), - [anon_sym_u64] = ACTIONS(896), - [anon_sym_i64] = ACTIONS(896), - [anon_sym_u128] = ACTIONS(896), - [anon_sym_i128] = ACTIONS(896), - [anon_sym_isize] = ACTIONS(896), - [anon_sym_usize] = ACTIONS(896), - [anon_sym_f32] = ACTIONS(896), - [anon_sym_f64] = ACTIONS(896), - [anon_sym_bool] = ACTIONS(896), - [anon_sym_str] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(908), + [sym_integer_literal] = ACTIONS(896), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(908), + [sym_char_literal] = ACTIONS(896), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_raw_string_literal] = ACTIONS(908), - [sym_float_literal] = ACTIONS(908), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, - [258] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1867), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(1863), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_type_binding] = STATE(2024), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [sym_block] = STATE(2024), - [sym__literal] = STATE(2024), - [sym_string_literal] = STATE(2336), - [sym_boolean_literal] = STATE(2336), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(894), + [248] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2127), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2126), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_type_binding] = STATE(2155), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [sym_block] = STATE(2155), + [sym__literal] = STATE(2155), + [sym_string_literal] = STATE(2258), + [sym_boolean_literal] = STATE(2258), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(896), - [anon_sym_i8] = ACTIONS(896), - [anon_sym_u16] = ACTIONS(896), - [anon_sym_i16] = ACTIONS(896), - [anon_sym_u32] = ACTIONS(896), - [anon_sym_i32] = ACTIONS(896), - [anon_sym_u64] = ACTIONS(896), - [anon_sym_i64] = ACTIONS(896), - [anon_sym_u128] = ACTIONS(896), - [anon_sym_i128] = ACTIONS(896), - [anon_sym_isize] = ACTIONS(896), - [anon_sym_usize] = ACTIONS(896), - [anon_sym_f32] = ACTIONS(896), - [anon_sym_f64] = ACTIONS(896), - [anon_sym_bool] = ACTIONS(896), - [anon_sym_str] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(908), + [sym_integer_literal] = ACTIONS(896), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(908), + [sym_char_literal] = ACTIONS(896), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_raw_string_literal] = ACTIONS(908), - [sym_float_literal] = ACTIONS(908), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, - [259] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1827), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(1826), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_type_binding] = STATE(2117), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [sym_block] = STATE(2117), - [sym__literal] = STATE(2117), - [sym_string_literal] = STATE(2336), - [sym_boolean_literal] = STATE(2336), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(894), + [249] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1847), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1846), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_type_binding] = STATE(2090), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [sym_block] = STATE(2090), + [sym__literal] = STATE(2090), + [sym_string_literal] = STATE(2258), + [sym_boolean_literal] = STATE(2258), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(896), - [anon_sym_i8] = ACTIONS(896), - [anon_sym_u16] = ACTIONS(896), - [anon_sym_i16] = ACTIONS(896), - [anon_sym_u32] = ACTIONS(896), - [anon_sym_i32] = ACTIONS(896), - [anon_sym_u64] = ACTIONS(896), - [anon_sym_i64] = ACTIONS(896), - [anon_sym_u128] = ACTIONS(896), - [anon_sym_i128] = ACTIONS(896), - [anon_sym_isize] = ACTIONS(896), - [anon_sym_usize] = ACTIONS(896), - [anon_sym_f32] = ACTIONS(896), - [anon_sym_f64] = ACTIONS(896), - [anon_sym_bool] = ACTIONS(896), - [anon_sym_str] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(908), + [sym_integer_literal] = ACTIONS(896), [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(908), + [sym_char_literal] = ACTIONS(896), [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_raw_string_literal] = ACTIONS(908), - [sym_float_literal] = ACTIONS(908), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), [sym_block_comment] = ACTIONS(3), }, - [260] = { - [sym_empty_statement] = STATE(261), - [sym_macro_definition] = STATE(261), - [sym_attribute_item] = STATE(261), - [sym_inner_attribute_item] = STATE(261), - [sym_mod_item] = STATE(261), - [sym_foreign_mod_item] = STATE(261), - [sym_struct_item] = STATE(261), - [sym_union_item] = STATE(261), - [sym_enum_item] = STATE(261), - [sym_extern_crate_declaration] = STATE(261), - [sym_const_item] = STATE(261), - [sym_static_item] = STATE(261), - [sym_type_item] = STATE(261), - [sym_function_item] = STATE(261), - [sym_function_signature_item] = STATE(261), - [sym_function_modifiers] = STATE(2601), - [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(1547), - [sym_visibility_modifier] = STATE(1379), - [sym_bracketed_type] = STATE(2407), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_macro_invocation] = STATE(261), - [sym_scoped_identifier] = STATE(2346), - [aux_sym_declaration_list_repeat1] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_macro_rules_BANG] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_u8] = ACTIONS(936), - [anon_sym_i8] = ACTIONS(936), - [anon_sym_u16] = ACTIONS(936), - [anon_sym_i16] = ACTIONS(936), - [anon_sym_u32] = ACTIONS(936), - [anon_sym_i32] = ACTIONS(936), - [anon_sym_u64] = ACTIONS(936), - [anon_sym_i64] = ACTIONS(936), - [anon_sym_u128] = ACTIONS(936), - [anon_sym_i128] = ACTIONS(936), - [anon_sym_isize] = ACTIONS(936), - [anon_sym_usize] = ACTIONS(936), - [anon_sym_f32] = ACTIONS(936), - [anon_sym_f64] = ACTIONS(936), - [anon_sym_bool] = ACTIONS(936), - [anon_sym_str] = ACTIONS(936), - [anon_sym_char] = ACTIONS(936), + [250] = { + [sym__token_pattern] = STATE(250), + [sym_token_tree_pattern] = STATE(250), + [sym_token_binding_pattern] = STATE(250), + [sym_token_repetition_pattern] = STATE(250), + [sym__literal] = STATE(250), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_u8] = ACTIONS(916), + [anon_sym_i8] = ACTIONS(916), + [anon_sym_u16] = ACTIONS(916), + [anon_sym_i16] = ACTIONS(916), + [anon_sym_u32] = ACTIONS(916), + [anon_sym_i32] = ACTIONS(916), + [anon_sym_u64] = ACTIONS(916), + [anon_sym_i64] = ACTIONS(916), + [anon_sym_u128] = ACTIONS(916), + [anon_sym_i128] = ACTIONS(916), + [anon_sym_isize] = ACTIONS(916), + [anon_sym_usize] = ACTIONS(916), + [anon_sym_f32] = ACTIONS(916), + [anon_sym_f64] = ACTIONS(916), + [anon_sym_bool] = ACTIONS(916), + [anon_sym_str] = ACTIONS(916), + [anon_sym_char] = ACTIONS(916), + [aux_sym__non_special_token_token1] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_as] = ACTIONS(916), + [anon_sym_async] = ACTIONS(916), + [anon_sym_await] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_fn] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_impl] = ACTIONS(916), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(916), + [anon_sym_match] = ACTIONS(916), + [anon_sym_mod] = ACTIONS(916), + [anon_sym_pub] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_static] = ACTIONS(916), + [anon_sym_struct] = ACTIONS(916), + [anon_sym_trait] = ACTIONS(916), + [anon_sym_type] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_unsafe] = ACTIONS(916), + [anon_sym_use] = ACTIONS(916), + [anon_sym_where] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [sym_mutable_specifier] = ACTIONS(916), + [sym_integer_literal] = ACTIONS(933), + [aux_sym_string_literal_token1] = ACTIONS(936), + [sym_char_literal] = ACTIONS(933), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(916), + [sym_super] = ACTIONS(916), + [sym_crate] = ACTIONS(916), + [sym_metavariable] = ACTIONS(944), + [sym_raw_string_literal] = ACTIONS(933), + [sym_float_literal] = ACTIONS(933), + [sym_block_comment] = ACTIONS(3), + }, + [251] = { + [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(2573), + [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(1519), + [sym_visibility_modifier] = STATE(1374), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2375), + [sym_macro_invocation] = STATE(252), + [sym_scoped_identifier] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(252), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_macro_rules_BANG] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(955), + [anon_sym_i8] = ACTIONS(955), + [anon_sym_u16] = ACTIONS(955), + [anon_sym_i16] = ACTIONS(955), + [anon_sym_u32] = ACTIONS(955), + [anon_sym_i32] = ACTIONS(955), + [anon_sym_u64] = ACTIONS(955), + [anon_sym_i64] = ACTIONS(955), + [anon_sym_u128] = ACTIONS(955), + [anon_sym_i128] = ACTIONS(955), + [anon_sym_isize] = ACTIONS(955), + [anon_sym_usize] = ACTIONS(955), + [anon_sym_f32] = ACTIONS(955), + [anon_sym_f64] = ACTIONS(955), + [anon_sym_bool] = ACTIONS(955), + [anon_sym_str] = ACTIONS(955), + [anon_sym_char] = ACTIONS(955), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(938), - [anon_sym_default] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_fn] = ACTIONS(944), - [anon_sym_impl] = ACTIONS(946), - [anon_sym_let] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), + [anon_sym_const] = ACTIONS(957), + [anon_sym_default] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(963), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(967), + [anon_sym_mod] = ACTIONS(969), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_trait] = ACTIONS(956), - [anon_sym_type] = ACTIONS(958), - [anon_sym_union] = ACTIONS(960), - [anon_sym_unsafe] = ACTIONS(962), - [anon_sym_use] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(968), + [anon_sym_static] = ACTIONS(971), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_trait] = ACTIONS(975), + [anon_sym_type] = ACTIONS(977), + [anon_sym_union] = ACTIONS(979), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(987), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(989), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(970), - [sym_super] = ACTIONS(970), - [sym_crate] = ACTIONS(972), - [sym_metavariable] = ACTIONS(974), + [sym_self] = ACTIONS(991), + [sym_super] = ACTIONS(991), + [sym_crate] = ACTIONS(993), + [sym_metavariable] = ACTIONS(995), [sym_block_comment] = ACTIONS(3), }, - [261] = { - [sym_empty_statement] = STATE(263), - [sym_macro_definition] = STATE(263), - [sym_attribute_item] = STATE(263), - [sym_inner_attribute_item] = STATE(263), - [sym_mod_item] = STATE(263), - [sym_foreign_mod_item] = STATE(263), - [sym_struct_item] = STATE(263), - [sym_union_item] = STATE(263), - [sym_enum_item] = STATE(263), - [sym_extern_crate_declaration] = STATE(263), - [sym_const_item] = STATE(263), - [sym_static_item] = STATE(263), - [sym_type_item] = STATE(263), - [sym_function_item] = STATE(263), - [sym_function_signature_item] = STATE(263), - [sym_function_modifiers] = STATE(2601), - [sym_impl_item] = STATE(263), - [sym_trait_item] = STATE(263), - [sym_associated_type] = STATE(263), - [sym_let_declaration] = STATE(263), - [sym_use_declaration] = STATE(263), - [sym_extern_modifier] = STATE(1547), - [sym_visibility_modifier] = STATE(1379), - [sym_bracketed_type] = STATE(2407), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_macro_invocation] = STATE(263), - [sym_scoped_identifier] = STATE(2346), - [aux_sym_declaration_list_repeat1] = STATE(263), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_macro_rules_BANG] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_u8] = ACTIONS(936), - [anon_sym_i8] = ACTIONS(936), - [anon_sym_u16] = ACTIONS(936), - [anon_sym_i16] = ACTIONS(936), - [anon_sym_u32] = ACTIONS(936), - [anon_sym_i32] = ACTIONS(936), - [anon_sym_u64] = ACTIONS(936), - [anon_sym_i64] = ACTIONS(936), - [anon_sym_u128] = ACTIONS(936), - [anon_sym_i128] = ACTIONS(936), - [anon_sym_isize] = ACTIONS(936), - [anon_sym_usize] = ACTIONS(936), - [anon_sym_f32] = ACTIONS(936), - [anon_sym_f64] = ACTIONS(936), - [anon_sym_bool] = ACTIONS(936), - [anon_sym_str] = ACTIONS(936), - [anon_sym_char] = ACTIONS(936), + [252] = { + [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(2573), + [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(1519), + [sym_visibility_modifier] = STATE(1374), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2375), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_macro_rules_BANG] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(997), + [anon_sym_u8] = ACTIONS(955), + [anon_sym_i8] = ACTIONS(955), + [anon_sym_u16] = ACTIONS(955), + [anon_sym_i16] = ACTIONS(955), + [anon_sym_u32] = ACTIONS(955), + [anon_sym_i32] = ACTIONS(955), + [anon_sym_u64] = ACTIONS(955), + [anon_sym_i64] = ACTIONS(955), + [anon_sym_u128] = ACTIONS(955), + [anon_sym_i128] = ACTIONS(955), + [anon_sym_isize] = ACTIONS(955), + [anon_sym_usize] = ACTIONS(955), + [anon_sym_f32] = ACTIONS(955), + [anon_sym_f64] = ACTIONS(955), + [anon_sym_bool] = ACTIONS(955), + [anon_sym_str] = ACTIONS(955), + [anon_sym_char] = ACTIONS(955), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(938), - [anon_sym_default] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_fn] = ACTIONS(944), - [anon_sym_impl] = ACTIONS(946), - [anon_sym_let] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), + [anon_sym_const] = ACTIONS(957), + [anon_sym_default] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(963), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(967), + [anon_sym_mod] = ACTIONS(969), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_trait] = ACTIONS(956), - [anon_sym_type] = ACTIONS(958), - [anon_sym_union] = ACTIONS(960), - [anon_sym_unsafe] = ACTIONS(962), - [anon_sym_use] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(968), + [anon_sym_static] = ACTIONS(971), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_trait] = ACTIONS(975), + [anon_sym_type] = ACTIONS(977), + [anon_sym_union] = ACTIONS(979), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(987), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(989), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(970), - [sym_super] = ACTIONS(970), - [sym_crate] = ACTIONS(972), - [sym_metavariable] = ACTIONS(974), + [sym_self] = ACTIONS(991), + [sym_super] = ACTIONS(991), + [sym_crate] = ACTIONS(993), + [sym_metavariable] = ACTIONS(995), [sym_block_comment] = ACTIONS(3), }, - [262] = { - [sym__token_pattern] = STATE(262), - [sym_token_tree_pattern] = STATE(262), - [sym_token_binding_pattern] = STATE(262), - [sym_token_repetition_pattern] = STATE(262), - [sym__literal] = STATE(262), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_u8] = ACTIONS(978), - [anon_sym_i8] = ACTIONS(978), - [anon_sym_u16] = ACTIONS(978), - [anon_sym_i16] = ACTIONS(978), - [anon_sym_u32] = ACTIONS(978), - [anon_sym_i32] = ACTIONS(978), - [anon_sym_u64] = ACTIONS(978), - [anon_sym_i64] = ACTIONS(978), - [anon_sym_u128] = ACTIONS(978), - [anon_sym_i128] = ACTIONS(978), - [anon_sym_isize] = ACTIONS(978), - [anon_sym_usize] = ACTIONS(978), - [anon_sym_f32] = ACTIONS(978), - [anon_sym_f64] = ACTIONS(978), - [anon_sym_bool] = ACTIONS(978), - [anon_sym_str] = ACTIONS(978), - [anon_sym_char] = ACTIONS(978), - [aux_sym__non_special_token_token1] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_async] = ACTIONS(978), - [anon_sym_await] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_impl] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_mod] = ACTIONS(978), - [anon_sym_pub] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_static] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_trait] = ACTIONS(978), - [anon_sym_type] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_unsafe] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_where] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [sym_mutable_specifier] = ACTIONS(978), - [sym_integer_literal] = ACTIONS(995), - [aux_sym_string_literal_token1] = ACTIONS(998), - [sym_char_literal] = ACTIONS(995), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(978), - [sym_metavariable] = ACTIONS(1006), - [sym_raw_string_literal] = ACTIONS(995), - [sym_float_literal] = ACTIONS(995), - [sym_block_comment] = ACTIONS(3), - }, - [263] = { - [sym_empty_statement] = STATE(263), - [sym_macro_definition] = STATE(263), - [sym_attribute_item] = STATE(263), - [sym_inner_attribute_item] = STATE(263), - [sym_mod_item] = STATE(263), - [sym_foreign_mod_item] = STATE(263), - [sym_struct_item] = STATE(263), - [sym_union_item] = STATE(263), - [sym_enum_item] = STATE(263), - [sym_extern_crate_declaration] = STATE(263), - [sym_const_item] = STATE(263), - [sym_static_item] = STATE(263), - [sym_type_item] = STATE(263), - [sym_function_item] = STATE(263), - [sym_function_signature_item] = STATE(263), - [sym_function_modifiers] = STATE(2601), - [sym_impl_item] = STATE(263), - [sym_trait_item] = STATE(263), - [sym_associated_type] = STATE(263), - [sym_let_declaration] = STATE(263), - [sym_use_declaration] = STATE(263), - [sym_extern_modifier] = STATE(1547), - [sym_visibility_modifier] = STATE(1379), - [sym_bracketed_type] = STATE(2407), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_macro_invocation] = STATE(263), - [sym_scoped_identifier] = STATE(2346), - [aux_sym_declaration_list_repeat1] = STATE(263), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [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), + [253] = { + [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(2573), + [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(1519), + [sym_visibility_modifier] = STATE(1374), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2375), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_macro_rules_BANG] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_u8] = ACTIONS(1010), + [anon_sym_i8] = ACTIONS(1010), + [anon_sym_u16] = ACTIONS(1010), + [anon_sym_i16] = ACTIONS(1010), + [anon_sym_u32] = ACTIONS(1010), + [anon_sym_i32] = ACTIONS(1010), + [anon_sym_u64] = ACTIONS(1010), + [anon_sym_i64] = ACTIONS(1010), + [anon_sym_u128] = ACTIONS(1010), + [anon_sym_i128] = ACTIONS(1010), + [anon_sym_isize] = ACTIONS(1010), + [anon_sym_usize] = ACTIONS(1010), + [anon_sym_f32] = ACTIONS(1010), + [anon_sym_f64] = ACTIONS(1010), + [anon_sym_bool] = ACTIONS(1010), + [anon_sym_str] = ACTIONS(1010), + [anon_sym_char] = ACTIONS(1010), + [anon_sym_async] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1019), + [anon_sym_enum] = ACTIONS(1022), + [anon_sym_fn] = ACTIONS(1025), + [anon_sym_impl] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1031), + [anon_sym_mod] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1040), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_trait] = ACTIONS(1046), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1052), + [anon_sym_unsafe] = ACTIONS(1055), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(1061), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(1070), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1073), + [sym_super] = ACTIONS(1073), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1079), [sym_block_comment] = ACTIONS(3), }, - [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(2601), - [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(1547), - [sym_visibility_modifier] = STATE(1379), - [sym_bracketed_type] = STATE(2407), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(2346), - [aux_sym_declaration_list_repeat1] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_macro_rules_BANG] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_u8] = ACTIONS(936), - [anon_sym_i8] = ACTIONS(936), - [anon_sym_u16] = ACTIONS(936), - [anon_sym_i16] = ACTIONS(936), - [anon_sym_u32] = ACTIONS(936), - [anon_sym_i32] = ACTIONS(936), - [anon_sym_u64] = ACTIONS(936), - [anon_sym_i64] = ACTIONS(936), - [anon_sym_u128] = ACTIONS(936), - [anon_sym_i128] = ACTIONS(936), - [anon_sym_isize] = ACTIONS(936), - [anon_sym_usize] = ACTIONS(936), - [anon_sym_f32] = ACTIONS(936), - [anon_sym_f64] = ACTIONS(936), - [anon_sym_bool] = ACTIONS(936), - [anon_sym_str] = ACTIONS(936), - [anon_sym_char] = ACTIONS(936), + [254] = { + [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(2573), + [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(1519), + [sym_visibility_modifier] = STATE(1374), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2375), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_macro_rules_BANG] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(955), + [anon_sym_i8] = ACTIONS(955), + [anon_sym_u16] = ACTIONS(955), + [anon_sym_i16] = ACTIONS(955), + [anon_sym_u32] = ACTIONS(955), + [anon_sym_i32] = ACTIONS(955), + [anon_sym_u64] = ACTIONS(955), + [anon_sym_i64] = ACTIONS(955), + [anon_sym_u128] = ACTIONS(955), + [anon_sym_i128] = ACTIONS(955), + [anon_sym_isize] = ACTIONS(955), + [anon_sym_usize] = ACTIONS(955), + [anon_sym_f32] = ACTIONS(955), + [anon_sym_f64] = ACTIONS(955), + [anon_sym_bool] = ACTIONS(955), + [anon_sym_str] = ACTIONS(955), + [anon_sym_char] = ACTIONS(955), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(938), - [anon_sym_default] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_fn] = ACTIONS(944), - [anon_sym_impl] = ACTIONS(946), - [anon_sym_let] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), + [anon_sym_const] = ACTIONS(957), + [anon_sym_default] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(963), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(967), + [anon_sym_mod] = ACTIONS(969), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_trait] = ACTIONS(956), - [anon_sym_type] = ACTIONS(958), - [anon_sym_union] = ACTIONS(960), - [anon_sym_unsafe] = ACTIONS(962), - [anon_sym_use] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(968), + [anon_sym_static] = ACTIONS(971), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_trait] = ACTIONS(975), + [anon_sym_type] = ACTIONS(977), + [anon_sym_union] = ACTIONS(979), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(987), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(989), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(970), - [sym_super] = ACTIONS(970), - [sym_crate] = ACTIONS(972), - [sym_metavariable] = ACTIONS(974), + [sym_self] = ACTIONS(991), + [sym_super] = ACTIONS(991), + [sym_crate] = ACTIONS(993), + [sym_metavariable] = ACTIONS(995), [sym_block_comment] = ACTIONS(3), }, - [265] = { - [sym_empty_statement] = STATE(263), - [sym_macro_definition] = STATE(263), - [sym_attribute_item] = STATE(263), - [sym_inner_attribute_item] = STATE(263), - [sym_mod_item] = STATE(263), - [sym_foreign_mod_item] = STATE(263), - [sym_struct_item] = STATE(263), - [sym_union_item] = STATE(263), - [sym_enum_item] = STATE(263), - [sym_extern_crate_declaration] = STATE(263), - [sym_const_item] = STATE(263), - [sym_static_item] = STATE(263), - [sym_type_item] = STATE(263), - [sym_function_item] = STATE(263), - [sym_function_signature_item] = STATE(263), - [sym_function_modifiers] = STATE(2601), - [sym_impl_item] = STATE(263), - [sym_trait_item] = STATE(263), - [sym_associated_type] = STATE(263), - [sym_let_declaration] = STATE(263), - [sym_use_declaration] = STATE(263), - [sym_extern_modifier] = STATE(1547), - [sym_visibility_modifier] = STATE(1379), - [sym_bracketed_type] = STATE(2407), - [sym_generic_type_with_turbofish] = STATE(2468), - [sym_macro_invocation] = STATE(263), - [sym_scoped_identifier] = STATE(2346), - [aux_sym_declaration_list_repeat1] = STATE(263), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_macro_rules_BANG] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(1094), - [anon_sym_u8] = ACTIONS(936), - [anon_sym_i8] = ACTIONS(936), - [anon_sym_u16] = ACTIONS(936), - [anon_sym_i16] = ACTIONS(936), - [anon_sym_u32] = ACTIONS(936), - [anon_sym_i32] = ACTIONS(936), - [anon_sym_u64] = ACTIONS(936), - [anon_sym_i64] = ACTIONS(936), - [anon_sym_u128] = ACTIONS(936), - [anon_sym_i128] = ACTIONS(936), - [anon_sym_isize] = ACTIONS(936), - [anon_sym_usize] = ACTIONS(936), - [anon_sym_f32] = ACTIONS(936), - [anon_sym_f64] = ACTIONS(936), - [anon_sym_bool] = ACTIONS(936), - [anon_sym_str] = ACTIONS(936), - [anon_sym_char] = ACTIONS(936), + [255] = { + [sym_empty_statement] = STATE(254), + [sym_macro_definition] = STATE(254), + [sym_attribute_item] = STATE(254), + [sym_inner_attribute_item] = STATE(254), + [sym_mod_item] = STATE(254), + [sym_foreign_mod_item] = STATE(254), + [sym_struct_item] = STATE(254), + [sym_union_item] = STATE(254), + [sym_enum_item] = STATE(254), + [sym_extern_crate_declaration] = STATE(254), + [sym_const_item] = STATE(254), + [sym_static_item] = STATE(254), + [sym_type_item] = STATE(254), + [sym_function_item] = STATE(254), + [sym_function_signature_item] = STATE(254), + [sym_function_modifiers] = STATE(2573), + [sym_impl_item] = STATE(254), + [sym_trait_item] = STATE(254), + [sym_associated_type] = STATE(254), + [sym_let_declaration] = STATE(254), + [sym_use_declaration] = STATE(254), + [sym_extern_modifier] = STATE(1519), + [sym_visibility_modifier] = STATE(1374), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2375), + [sym_macro_invocation] = STATE(254), + [sym_scoped_identifier] = STATE(2310), + [aux_sym_declaration_list_repeat1] = STATE(254), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_macro_rules_BANG] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_u8] = ACTIONS(955), + [anon_sym_i8] = ACTIONS(955), + [anon_sym_u16] = ACTIONS(955), + [anon_sym_i16] = ACTIONS(955), + [anon_sym_u32] = ACTIONS(955), + [anon_sym_i32] = ACTIONS(955), + [anon_sym_u64] = ACTIONS(955), + [anon_sym_i64] = ACTIONS(955), + [anon_sym_u128] = ACTIONS(955), + [anon_sym_i128] = ACTIONS(955), + [anon_sym_isize] = ACTIONS(955), + [anon_sym_usize] = ACTIONS(955), + [anon_sym_f32] = ACTIONS(955), + [anon_sym_f64] = ACTIONS(955), + [anon_sym_bool] = ACTIONS(955), + [anon_sym_str] = ACTIONS(955), + [anon_sym_char] = ACTIONS(955), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(938), - [anon_sym_default] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_fn] = ACTIONS(944), - [anon_sym_impl] = ACTIONS(946), - [anon_sym_let] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(950), + [anon_sym_const] = ACTIONS(957), + [anon_sym_default] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(963), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(967), + [anon_sym_mod] = ACTIONS(969), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_trait] = ACTIONS(956), - [anon_sym_type] = ACTIONS(958), - [anon_sym_union] = ACTIONS(960), - [anon_sym_unsafe] = ACTIONS(962), - [anon_sym_use] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(968), + [anon_sym_static] = ACTIONS(971), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_trait] = ACTIONS(975), + [anon_sym_type] = ACTIONS(977), + [anon_sym_union] = ACTIONS(979), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(987), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(989), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(970), - [sym_super] = ACTIONS(970), - [sym_crate] = ACTIONS(972), - [sym_metavariable] = ACTIONS(974), + [sym_self] = ACTIONS(991), + [sym_super] = ACTIONS(991), + [sym_crate] = ACTIONS(993), + [sym_metavariable] = ACTIONS(995), [sym_block_comment] = ACTIONS(3), }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1096), - [sym_identifier] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1096), - [anon_sym_macro_rules_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1096), - [anon_sym_RBRACE] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1096), - [anon_sym_STAR] = ACTIONS(1096), - [anon_sym_u8] = ACTIONS(1098), - [anon_sym_i8] = ACTIONS(1098), - [anon_sym_u16] = ACTIONS(1098), - [anon_sym_i16] = ACTIONS(1098), - [anon_sym_u32] = ACTIONS(1098), - [anon_sym_i32] = ACTIONS(1098), - [anon_sym_u64] = ACTIONS(1098), - [anon_sym_i64] = ACTIONS(1098), - [anon_sym_u128] = ACTIONS(1098), - [anon_sym_i128] = ACTIONS(1098), - [anon_sym_isize] = ACTIONS(1098), - [anon_sym_usize] = ACTIONS(1098), - [anon_sym_f32] = ACTIONS(1098), - [anon_sym_f64] = ACTIONS(1098), - [anon_sym_bool] = ACTIONS(1098), - [anon_sym_str] = ACTIONS(1098), - [anon_sym_char] = ACTIONS(1098), - [anon_sym_SQUOTE] = ACTIONS(1098), - [anon_sym_async] = ACTIONS(1098), - [anon_sym_break] = ACTIONS(1098), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_continue] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1098), - [anon_sym_enum] = ACTIONS(1098), - [anon_sym_fn] = ACTIONS(1098), - [anon_sym_for] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1098), - [anon_sym_impl] = ACTIONS(1098), - [anon_sym_let] = ACTIONS(1098), - [anon_sym_loop] = ACTIONS(1098), - [anon_sym_match] = ACTIONS(1098), - [anon_sym_mod] = ACTIONS(1098), - [anon_sym_pub] = ACTIONS(1098), - [anon_sym_return] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_struct] = ACTIONS(1098), - [anon_sym_trait] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_union] = ACTIONS(1098), - [anon_sym_unsafe] = ACTIONS(1098), - [anon_sym_use] = ACTIONS(1098), - [anon_sym_while] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_AMP] = ACTIONS(1096), - [anon_sym_DOT_DOT] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_yield] = ACTIONS(1098), - [anon_sym_move] = ACTIONS(1098), - [sym_integer_literal] = ACTIONS(1096), - [aux_sym_string_literal_token1] = ACTIONS(1096), - [sym_char_literal] = ACTIONS(1096), - [anon_sym_true] = ACTIONS(1098), - [anon_sym_false] = ACTIONS(1098), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1098), - [sym_super] = ACTIONS(1098), - [sym_crate] = ACTIONS(1098), - [sym_metavariable] = ACTIONS(1096), - [sym_raw_string_literal] = ACTIONS(1096), - [sym_float_literal] = ACTIONS(1096), + [256] = { + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_macro_rules_BANG] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [anon_sym_u8] = ACTIONS(1088), + [anon_sym_i8] = ACTIONS(1088), + [anon_sym_u16] = ACTIONS(1088), + [anon_sym_i16] = ACTIONS(1088), + [anon_sym_u32] = ACTIONS(1088), + [anon_sym_i32] = ACTIONS(1088), + [anon_sym_u64] = ACTIONS(1088), + [anon_sym_i64] = ACTIONS(1088), + [anon_sym_u128] = ACTIONS(1088), + [anon_sym_i128] = ACTIONS(1088), + [anon_sym_isize] = ACTIONS(1088), + [anon_sym_usize] = ACTIONS(1088), + [anon_sym_f32] = ACTIONS(1088), + [anon_sym_f64] = ACTIONS(1088), + [anon_sym_bool] = ACTIONS(1088), + [anon_sym_str] = ACTIONS(1088), + [anon_sym_char] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_fn] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_impl] = ACTIONS(1088), + [anon_sym_let] = ACTIONS(1088), + [anon_sym_loop] = ACTIONS(1088), + [anon_sym_match] = ACTIONS(1088), + [anon_sym_mod] = ACTIONS(1088), + [anon_sym_pub] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_trait] = ACTIONS(1088), + [anon_sym_type] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_DOT_DOT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1088), + [anon_sym_move] = ACTIONS(1088), + [sym_integer_literal] = ACTIONS(1086), + [aux_sym_string_literal_token1] = ACTIONS(1086), + [sym_char_literal] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1088), + [anon_sym_false] = ACTIONS(1088), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1088), + [sym_super] = ACTIONS(1088), + [sym_crate] = ACTIONS(1088), + [sym_metavariable] = ACTIONS(1086), + [sym_raw_string_literal] = ACTIONS(1086), + [sym_float_literal] = ACTIONS(1086), [sym_block_comment] = ACTIONS(3), }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1100), - [sym_identifier] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_macro_rules_BANG] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_u8] = ACTIONS(1102), - [anon_sym_i8] = ACTIONS(1102), - [anon_sym_u16] = ACTIONS(1102), - [anon_sym_i16] = ACTIONS(1102), - [anon_sym_u32] = ACTIONS(1102), - [anon_sym_i32] = ACTIONS(1102), - [anon_sym_u64] = ACTIONS(1102), - [anon_sym_i64] = ACTIONS(1102), - [anon_sym_u128] = ACTIONS(1102), - [anon_sym_i128] = ACTIONS(1102), - [anon_sym_isize] = ACTIONS(1102), - [anon_sym_usize] = ACTIONS(1102), - [anon_sym_f32] = ACTIONS(1102), - [anon_sym_f64] = ACTIONS(1102), - [anon_sym_bool] = ACTIONS(1102), - [anon_sym_str] = ACTIONS(1102), - [anon_sym_char] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_async] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_impl] = ACTIONS(1102), - [anon_sym_let] = ACTIONS(1102), - [anon_sym_loop] = ACTIONS(1102), - [anon_sym_match] = ACTIONS(1102), - [anon_sym_mod] = ACTIONS(1102), - [anon_sym_pub] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_trait] = ACTIONS(1102), - [anon_sym_type] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1102), - [anon_sym_use] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_POUND] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_COLON_COLON] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1100), - [anon_sym_DOT_DOT] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_move] = ACTIONS(1102), - [sym_integer_literal] = ACTIONS(1100), - [aux_sym_string_literal_token1] = ACTIONS(1100), - [sym_char_literal] = ACTIONS(1100), - [anon_sym_true] = ACTIONS(1102), - [anon_sym_false] = ACTIONS(1102), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1102), - [sym_super] = ACTIONS(1102), - [sym_crate] = ACTIONS(1102), - [sym_metavariable] = ACTIONS(1100), - [sym_raw_string_literal] = ACTIONS(1100), - [sym_float_literal] = ACTIONS(1100), + [257] = { + [ts_builtin_sym_end] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_macro_rules_BANG] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_u8] = ACTIONS(1092), + [anon_sym_i8] = ACTIONS(1092), + [anon_sym_u16] = ACTIONS(1092), + [anon_sym_i16] = ACTIONS(1092), + [anon_sym_u32] = ACTIONS(1092), + [anon_sym_i32] = ACTIONS(1092), + [anon_sym_u64] = ACTIONS(1092), + [anon_sym_i64] = ACTIONS(1092), + [anon_sym_u128] = ACTIONS(1092), + [anon_sym_i128] = ACTIONS(1092), + [anon_sym_isize] = ACTIONS(1092), + [anon_sym_usize] = ACTIONS(1092), + [anon_sym_f32] = ACTIONS(1092), + [anon_sym_f64] = ACTIONS(1092), + [anon_sym_bool] = ACTIONS(1092), + [anon_sym_str] = ACTIONS(1092), + [anon_sym_char] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_async] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_impl] = ACTIONS(1092), + [anon_sym_let] = ACTIONS(1092), + [anon_sym_loop] = ACTIONS(1092), + [anon_sym_match] = ACTIONS(1092), + [anon_sym_mod] = ACTIONS(1092), + [anon_sym_pub] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_trait] = ACTIONS(1092), + [anon_sym_type] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1092), + [anon_sym_use] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_yield] = ACTIONS(1092), + [anon_sym_move] = ACTIONS(1092), + [sym_integer_literal] = ACTIONS(1090), + [aux_sym_string_literal_token1] = ACTIONS(1090), + [sym_char_literal] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1092), + [anon_sym_false] = ACTIONS(1092), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1092), + [sym_super] = ACTIONS(1092), + [sym_crate] = ACTIONS(1092), + [sym_metavariable] = ACTIONS(1090), + [sym_raw_string_literal] = ACTIONS(1090), + [sym_float_literal] = ACTIONS(1090), [sym_block_comment] = ACTIONS(3), }, - [268] = { - [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), + [258] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [269] = { - [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), + [259] = { + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_macro_rules_BANG] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_u8] = ACTIONS(1100), + [anon_sym_i8] = ACTIONS(1100), + [anon_sym_u16] = ACTIONS(1100), + [anon_sym_i16] = ACTIONS(1100), + [anon_sym_u32] = ACTIONS(1100), + [anon_sym_i32] = ACTIONS(1100), + [anon_sym_u64] = ACTIONS(1100), + [anon_sym_i64] = ACTIONS(1100), + [anon_sym_u128] = ACTIONS(1100), + [anon_sym_i128] = ACTIONS(1100), + [anon_sym_isize] = ACTIONS(1100), + [anon_sym_usize] = ACTIONS(1100), + [anon_sym_f32] = ACTIONS(1100), + [anon_sym_f64] = ACTIONS(1100), + [anon_sym_bool] = ACTIONS(1100), + [anon_sym_str] = ACTIONS(1100), + [anon_sym_char] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_fn] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_let] = ACTIONS(1100), + [anon_sym_loop] = ACTIONS(1100), + [anon_sym_match] = ACTIONS(1100), + [anon_sym_mod] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_trait] = ACTIONS(1100), + [anon_sym_type] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1100), + [anon_sym_use] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(1098), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_DOT_DOT] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1098), + [anon_sym_yield] = ACTIONS(1100), + [anon_sym_move] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1098), + [aux_sym_string_literal_token1] = ACTIONS(1098), + [sym_char_literal] = ACTIONS(1098), + [anon_sym_true] = ACTIONS(1100), + [anon_sym_false] = ACTIONS(1100), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1100), + [sym_crate] = ACTIONS(1100), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1098), + [sym_float_literal] = ACTIONS(1098), [sym_block_comment] = ACTIONS(3), }, - [270] = { - [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), + [260] = { + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_macro_rules_BANG] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_u8] = ACTIONS(1104), + [anon_sym_i8] = ACTIONS(1104), + [anon_sym_u16] = ACTIONS(1104), + [anon_sym_i16] = ACTIONS(1104), + [anon_sym_u32] = ACTIONS(1104), + [anon_sym_i32] = ACTIONS(1104), + [anon_sym_u64] = ACTIONS(1104), + [anon_sym_i64] = ACTIONS(1104), + [anon_sym_u128] = ACTIONS(1104), + [anon_sym_i128] = ACTIONS(1104), + [anon_sym_isize] = ACTIONS(1104), + [anon_sym_usize] = ACTIONS(1104), + [anon_sym_f32] = ACTIONS(1104), + [anon_sym_f64] = ACTIONS(1104), + [anon_sym_bool] = ACTIONS(1104), + [anon_sym_str] = ACTIONS(1104), + [anon_sym_char] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_async] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_fn] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_impl] = ACTIONS(1104), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_loop] = ACTIONS(1104), + [anon_sym_match] = ACTIONS(1104), + [anon_sym_mod] = ACTIONS(1104), + [anon_sym_pub] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_trait] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_unsafe] = ACTIONS(1104), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_COLON_COLON] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_DOT_DOT] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_yield] = ACTIONS(1104), + [anon_sym_move] = ACTIONS(1104), + [sym_integer_literal] = ACTIONS(1102), + [aux_sym_string_literal_token1] = ACTIONS(1102), + [sym_char_literal] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1104), + [sym_super] = ACTIONS(1104), + [sym_crate] = ACTIONS(1104), + [sym_metavariable] = ACTIONS(1102), + [sym_raw_string_literal] = ACTIONS(1102), + [sym_float_literal] = ACTIONS(1102), [sym_block_comment] = ACTIONS(3), }, - [271] = { - [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), + [261] = { + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_macro_rules_BANG] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_u8] = ACTIONS(1108), + [anon_sym_i8] = ACTIONS(1108), + [anon_sym_u16] = ACTIONS(1108), + [anon_sym_i16] = ACTIONS(1108), + [anon_sym_u32] = ACTIONS(1108), + [anon_sym_i32] = ACTIONS(1108), + [anon_sym_u64] = ACTIONS(1108), + [anon_sym_i64] = ACTIONS(1108), + [anon_sym_u128] = ACTIONS(1108), + [anon_sym_i128] = ACTIONS(1108), + [anon_sym_isize] = ACTIONS(1108), + [anon_sym_usize] = ACTIONS(1108), + [anon_sym_f32] = ACTIONS(1108), + [anon_sym_f64] = ACTIONS(1108), + [anon_sym_bool] = ACTIONS(1108), + [anon_sym_str] = ACTIONS(1108), + [anon_sym_char] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_fn] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_impl] = ACTIONS(1108), + [anon_sym_let] = ACTIONS(1108), + [anon_sym_loop] = ACTIONS(1108), + [anon_sym_match] = ACTIONS(1108), + [anon_sym_mod] = ACTIONS(1108), + [anon_sym_pub] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_trait] = ACTIONS(1108), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_unsafe] = ACTIONS(1108), + [anon_sym_use] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_POUND] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_COLON_COLON] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_DOT_DOT] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_move] = ACTIONS(1108), + [sym_integer_literal] = ACTIONS(1106), + [aux_sym_string_literal_token1] = ACTIONS(1106), + [sym_char_literal] = ACTIONS(1106), + [anon_sym_true] = ACTIONS(1108), + [anon_sym_false] = ACTIONS(1108), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), + [sym_crate] = ACTIONS(1108), + [sym_metavariable] = ACTIONS(1106), + [sym_raw_string_literal] = ACTIONS(1106), + [sym_float_literal] = ACTIONS(1106), [sym_block_comment] = ACTIONS(3), }, - [272] = { - [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), + [262] = { + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_macro_rules_BANG] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_u8] = ACTIONS(1112), + [anon_sym_i8] = ACTIONS(1112), + [anon_sym_u16] = ACTIONS(1112), + [anon_sym_i16] = ACTIONS(1112), + [anon_sym_u32] = ACTIONS(1112), + [anon_sym_i32] = ACTIONS(1112), + [anon_sym_u64] = ACTIONS(1112), + [anon_sym_i64] = ACTIONS(1112), + [anon_sym_u128] = ACTIONS(1112), + [anon_sym_i128] = ACTIONS(1112), + [anon_sym_isize] = ACTIONS(1112), + [anon_sym_usize] = ACTIONS(1112), + [anon_sym_f32] = ACTIONS(1112), + [anon_sym_f64] = ACTIONS(1112), + [anon_sym_bool] = ACTIONS(1112), + [anon_sym_str] = ACTIONS(1112), + [anon_sym_char] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_fn] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_impl] = ACTIONS(1112), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_loop] = ACTIONS(1112), + [anon_sym_match] = ACTIONS(1112), + [anon_sym_mod] = ACTIONS(1112), + [anon_sym_pub] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_trait] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_unsafe] = ACTIONS(1112), + [anon_sym_use] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_COLON_COLON] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_DOT_DOT] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_yield] = ACTIONS(1112), + [anon_sym_move] = ACTIONS(1112), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1110), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1112), + [sym_super] = ACTIONS(1112), + [sym_crate] = ACTIONS(1112), + [sym_metavariable] = ACTIONS(1110), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), [sym_block_comment] = ACTIONS(3), }, - [273] = { - [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), + [263] = { + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_macro_rules_BANG] = ACTIONS(1114), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_u8] = ACTIONS(1116), + [anon_sym_i8] = ACTIONS(1116), + [anon_sym_u16] = ACTIONS(1116), + [anon_sym_i16] = ACTIONS(1116), + [anon_sym_u32] = ACTIONS(1116), + [anon_sym_i32] = ACTIONS(1116), + [anon_sym_u64] = ACTIONS(1116), + [anon_sym_i64] = ACTIONS(1116), + [anon_sym_u128] = ACTIONS(1116), + [anon_sym_i128] = ACTIONS(1116), + [anon_sym_isize] = ACTIONS(1116), + [anon_sym_usize] = ACTIONS(1116), + [anon_sym_f32] = ACTIONS(1116), + [anon_sym_f64] = ACTIONS(1116), + [anon_sym_bool] = ACTIONS(1116), + [anon_sym_str] = ACTIONS(1116), + [anon_sym_char] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_async] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_fn] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_impl] = ACTIONS(1116), + [anon_sym_let] = ACTIONS(1116), + [anon_sym_loop] = ACTIONS(1116), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_mod] = ACTIONS(1116), + [anon_sym_pub] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_trait] = ACTIONS(1116), + [anon_sym_type] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_unsafe] = ACTIONS(1116), + [anon_sym_use] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_POUND] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym_LT] = ACTIONS(1114), + [anon_sym_COLON_COLON] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_DOT_DOT] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_yield] = ACTIONS(1116), + [anon_sym_move] = ACTIONS(1116), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1116), + [sym_super] = ACTIONS(1116), + [sym_crate] = ACTIONS(1116), + [sym_metavariable] = ACTIONS(1114), + [sym_raw_string_literal] = ACTIONS(1114), + [sym_float_literal] = ACTIONS(1114), [sym_block_comment] = ACTIONS(3), }, - [274] = { - [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), + [264] = { + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_macro_rules_BANG] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_u8] = ACTIONS(1120), + [anon_sym_i8] = ACTIONS(1120), + [anon_sym_u16] = ACTIONS(1120), + [anon_sym_i16] = ACTIONS(1120), + [anon_sym_u32] = ACTIONS(1120), + [anon_sym_i32] = ACTIONS(1120), + [anon_sym_u64] = ACTIONS(1120), + [anon_sym_i64] = ACTIONS(1120), + [anon_sym_u128] = ACTIONS(1120), + [anon_sym_i128] = ACTIONS(1120), + [anon_sym_isize] = ACTIONS(1120), + [anon_sym_usize] = ACTIONS(1120), + [anon_sym_f32] = ACTIONS(1120), + [anon_sym_f64] = ACTIONS(1120), + [anon_sym_bool] = ACTIONS(1120), + [anon_sym_str] = ACTIONS(1120), + [anon_sym_char] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_fn] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_impl] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(1120), + [anon_sym_loop] = ACTIONS(1120), + [anon_sym_match] = ACTIONS(1120), + [anon_sym_mod] = ACTIONS(1120), + [anon_sym_pub] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_trait] = ACTIONS(1120), + [anon_sym_type] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_unsafe] = ACTIONS(1120), + [anon_sym_use] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_POUND] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1118), + [anon_sym_COLON_COLON] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_DOT_DOT] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PIPE] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_move] = ACTIONS(1120), + [sym_integer_literal] = ACTIONS(1118), + [aux_sym_string_literal_token1] = ACTIONS(1118), + [sym_char_literal] = ACTIONS(1118), + [anon_sym_true] = ACTIONS(1120), + [anon_sym_false] = ACTIONS(1120), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1118), + [sym_raw_string_literal] = ACTIONS(1118), + [sym_float_literal] = ACTIONS(1118), [sym_block_comment] = ACTIONS(3), }, - [275] = { - [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), + [265] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [276] = { - [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), + [266] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [277] = { - [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), + [267] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_macro_rules_BANG] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_u8] = ACTIONS(542), - [anon_sym_i8] = ACTIONS(542), - [anon_sym_u16] = ACTIONS(542), - [anon_sym_i16] = ACTIONS(542), - [anon_sym_u32] = ACTIONS(542), - [anon_sym_i32] = ACTIONS(542), - [anon_sym_u64] = ACTIONS(542), - [anon_sym_i64] = ACTIONS(542), - [anon_sym_u128] = ACTIONS(542), - [anon_sym_i128] = ACTIONS(542), - [anon_sym_isize] = ACTIONS(542), - [anon_sym_usize] = ACTIONS(542), - [anon_sym_f32] = ACTIONS(542), - [anon_sym_f64] = ACTIONS(542), - [anon_sym_bool] = ACTIONS(542), - [anon_sym_str] = ACTIONS(542), - [anon_sym_char] = ACTIONS(542), - [anon_sym_SQUOTE] = ACTIONS(542), - [anon_sym_async] = ACTIONS(542), - [anon_sym_break] = ACTIONS(542), - [anon_sym_const] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(542), - [anon_sym_default] = ACTIONS(542), - [anon_sym_enum] = ACTIONS(542), - [anon_sym_fn] = ACTIONS(542), - [anon_sym_for] = ACTIONS(542), - [anon_sym_if] = ACTIONS(542), - [anon_sym_impl] = ACTIONS(542), - [anon_sym_let] = ACTIONS(542), - [anon_sym_loop] = ACTIONS(542), - [anon_sym_match] = ACTIONS(542), - [anon_sym_mod] = ACTIONS(542), - [anon_sym_pub] = ACTIONS(542), - [anon_sym_return] = ACTIONS(542), - [anon_sym_static] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(542), - [anon_sym_trait] = ACTIONS(542), - [anon_sym_type] = ACTIONS(542), - [anon_sym_union] = ACTIONS(542), - [anon_sym_unsafe] = ACTIONS(542), - [anon_sym_use] = ACTIONS(542), - [anon_sym_while] = ACTIONS(542), - [anon_sym_POUND] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_COLON_COLON] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_DOT_DOT] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_yield] = ACTIONS(542), - [anon_sym_move] = ACTIONS(542), - [sym_integer_literal] = ACTIONS(540), - [aux_sym_string_literal_token1] = ACTIONS(540), - [sym_char_literal] = ACTIONS(540), - [anon_sym_true] = ACTIONS(542), - [anon_sym_false] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(542), - [sym_super] = ACTIONS(542), - [sym_crate] = ACTIONS(542), - [sym_metavariable] = ACTIONS(540), - [sym_raw_string_literal] = ACTIONS(540), - [sym_float_literal] = ACTIONS(540), + [268] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [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), + [269] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(516), - [sym_identifier] = ACTIONS(518), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_macro_rules_BANG] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_u8] = ACTIONS(518), - [anon_sym_i8] = ACTIONS(518), - [anon_sym_u16] = ACTIONS(518), - [anon_sym_i16] = ACTIONS(518), - [anon_sym_u32] = ACTIONS(518), - [anon_sym_i32] = ACTIONS(518), - [anon_sym_u64] = ACTIONS(518), - [anon_sym_i64] = ACTIONS(518), - [anon_sym_u128] = ACTIONS(518), - [anon_sym_i128] = ACTIONS(518), - [anon_sym_isize] = ACTIONS(518), - [anon_sym_usize] = ACTIONS(518), - [anon_sym_f32] = ACTIONS(518), - [anon_sym_f64] = ACTIONS(518), - [anon_sym_bool] = ACTIONS(518), - [anon_sym_str] = ACTIONS(518), - [anon_sym_char] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(518), - [anon_sym_async] = ACTIONS(518), - [anon_sym_break] = ACTIONS(518), - [anon_sym_const] = ACTIONS(518), - [anon_sym_continue] = ACTIONS(518), - [anon_sym_default] = ACTIONS(518), - [anon_sym_enum] = ACTIONS(518), - [anon_sym_fn] = ACTIONS(518), - [anon_sym_for] = ACTIONS(518), - [anon_sym_if] = ACTIONS(518), - [anon_sym_impl] = ACTIONS(518), - [anon_sym_let] = ACTIONS(518), - [anon_sym_loop] = ACTIONS(518), - [anon_sym_match] = ACTIONS(518), - [anon_sym_mod] = ACTIONS(518), - [anon_sym_pub] = ACTIONS(518), - [anon_sym_return] = ACTIONS(518), - [anon_sym_static] = ACTIONS(518), - [anon_sym_struct] = ACTIONS(518), - [anon_sym_trait] = ACTIONS(518), - [anon_sym_type] = ACTIONS(518), - [anon_sym_union] = ACTIONS(518), - [anon_sym_unsafe] = ACTIONS(518), - [anon_sym_use] = ACTIONS(518), - [anon_sym_while] = ACTIONS(518), - [anon_sym_POUND] = ACTIONS(516), - [anon_sym_BANG] = ACTIONS(516), - [anon_sym_extern] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(516), - [anon_sym_COLON_COLON] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(516), - [anon_sym_yield] = ACTIONS(518), - [anon_sym_move] = ACTIONS(518), - [sym_integer_literal] = ACTIONS(516), - [aux_sym_string_literal_token1] = ACTIONS(516), - [sym_char_literal] = ACTIONS(516), - [anon_sym_true] = ACTIONS(518), - [anon_sym_false] = ACTIONS(518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(518), - [sym_super] = ACTIONS(518), - [sym_crate] = ACTIONS(518), - [sym_metavariable] = ACTIONS(516), - [sym_raw_string_literal] = ACTIONS(516), - [sym_float_literal] = ACTIONS(516), + [270] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [281] = { - [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), + [271] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [282] = { - [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), + [272] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [283] = { - [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), + [273] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [284] = { - [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), + [274] = { + [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), [sym_block_comment] = ACTIONS(3), }, - [285] = { - [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), + [275] = { + [ts_builtin_sym_end] = ACTIONS(1162), + [sym_identifier] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_macro_rules_BANG] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_u8] = ACTIONS(1164), + [anon_sym_i8] = ACTIONS(1164), + [anon_sym_u16] = ACTIONS(1164), + [anon_sym_i16] = ACTIONS(1164), + [anon_sym_u32] = ACTIONS(1164), + [anon_sym_i32] = ACTIONS(1164), + [anon_sym_u64] = ACTIONS(1164), + [anon_sym_i64] = ACTIONS(1164), + [anon_sym_u128] = ACTIONS(1164), + [anon_sym_i128] = ACTIONS(1164), + [anon_sym_isize] = ACTIONS(1164), + [anon_sym_usize] = ACTIONS(1164), + [anon_sym_f32] = ACTIONS(1164), + [anon_sym_f64] = ACTIONS(1164), + [anon_sym_bool] = ACTIONS(1164), + [anon_sym_str] = ACTIONS(1164), + [anon_sym_char] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_const] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_enum] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_impl] = ACTIONS(1164), + [anon_sym_let] = ACTIONS(1164), + [anon_sym_loop] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_mod] = ACTIONS(1164), + [anon_sym_pub] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_trait] = ACTIONS(1164), + [anon_sym_type] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), + [anon_sym_unsafe] = ACTIONS(1164), + [anon_sym_use] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_move] = ACTIONS(1164), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1162), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1164), + [sym_super] = ACTIONS(1164), + [sym_crate] = ACTIONS(1164), + [sym_metavariable] = ACTIONS(1162), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_identifier] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_macro_rules_BANG] = ACTIONS(1168), + [276] = { + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_match_arm] = STATE(510), + [sym_last_match_arm] = STATE(2380), + [sym_match_pattern] = STATE(2518), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1908), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(1166), [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_fn] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_impl] = ACTIONS(1170), - [anon_sym_let] = ACTIONS(1170), - [anon_sym_loop] = ACTIONS(1170), - [anon_sym_match] = ACTIONS(1170), - [anon_sym_mod] = ACTIONS(1170), - [anon_sym_pub] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_trait] = ACTIONS(1170), - [anon_sym_type] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_unsafe] = ACTIONS(1170), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_POUND] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_COLON_COLON] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_yield] = ACTIONS(1170), - [anon_sym_move] = ACTIONS(1170), - [sym_integer_literal] = ACTIONS(1168), - [aux_sym_string_literal_token1] = ACTIONS(1168), - [sym_char_literal] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1168), - [sym_float_literal] = ACTIONS(1168), - [sym_block_comment] = ACTIONS(3), - }, - [287] = { - [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_RBRACE] = ACTIONS(1170), [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), @@ -48446,365 +46088,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1174), [anon_sym_str] = ACTIONS(1174), [anon_sym_char] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_async] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_fn] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_impl] = ACTIONS(1174), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_loop] = ACTIONS(1174), - [anon_sym_match] = ACTIONS(1174), - [anon_sym_mod] = ACTIONS(1174), - [anon_sym_pub] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_trait] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_unsafe] = ACTIONS(1174), - [anon_sym_use] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_POUND] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym_LT] = ACTIONS(1172), - [anon_sym_COLON_COLON] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_move] = ACTIONS(1174), - [sym_integer_literal] = ACTIONS(1172), - [aux_sym_string_literal_token1] = ACTIONS(1172), - [sym_char_literal] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1174), - [anon_sym_false] = ACTIONS(1174), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1174), - [sym_super] = ACTIONS(1174), - [sym_crate] = ACTIONS(1174), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(1172), - [sym_float_literal] = ACTIONS(1172), - [sym_block_comment] = ACTIONS(3), - }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(536), - [sym_identifier] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_macro_rules_BANG] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_STAR] = ACTIONS(536), - [anon_sym_u8] = ACTIONS(538), - [anon_sym_i8] = ACTIONS(538), - [anon_sym_u16] = ACTIONS(538), - [anon_sym_i16] = ACTIONS(538), - [anon_sym_u32] = ACTIONS(538), - [anon_sym_i32] = ACTIONS(538), - [anon_sym_u64] = ACTIONS(538), - [anon_sym_i64] = ACTIONS(538), - [anon_sym_u128] = ACTIONS(538), - [anon_sym_i128] = ACTIONS(538), - [anon_sym_isize] = ACTIONS(538), - [anon_sym_usize] = ACTIONS(538), - [anon_sym_f32] = ACTIONS(538), - [anon_sym_f64] = ACTIONS(538), - [anon_sym_bool] = ACTIONS(538), - [anon_sym_str] = ACTIONS(538), - [anon_sym_char] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_async] = ACTIONS(538), - [anon_sym_break] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(538), - [anon_sym_fn] = ACTIONS(538), - [anon_sym_for] = ACTIONS(538), - [anon_sym_if] = ACTIONS(538), - [anon_sym_impl] = ACTIONS(538), - [anon_sym_let] = ACTIONS(538), - [anon_sym_loop] = ACTIONS(538), - [anon_sym_match] = ACTIONS(538), - [anon_sym_mod] = ACTIONS(538), - [anon_sym_pub] = ACTIONS(538), - [anon_sym_return] = ACTIONS(538), - [anon_sym_static] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(538), - [anon_sym_trait] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_union] = ACTIONS(538), - [anon_sym_unsafe] = ACTIONS(538), - [anon_sym_use] = ACTIONS(538), - [anon_sym_while] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(536), - [anon_sym_extern] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(536), - [anon_sym_COLON_COLON] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(538), - [anon_sym_move] = ACTIONS(538), - [sym_integer_literal] = ACTIONS(536), - [aux_sym_string_literal_token1] = ACTIONS(536), - [sym_char_literal] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_crate] = ACTIONS(538), - [sym_metavariable] = ACTIONS(536), - [sym_raw_string_literal] = ACTIONS(536), - [sym_float_literal] = ACTIONS(536), - [sym_block_comment] = ACTIONS(3), - }, - [289] = { - [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_const] = ACTIONS(1176), [anon_sym_default] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_impl] = ACTIONS(1178), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_loop] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_mod] = ACTIONS(1178), - [anon_sym_pub] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_trait] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), [anon_sym_union] = ACTIONS(1178), - [anon_sym_unsafe] = ACTIONS(1178), - [anon_sym_use] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_POUND] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_move] = ACTIONS(1178), - [sym_integer_literal] = ACTIONS(1176), - [aux_sym_string_literal_token1] = ACTIONS(1176), - [sym_char_literal] = ACTIONS(1176), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1178), - [sym_super] = ACTIONS(1178), - [sym_crate] = ACTIONS(1178), - [sym_metavariable] = ACTIONS(1176), - [sym_raw_string_literal] = ACTIONS(1176), - [sym_float_literal] = ACTIONS(1176), - [sym_block_comment] = ACTIONS(3), - }, - [290] = { - [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_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), [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), - }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1184), - [sym_identifier] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_macro_rules_BANG] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_u8] = ACTIONS(1186), - [anon_sym_i8] = ACTIONS(1186), - [anon_sym_u16] = ACTIONS(1186), - [anon_sym_i16] = ACTIONS(1186), - [anon_sym_u32] = ACTIONS(1186), - [anon_sym_i32] = ACTIONS(1186), - [anon_sym_u64] = ACTIONS(1186), - [anon_sym_i64] = ACTIONS(1186), - [anon_sym_u128] = ACTIONS(1186), - [anon_sym_i128] = ACTIONS(1186), - [anon_sym_isize] = ACTIONS(1186), - [anon_sym_usize] = ACTIONS(1186), - [anon_sym_f32] = ACTIONS(1186), - [anon_sym_f64] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_str] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_impl] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_pub] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_trait] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_unsafe] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_COLON_COLON] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_DOT_DOT] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1186), - [anon_sym_move] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1184), - [aux_sym_string_literal_token1] = ACTIONS(1184), - [sym_char_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1186), - [sym_super] = ACTIONS(1186), - [sym_crate] = ACTIONS(1186), - [sym_metavariable] = ACTIONS(1184), - [sym_raw_string_literal] = ACTIONS(1184), - [sym_float_literal] = ACTIONS(1184), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), + [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(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [292] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1188), [sym_identifier] = ACTIONS(1190), [anon_sym_SEMI] = ACTIONS(1188), @@ -48881,7 +46191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1188), [sym_block_comment] = ACTIONS(3), }, - [293] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1192), [sym_identifier] = ACTIONS(1194), [anon_sym_SEMI] = ACTIONS(1192), @@ -48958,7 +46268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1192), [sym_block_comment] = ACTIONS(3), }, - [294] = { + [279] = { [ts_builtin_sym_end] = ACTIONS(1196), [sym_identifier] = ACTIONS(1198), [anon_sym_SEMI] = ACTIONS(1196), @@ -49035,7 +46345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1196), [sym_block_comment] = ACTIONS(3), }, - [295] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1200), [sym_identifier] = ACTIONS(1202), [anon_sym_SEMI] = ACTIONS(1200), @@ -49112,7 +46422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1200), [sym_block_comment] = ACTIONS(3), }, - [296] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1204), [sym_identifier] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(1204), @@ -49189,7 +46499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1204), [sym_block_comment] = ACTIONS(3), }, - [297] = { + [282] = { [ts_builtin_sym_end] = ACTIONS(1208), [sym_identifier] = ACTIONS(1210), [anon_sym_SEMI] = ACTIONS(1208), @@ -49266,7 +46576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1208), [sym_block_comment] = ACTIONS(3), }, - [298] = { + [283] = { [ts_builtin_sym_end] = ACTIONS(1212), [sym_identifier] = ACTIONS(1214), [anon_sym_SEMI] = ACTIONS(1212), @@ -49343,7 +46653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1212), [sym_block_comment] = ACTIONS(3), }, - [299] = { + [284] = { [ts_builtin_sym_end] = ACTIONS(1216), [sym_identifier] = ACTIONS(1218), [anon_sym_SEMI] = ACTIONS(1216), @@ -49420,7 +46730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1216), [sym_block_comment] = ACTIONS(3), }, - [300] = { + [285] = { [ts_builtin_sym_end] = ACTIONS(1220), [sym_identifier] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1220), @@ -49497,7 +46807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1220), [sym_block_comment] = ACTIONS(3), }, - [301] = { + [286] = { [ts_builtin_sym_end] = ACTIONS(1224), [sym_identifier] = ACTIONS(1226), [anon_sym_SEMI] = ACTIONS(1224), @@ -49574,7 +46884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1224), [sym_block_comment] = ACTIONS(3), }, - [302] = { + [287] = { [ts_builtin_sym_end] = ACTIONS(1228), [sym_identifier] = ACTIONS(1230), [anon_sym_SEMI] = ACTIONS(1228), @@ -49651,7 +46961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1228), [sym_block_comment] = ACTIONS(3), }, - [303] = { + [288] = { [ts_builtin_sym_end] = ACTIONS(1232), [sym_identifier] = ACTIONS(1234), [anon_sym_SEMI] = ACTIONS(1232), @@ -49728,7 +47038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1232), [sym_block_comment] = ACTIONS(3), }, - [304] = { + [289] = { [ts_builtin_sym_end] = ACTIONS(1236), [sym_identifier] = ACTIONS(1238), [anon_sym_SEMI] = ACTIONS(1236), @@ -49805,7 +47115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1236), [sym_block_comment] = ACTIONS(3), }, - [305] = { + [290] = { [ts_builtin_sym_end] = ACTIONS(1240), [sym_identifier] = ACTIONS(1242), [anon_sym_SEMI] = ACTIONS(1240), @@ -49882,7 +47192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1240), [sym_block_comment] = ACTIONS(3), }, - [306] = { + [291] = { [ts_builtin_sym_end] = ACTIONS(1244), [sym_identifier] = ACTIONS(1246), [anon_sym_SEMI] = ACTIONS(1244), @@ -49959,7 +47269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [307] = { + [292] = { [ts_builtin_sym_end] = ACTIONS(1248), [sym_identifier] = ACTIONS(1250), [anon_sym_SEMI] = ACTIONS(1248), @@ -50036,4165 +47346,4473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1248), [sym_block_comment] = ACTIONS(3), }, - [308] = { - [sym_attribute_item] = STATE(566), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_match_arm] = STATE(505), - [sym_last_match_arm] = STATE(2489), - [sym_match_pattern] = STATE(2472), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2151), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_enum_variant_list_repeat1] = STATE(566), - [aux_sym_match_block_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), + [293] = { + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_macro_rules_BANG] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u128] = ACTIONS(1254), + [anon_sym_i128] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_str] = ACTIONS(1254), + [anon_sym_char] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_async] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_fn] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_impl] = ACTIONS(1254), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_loop] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1254), + [anon_sym_pub] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_trait] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_unsafe] = ACTIONS(1254), + [anon_sym_use] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_move] = ACTIONS(1254), + [sym_integer_literal] = ACTIONS(1252), + [aux_sym_string_literal_token1] = ACTIONS(1252), + [sym_char_literal] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_crate] = ACTIONS(1254), + [sym_metavariable] = ACTIONS(1252), + [sym_raw_string_literal] = ACTIONS(1252), + [sym_float_literal] = ACTIONS(1252), + [sym_block_comment] = ACTIONS(3), + }, + [294] = { + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_macro_rules_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1258), + [anon_sym_i8] = ACTIONS(1258), + [anon_sym_u16] = ACTIONS(1258), + [anon_sym_i16] = ACTIONS(1258), + [anon_sym_u32] = ACTIONS(1258), + [anon_sym_i32] = ACTIONS(1258), + [anon_sym_u64] = ACTIONS(1258), + [anon_sym_i64] = ACTIONS(1258), + [anon_sym_u128] = ACTIONS(1258), + [anon_sym_i128] = ACTIONS(1258), + [anon_sym_isize] = ACTIONS(1258), + [anon_sym_usize] = ACTIONS(1258), + [anon_sym_f32] = ACTIONS(1258), + [anon_sym_f64] = ACTIONS(1258), + [anon_sym_bool] = ACTIONS(1258), + [anon_sym_str] = ACTIONS(1258), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_fn] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_impl] = ACTIONS(1258), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_loop] = ACTIONS(1258), + [anon_sym_match] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1258), + [anon_sym_pub] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_trait] = ACTIONS(1258), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_unsafe] = ACTIONS(1258), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_POUND] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_move] = ACTIONS(1258), + [sym_integer_literal] = ACTIONS(1256), + [aux_sym_string_literal_token1] = ACTIONS(1256), + [sym_char_literal] = ACTIONS(1256), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_crate] = ACTIONS(1258), + [sym_metavariable] = ACTIONS(1256), + [sym_raw_string_literal] = ACTIONS(1256), + [sym_float_literal] = ACTIONS(1256), + [sym_block_comment] = ACTIONS(3), + }, + [295] = { + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_macro_rules_BANG] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_u8] = ACTIONS(1262), + [anon_sym_i8] = ACTIONS(1262), + [anon_sym_u16] = ACTIONS(1262), + [anon_sym_i16] = ACTIONS(1262), + [anon_sym_u32] = ACTIONS(1262), + [anon_sym_i32] = ACTIONS(1262), + [anon_sym_u64] = ACTIONS(1262), + [anon_sym_i64] = ACTIONS(1262), + [anon_sym_u128] = ACTIONS(1262), + [anon_sym_i128] = ACTIONS(1262), + [anon_sym_isize] = ACTIONS(1262), + [anon_sym_usize] = ACTIONS(1262), + [anon_sym_f32] = ACTIONS(1262), + [anon_sym_f64] = ACTIONS(1262), + [anon_sym_bool] = ACTIONS(1262), + [anon_sym_str] = ACTIONS(1262), + [anon_sym_char] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_fn] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_impl] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_loop] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_mod] = ACTIONS(1262), + [anon_sym_pub] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_trait] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_unsafe] = ACTIONS(1262), + [anon_sym_use] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_POUND] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_DOT_DOT] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_yield] = ACTIONS(1262), + [anon_sym_move] = ACTIONS(1262), + [sym_integer_literal] = ACTIONS(1260), + [aux_sym_string_literal_token1] = ACTIONS(1260), + [sym_char_literal] = ACTIONS(1260), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1262), + [sym_super] = ACTIONS(1262), + [sym_crate] = ACTIONS(1262), + [sym_metavariable] = ACTIONS(1260), + [sym_raw_string_literal] = ACTIONS(1260), + [sym_float_literal] = ACTIONS(1260), + [sym_block_comment] = ACTIONS(3), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_macro_rules_BANG] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_u8] = ACTIONS(1266), + [anon_sym_i8] = ACTIONS(1266), + [anon_sym_u16] = ACTIONS(1266), + [anon_sym_i16] = ACTIONS(1266), + [anon_sym_u32] = ACTIONS(1266), + [anon_sym_i32] = ACTIONS(1266), + [anon_sym_u64] = ACTIONS(1266), + [anon_sym_i64] = ACTIONS(1266), + [anon_sym_u128] = ACTIONS(1266), + [anon_sym_i128] = ACTIONS(1266), + [anon_sym_isize] = ACTIONS(1266), + [anon_sym_usize] = ACTIONS(1266), + [anon_sym_f32] = ACTIONS(1266), + [anon_sym_f64] = ACTIONS(1266), + [anon_sym_bool] = ACTIONS(1266), + [anon_sym_str] = ACTIONS(1266), + [anon_sym_char] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_fn] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_impl] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_pub] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_trait] = ACTIONS(1266), + [anon_sym_type] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_unsafe] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_move] = ACTIONS(1266), + [sym_integer_literal] = ACTIONS(1264), + [aux_sym_string_literal_token1] = ACTIONS(1264), + [sym_char_literal] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1266), + [sym_super] = ACTIONS(1266), + [sym_crate] = ACTIONS(1266), + [sym_metavariable] = ACTIONS(1264), + [sym_raw_string_literal] = ACTIONS(1264), + [sym_float_literal] = ACTIONS(1264), + [sym_block_comment] = ACTIONS(3), + }, + [297] = { + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_macro_rules_BANG] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_COLON_COLON] = ACTIONS(1268), [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_DOT_DOT] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_yield] = ACTIONS(1270), + [anon_sym_move] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1268), + [aux_sym_string_literal_token1] = ACTIONS(1268), + [sym_char_literal] = ACTIONS(1268), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1270), [sym_super] = ACTIONS(1270), [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1268), + [sym_raw_string_literal] = ACTIONS(1268), + [sym_float_literal] = ACTIONS(1268), + [sym_block_comment] = ACTIONS(3), + }, + [298] = { + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_macro_rules_BANG] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_u8] = ACTIONS(1274), + [anon_sym_i8] = ACTIONS(1274), + [anon_sym_u16] = ACTIONS(1274), + [anon_sym_i16] = ACTIONS(1274), + [anon_sym_u32] = ACTIONS(1274), + [anon_sym_i32] = ACTIONS(1274), + [anon_sym_u64] = ACTIONS(1274), + [anon_sym_i64] = ACTIONS(1274), + [anon_sym_u128] = ACTIONS(1274), + [anon_sym_i128] = ACTIONS(1274), + [anon_sym_isize] = ACTIONS(1274), + [anon_sym_usize] = ACTIONS(1274), + [anon_sym_f32] = ACTIONS(1274), + [anon_sym_f64] = ACTIONS(1274), + [anon_sym_bool] = ACTIONS(1274), + [anon_sym_str] = ACTIONS(1274), + [anon_sym_char] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_async] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_impl] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_mod] = ACTIONS(1274), + [anon_sym_pub] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_trait] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_unsafe] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_COLON_COLON] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_yield] = ACTIONS(1274), + [anon_sym_move] = ACTIONS(1274), + [sym_integer_literal] = ACTIONS(1272), + [aux_sym_string_literal_token1] = ACTIONS(1272), + [sym_char_literal] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1274), + [sym_super] = ACTIONS(1274), + [sym_crate] = ACTIONS(1274), [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_raw_string_literal] = ACTIONS(1272), + [sym_float_literal] = ACTIONS(1272), + [sym_block_comment] = ACTIONS(3), + }, + [299] = { + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_macro_rules_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_u8] = ACTIONS(1278), + [anon_sym_i8] = ACTIONS(1278), + [anon_sym_u16] = ACTIONS(1278), + [anon_sym_i16] = ACTIONS(1278), + [anon_sym_u32] = ACTIONS(1278), + [anon_sym_i32] = ACTIONS(1278), + [anon_sym_u64] = ACTIONS(1278), + [anon_sym_i64] = ACTIONS(1278), + [anon_sym_u128] = ACTIONS(1278), + [anon_sym_i128] = ACTIONS(1278), + [anon_sym_isize] = ACTIONS(1278), + [anon_sym_usize] = ACTIONS(1278), + [anon_sym_f32] = ACTIONS(1278), + [anon_sym_f64] = ACTIONS(1278), + [anon_sym_bool] = ACTIONS(1278), + [anon_sym_str] = ACTIONS(1278), + [anon_sym_char] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_async] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_fn] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_impl] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_mod] = ACTIONS(1278), + [anon_sym_pub] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_trait] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_unsafe] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_COLON_COLON] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_yield] = ACTIONS(1278), + [anon_sym_move] = ACTIONS(1278), + [sym_integer_literal] = ACTIONS(1276), + [aux_sym_string_literal_token1] = ACTIONS(1276), + [sym_char_literal] = ACTIONS(1276), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1278), + [sym_super] = ACTIONS(1278), + [sym_crate] = ACTIONS(1278), + [sym_metavariable] = ACTIONS(1276), + [sym_raw_string_literal] = ACTIONS(1276), + [sym_float_literal] = ACTIONS(1276), + [sym_block_comment] = ACTIONS(3), + }, + [300] = { + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_macro_rules_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_fn] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_mod] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_trait] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_unsafe] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_DOT_DOT] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_yield] = ACTIONS(1282), + [anon_sym_move] = ACTIONS(1282), + [sym_integer_literal] = ACTIONS(1280), + [aux_sym_string_literal_token1] = ACTIONS(1280), + [sym_char_literal] = ACTIONS(1280), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_crate] = ACTIONS(1282), + [sym_metavariable] = ACTIONS(1280), + [sym_raw_string_literal] = ACTIONS(1280), + [sym_float_literal] = ACTIONS(1280), + [sym_block_comment] = ACTIONS(3), + }, + [301] = { + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym_macro_rules_BANG] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_u8] = ACTIONS(1286), + [anon_sym_i8] = ACTIONS(1286), + [anon_sym_u16] = ACTIONS(1286), + [anon_sym_i16] = ACTIONS(1286), + [anon_sym_u32] = ACTIONS(1286), + [anon_sym_i32] = ACTIONS(1286), + [anon_sym_u64] = ACTIONS(1286), + [anon_sym_i64] = ACTIONS(1286), + [anon_sym_u128] = ACTIONS(1286), + [anon_sym_i128] = ACTIONS(1286), + [anon_sym_isize] = ACTIONS(1286), + [anon_sym_usize] = ACTIONS(1286), + [anon_sym_f32] = ACTIONS(1286), + [anon_sym_f64] = ACTIONS(1286), + [anon_sym_bool] = ACTIONS(1286), + [anon_sym_str] = ACTIONS(1286), + [anon_sym_char] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_fn] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_impl] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_loop] = ACTIONS(1286), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_mod] = ACTIONS(1286), + [anon_sym_pub] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_trait] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_unsafe] = ACTIONS(1286), + [anon_sym_use] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_POUND] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1286), + [anon_sym_move] = ACTIONS(1286), + [sym_integer_literal] = ACTIONS(1284), + [aux_sym_string_literal_token1] = ACTIONS(1284), + [sym_char_literal] = ACTIONS(1284), + [anon_sym_true] = ACTIONS(1286), + [anon_sym_false] = ACTIONS(1286), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1286), + [sym_super] = ACTIONS(1286), + [sym_crate] = ACTIONS(1286), + [sym_metavariable] = ACTIONS(1284), + [sym_raw_string_literal] = ACTIONS(1284), + [sym_float_literal] = ACTIONS(1284), + [sym_block_comment] = ACTIONS(3), + }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_macro_rules_BANG] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_u8] = ACTIONS(1290), + [anon_sym_i8] = ACTIONS(1290), + [anon_sym_u16] = ACTIONS(1290), + [anon_sym_i16] = ACTIONS(1290), + [anon_sym_u32] = ACTIONS(1290), + [anon_sym_i32] = ACTIONS(1290), + [anon_sym_u64] = ACTIONS(1290), + [anon_sym_i64] = ACTIONS(1290), + [anon_sym_u128] = ACTIONS(1290), + [anon_sym_i128] = ACTIONS(1290), + [anon_sym_isize] = ACTIONS(1290), + [anon_sym_usize] = ACTIONS(1290), + [anon_sym_f32] = ACTIONS(1290), + [anon_sym_f64] = ACTIONS(1290), + [anon_sym_bool] = ACTIONS(1290), + [anon_sym_str] = ACTIONS(1290), + [anon_sym_char] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_impl] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_mod] = ACTIONS(1290), + [anon_sym_pub] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_trait] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_unsafe] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_COLON_COLON] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_yield] = ACTIONS(1290), + [anon_sym_move] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1288), + [aux_sym_string_literal_token1] = ACTIONS(1288), + [sym_char_literal] = ACTIONS(1288), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1288), + [sym_raw_string_literal] = ACTIONS(1288), + [sym_float_literal] = ACTIONS(1288), + [sym_block_comment] = ACTIONS(3), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_macro_rules_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1294), + [anon_sym_i8] = ACTIONS(1294), + [anon_sym_u16] = ACTIONS(1294), + [anon_sym_i16] = ACTIONS(1294), + [anon_sym_u32] = ACTIONS(1294), + [anon_sym_i32] = ACTIONS(1294), + [anon_sym_u64] = ACTIONS(1294), + [anon_sym_i64] = ACTIONS(1294), + [anon_sym_u128] = ACTIONS(1294), + [anon_sym_i128] = ACTIONS(1294), + [anon_sym_isize] = ACTIONS(1294), + [anon_sym_usize] = ACTIONS(1294), + [anon_sym_f32] = ACTIONS(1294), + [anon_sym_f64] = ACTIONS(1294), + [anon_sym_bool] = ACTIONS(1294), + [anon_sym_str] = ACTIONS(1294), + [anon_sym_char] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_mod] = ACTIONS(1294), + [anon_sym_pub] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_trait] = ACTIONS(1294), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_unsafe] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_COLON_COLON] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1294), + [anon_sym_move] = ACTIONS(1294), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1292), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1294), + [sym_super] = ACTIONS(1294), + [sym_crate] = ACTIONS(1294), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1292), + [sym_float_literal] = ACTIONS(1292), + [sym_block_comment] = ACTIONS(3), + }, + [304] = { + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_macro_rules_BANG] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_u8] = ACTIONS(1298), + [anon_sym_i8] = ACTIONS(1298), + [anon_sym_u16] = ACTIONS(1298), + [anon_sym_i16] = ACTIONS(1298), + [anon_sym_u32] = ACTIONS(1298), + [anon_sym_i32] = ACTIONS(1298), + [anon_sym_u64] = ACTIONS(1298), + [anon_sym_i64] = ACTIONS(1298), + [anon_sym_u128] = ACTIONS(1298), + [anon_sym_i128] = ACTIONS(1298), + [anon_sym_isize] = ACTIONS(1298), + [anon_sym_usize] = ACTIONS(1298), + [anon_sym_f32] = ACTIONS(1298), + [anon_sym_f64] = ACTIONS(1298), + [anon_sym_bool] = ACTIONS(1298), + [anon_sym_str] = ACTIONS(1298), + [anon_sym_char] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_impl] = ACTIONS(1298), + [anon_sym_let] = ACTIONS(1298), + [anon_sym_loop] = ACTIONS(1298), + [anon_sym_match] = ACTIONS(1298), + [anon_sym_mod] = ACTIONS(1298), + [anon_sym_pub] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_trait] = ACTIONS(1298), + [anon_sym_type] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_unsafe] = ACTIONS(1298), + [anon_sym_use] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_COLON_COLON] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1298), + [anon_sym_move] = ACTIONS(1298), + [sym_integer_literal] = ACTIONS(1296), + [aux_sym_string_literal_token1] = ACTIONS(1296), + [sym_char_literal] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1298), + [anon_sym_false] = ACTIONS(1298), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1298), + [sym_super] = ACTIONS(1298), + [sym_crate] = ACTIONS(1298), + [sym_metavariable] = ACTIONS(1296), + [sym_raw_string_literal] = ACTIONS(1296), + [sym_float_literal] = ACTIONS(1296), + [sym_block_comment] = ACTIONS(3), + }, + [305] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_macro_rules_BANG] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_u8] = ACTIONS(1302), + [anon_sym_i8] = ACTIONS(1302), + [anon_sym_u16] = ACTIONS(1302), + [anon_sym_i16] = ACTIONS(1302), + [anon_sym_u32] = ACTIONS(1302), + [anon_sym_i32] = ACTIONS(1302), + [anon_sym_u64] = ACTIONS(1302), + [anon_sym_i64] = ACTIONS(1302), + [anon_sym_u128] = ACTIONS(1302), + [anon_sym_i128] = ACTIONS(1302), + [anon_sym_isize] = ACTIONS(1302), + [anon_sym_usize] = ACTIONS(1302), + [anon_sym_f32] = ACTIONS(1302), + [anon_sym_f64] = ACTIONS(1302), + [anon_sym_bool] = ACTIONS(1302), + [anon_sym_str] = ACTIONS(1302), + [anon_sym_char] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_impl] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_loop] = ACTIONS(1302), + [anon_sym_match] = ACTIONS(1302), + [anon_sym_mod] = ACTIONS(1302), + [anon_sym_pub] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_trait] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1302), + [anon_sym_use] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_COLON_COLON] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_DOT_DOT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_move] = ACTIONS(1302), + [sym_integer_literal] = ACTIONS(1300), + [aux_sym_string_literal_token1] = ACTIONS(1300), + [sym_char_literal] = ACTIONS(1300), + [anon_sym_true] = ACTIONS(1302), + [anon_sym_false] = ACTIONS(1302), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_crate] = ACTIONS(1302), + [sym_metavariable] = ACTIONS(1300), + [sym_raw_string_literal] = ACTIONS(1300), + [sym_float_literal] = ACTIONS(1300), + [sym_block_comment] = ACTIONS(3), + }, + [306] = { + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_macro_rules_BANG] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_u8] = ACTIONS(1306), + [anon_sym_i8] = ACTIONS(1306), + [anon_sym_u16] = ACTIONS(1306), + [anon_sym_i16] = ACTIONS(1306), + [anon_sym_u32] = ACTIONS(1306), + [anon_sym_i32] = ACTIONS(1306), + [anon_sym_u64] = ACTIONS(1306), + [anon_sym_i64] = ACTIONS(1306), + [anon_sym_u128] = ACTIONS(1306), + [anon_sym_i128] = ACTIONS(1306), + [anon_sym_isize] = ACTIONS(1306), + [anon_sym_usize] = ACTIONS(1306), + [anon_sym_f32] = ACTIONS(1306), + [anon_sym_f64] = ACTIONS(1306), + [anon_sym_bool] = ACTIONS(1306), + [anon_sym_str] = ACTIONS(1306), + [anon_sym_char] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_loop] = ACTIONS(1306), + [anon_sym_match] = ACTIONS(1306), + [anon_sym_mod] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_trait] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_COLON_COLON] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_yield] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1306), + [sym_integer_literal] = ACTIONS(1304), + [aux_sym_string_literal_token1] = ACTIONS(1304), + [sym_char_literal] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1306), + [anon_sym_false] = ACTIONS(1306), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1306), + [sym_super] = ACTIONS(1306), + [sym_crate] = ACTIONS(1306), + [sym_metavariable] = ACTIONS(1304), + [sym_raw_string_literal] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1304), + [sym_block_comment] = ACTIONS(3), + }, + [307] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_macro_rules_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_POUND] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_DOT_DOT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_move] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1308), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_metavariable] = ACTIONS(1308), + [sym_raw_string_literal] = ACTIONS(1308), + [sym_float_literal] = ACTIONS(1308), + [sym_block_comment] = ACTIONS(3), + }, + [308] = { + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_macro_rules_BANG] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1314), + [anon_sym_i8] = ACTIONS(1314), + [anon_sym_u16] = ACTIONS(1314), + [anon_sym_i16] = ACTIONS(1314), + [anon_sym_u32] = ACTIONS(1314), + [anon_sym_i32] = ACTIONS(1314), + [anon_sym_u64] = ACTIONS(1314), + [anon_sym_i64] = ACTIONS(1314), + [anon_sym_u128] = ACTIONS(1314), + [anon_sym_i128] = ACTIONS(1314), + [anon_sym_isize] = ACTIONS(1314), + [anon_sym_usize] = ACTIONS(1314), + [anon_sym_f32] = ACTIONS(1314), + [anon_sym_f64] = ACTIONS(1314), + [anon_sym_bool] = ACTIONS(1314), + [anon_sym_str] = ACTIONS(1314), + [anon_sym_char] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_yield] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1312), + [sym_char_literal] = ACTIONS(1312), + [anon_sym_true] = ACTIONS(1314), + [anon_sym_false] = ACTIONS(1314), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1312), + [sym_raw_string_literal] = ACTIONS(1312), + [sym_float_literal] = ACTIONS(1312), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_macro_rules_BANG] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_u8] = ACTIONS(1276), - [anon_sym_i8] = ACTIONS(1276), - [anon_sym_u16] = ACTIONS(1276), - [anon_sym_i16] = ACTIONS(1276), - [anon_sym_u32] = ACTIONS(1276), - [anon_sym_i32] = ACTIONS(1276), - [anon_sym_u64] = ACTIONS(1276), - [anon_sym_i64] = ACTIONS(1276), - [anon_sym_u128] = ACTIONS(1276), - [anon_sym_i128] = ACTIONS(1276), - [anon_sym_isize] = ACTIONS(1276), - [anon_sym_usize] = ACTIONS(1276), - [anon_sym_f32] = ACTIONS(1276), - [anon_sym_f64] = ACTIONS(1276), - [anon_sym_bool] = ACTIONS(1276), - [anon_sym_str] = ACTIONS(1276), - [anon_sym_char] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_async] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_fn] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_impl] = ACTIONS(1276), - [anon_sym_let] = ACTIONS(1276), - [anon_sym_loop] = ACTIONS(1276), - [anon_sym_match] = ACTIONS(1276), - [anon_sym_mod] = ACTIONS(1276), - [anon_sym_pub] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_trait] = ACTIONS(1276), - [anon_sym_type] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_unsafe] = ACTIONS(1276), - [anon_sym_use] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(1276), - [anon_sym_move] = ACTIONS(1276), - [sym_integer_literal] = ACTIONS(1274), - [aux_sym_string_literal_token1] = ACTIONS(1274), - [sym_char_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1276), - [sym_super] = ACTIONS(1276), - [sym_crate] = ACTIONS(1276), - [sym_metavariable] = ACTIONS(1274), - [sym_raw_string_literal] = ACTIONS(1274), - [sym_float_literal] = ACTIONS(1274), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_macro_rules_BANG] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_u8] = ACTIONS(1318), + [anon_sym_i8] = ACTIONS(1318), + [anon_sym_u16] = ACTIONS(1318), + [anon_sym_i16] = ACTIONS(1318), + [anon_sym_u32] = ACTIONS(1318), + [anon_sym_i32] = ACTIONS(1318), + [anon_sym_u64] = ACTIONS(1318), + [anon_sym_i64] = ACTIONS(1318), + [anon_sym_u128] = ACTIONS(1318), + [anon_sym_i128] = ACTIONS(1318), + [anon_sym_isize] = ACTIONS(1318), + [anon_sym_usize] = ACTIONS(1318), + [anon_sym_f32] = ACTIONS(1318), + [anon_sym_f64] = ACTIONS(1318), + [anon_sym_bool] = ACTIONS(1318), + [anon_sym_str] = ACTIONS(1318), + [anon_sym_char] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_fn] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_impl] = ACTIONS(1318), + [anon_sym_let] = ACTIONS(1318), + [anon_sym_loop] = ACTIONS(1318), + [anon_sym_match] = ACTIONS(1318), + [anon_sym_mod] = ACTIONS(1318), + [anon_sym_pub] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_trait] = ACTIONS(1318), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_unsafe] = ACTIONS(1318), + [anon_sym_use] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_COLON_COLON] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_DOT_DOT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_move] = ACTIONS(1318), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1316), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1318), + [anon_sym_false] = ACTIONS(1318), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1318), + [sym_super] = ACTIONS(1318), + [sym_crate] = ACTIONS(1318), + [sym_metavariable] = ACTIONS(1316), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_macro_rules_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1280), - [anon_sym_i8] = ACTIONS(1280), - [anon_sym_u16] = ACTIONS(1280), - [anon_sym_i16] = ACTIONS(1280), - [anon_sym_u32] = ACTIONS(1280), - [anon_sym_i32] = ACTIONS(1280), - [anon_sym_u64] = ACTIONS(1280), - [anon_sym_i64] = ACTIONS(1280), - [anon_sym_u128] = ACTIONS(1280), - [anon_sym_i128] = ACTIONS(1280), - [anon_sym_isize] = ACTIONS(1280), - [anon_sym_usize] = ACTIONS(1280), - [anon_sym_f32] = ACTIONS(1280), - [anon_sym_f64] = ACTIONS(1280), - [anon_sym_bool] = ACTIONS(1280), - [anon_sym_str] = ACTIONS(1280), - [anon_sym_char] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_fn] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_impl] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_pub] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_trait] = ACTIONS(1280), - [anon_sym_type] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_unsafe] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1280), - [anon_sym_move] = ACTIONS(1280), - [sym_integer_literal] = ACTIONS(1278), - [aux_sym_string_literal_token1] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1280), - [sym_super] = ACTIONS(1280), - [sym_crate] = ACTIONS(1280), - [sym_metavariable] = ACTIONS(1278), - [sym_raw_string_literal] = ACTIONS(1278), - [sym_float_literal] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_macro_rules_BANG] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_u8] = ACTIONS(1322), + [anon_sym_i8] = ACTIONS(1322), + [anon_sym_u16] = ACTIONS(1322), + [anon_sym_i16] = ACTIONS(1322), + [anon_sym_u32] = ACTIONS(1322), + [anon_sym_i32] = ACTIONS(1322), + [anon_sym_u64] = ACTIONS(1322), + [anon_sym_i64] = ACTIONS(1322), + [anon_sym_u128] = ACTIONS(1322), + [anon_sym_i128] = ACTIONS(1322), + [anon_sym_isize] = ACTIONS(1322), + [anon_sym_usize] = ACTIONS(1322), + [anon_sym_f32] = ACTIONS(1322), + [anon_sym_f64] = ACTIONS(1322), + [anon_sym_bool] = ACTIONS(1322), + [anon_sym_str] = ACTIONS(1322), + [anon_sym_char] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_impl] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_loop] = ACTIONS(1322), + [anon_sym_match] = ACTIONS(1322), + [anon_sym_mod] = ACTIONS(1322), + [anon_sym_pub] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_trait] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_unsafe] = ACTIONS(1322), + [anon_sym_use] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_POUND] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_DOT_DOT] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_move] = ACTIONS(1322), + [sym_integer_literal] = ACTIONS(1320), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_crate] = ACTIONS(1322), + [sym_metavariable] = ACTIONS(1320), + [sym_raw_string_literal] = ACTIONS(1320), + [sym_float_literal] = ACTIONS(1320), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_macro_rules_BANG] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_u8] = ACTIONS(1284), - [anon_sym_i8] = ACTIONS(1284), - [anon_sym_u16] = ACTIONS(1284), - [anon_sym_i16] = ACTIONS(1284), - [anon_sym_u32] = ACTIONS(1284), - [anon_sym_i32] = ACTIONS(1284), - [anon_sym_u64] = ACTIONS(1284), - [anon_sym_i64] = ACTIONS(1284), - [anon_sym_u128] = ACTIONS(1284), - [anon_sym_i128] = ACTIONS(1284), - [anon_sym_isize] = ACTIONS(1284), - [anon_sym_usize] = ACTIONS(1284), - [anon_sym_f32] = ACTIONS(1284), - [anon_sym_f64] = ACTIONS(1284), - [anon_sym_bool] = ACTIONS(1284), - [anon_sym_str] = ACTIONS(1284), - [anon_sym_char] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_fn] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_impl] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_mod] = ACTIONS(1284), - [anon_sym_pub] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_trait] = ACTIONS(1284), - [anon_sym_type] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_move] = ACTIONS(1284), - [sym_integer_literal] = ACTIONS(1282), - [aux_sym_string_literal_token1] = ACTIONS(1282), - [sym_char_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1284), - [sym_super] = ACTIONS(1284), - [sym_crate] = ACTIONS(1284), - [sym_metavariable] = ACTIONS(1282), - [sym_raw_string_literal] = ACTIONS(1282), - [sym_float_literal] = ACTIONS(1282), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_macro_rules_BANG] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_u8] = ACTIONS(1326), + [anon_sym_i8] = ACTIONS(1326), + [anon_sym_u16] = ACTIONS(1326), + [anon_sym_i16] = ACTIONS(1326), + [anon_sym_u32] = ACTIONS(1326), + [anon_sym_i32] = ACTIONS(1326), + [anon_sym_u64] = ACTIONS(1326), + [anon_sym_i64] = ACTIONS(1326), + [anon_sym_u128] = ACTIONS(1326), + [anon_sym_i128] = ACTIONS(1326), + [anon_sym_isize] = ACTIONS(1326), + [anon_sym_usize] = ACTIONS(1326), + [anon_sym_f32] = ACTIONS(1326), + [anon_sym_f64] = ACTIONS(1326), + [anon_sym_bool] = ACTIONS(1326), + [anon_sym_str] = ACTIONS(1326), + [anon_sym_char] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_fn] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_impl] = ACTIONS(1326), + [anon_sym_let] = ACTIONS(1326), + [anon_sym_loop] = ACTIONS(1326), + [anon_sym_match] = ACTIONS(1326), + [anon_sym_mod] = ACTIONS(1326), + [anon_sym_pub] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_trait] = ACTIONS(1326), + [anon_sym_type] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_unsafe] = ACTIONS(1326), + [anon_sym_use] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_POUND] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_COLON_COLON] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_DOT_DOT] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_yield] = ACTIONS(1326), + [anon_sym_move] = ACTIONS(1326), + [sym_integer_literal] = ACTIONS(1324), + [aux_sym_string_literal_token1] = ACTIONS(1324), + [sym_char_literal] = ACTIONS(1324), + [anon_sym_true] = ACTIONS(1326), + [anon_sym_false] = ACTIONS(1326), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1324), + [sym_raw_string_literal] = ACTIONS(1324), + [sym_float_literal] = ACTIONS(1324), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_macro_rules_BANG] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_u8] = ACTIONS(1288), - [anon_sym_i8] = ACTIONS(1288), - [anon_sym_u16] = ACTIONS(1288), - [anon_sym_i16] = ACTIONS(1288), - [anon_sym_u32] = ACTIONS(1288), - [anon_sym_i32] = ACTIONS(1288), - [anon_sym_u64] = ACTIONS(1288), - [anon_sym_i64] = ACTIONS(1288), - [anon_sym_u128] = ACTIONS(1288), - [anon_sym_i128] = ACTIONS(1288), - [anon_sym_isize] = ACTIONS(1288), - [anon_sym_usize] = ACTIONS(1288), - [anon_sym_f32] = ACTIONS(1288), - [anon_sym_f64] = ACTIONS(1288), - [anon_sym_bool] = ACTIONS(1288), - [anon_sym_str] = ACTIONS(1288), - [anon_sym_char] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_impl] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_pub] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_trait] = ACTIONS(1288), - [anon_sym_type] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_COLON_COLON] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1288), - [anon_sym_move] = ACTIONS(1288), - [sym_integer_literal] = ACTIONS(1286), - [aux_sym_string_literal_token1] = ACTIONS(1286), - [sym_char_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1288), - [sym_super] = ACTIONS(1288), - [sym_crate] = ACTIONS(1288), - [sym_metavariable] = ACTIONS(1286), - [sym_raw_string_literal] = ACTIONS(1286), - [sym_float_literal] = ACTIONS(1286), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_macro_rules_BANG] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_fn] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_impl] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1330), + [anon_sym_loop] = ACTIONS(1330), + [anon_sym_match] = ACTIONS(1330), + [anon_sym_mod] = ACTIONS(1330), + [anon_sym_pub] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_trait] = ACTIONS(1330), + [anon_sym_type] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_unsafe] = ACTIONS(1330), + [anon_sym_use] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_POUND] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_DOT_DOT] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_yield] = ACTIONS(1330), + [anon_sym_move] = ACTIONS(1330), + [sym_integer_literal] = ACTIONS(1328), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1330), + [sym_super] = ACTIONS(1330), + [sym_crate] = ACTIONS(1330), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1328), + [sym_float_literal] = ACTIONS(1328), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_macro_rules_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_u8] = ACTIONS(1292), - [anon_sym_i8] = ACTIONS(1292), - [anon_sym_u16] = ACTIONS(1292), - [anon_sym_i16] = ACTIONS(1292), - [anon_sym_u32] = ACTIONS(1292), - [anon_sym_i32] = ACTIONS(1292), - [anon_sym_u64] = ACTIONS(1292), - [anon_sym_i64] = ACTIONS(1292), - [anon_sym_u128] = ACTIONS(1292), - [anon_sym_i128] = ACTIONS(1292), - [anon_sym_isize] = ACTIONS(1292), - [anon_sym_usize] = ACTIONS(1292), - [anon_sym_f32] = ACTIONS(1292), - [anon_sym_f64] = ACTIONS(1292), - [anon_sym_bool] = ACTIONS(1292), - [anon_sym_str] = ACTIONS(1292), - [anon_sym_char] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_async] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1292), - [anon_sym_let] = ACTIONS(1292), - [anon_sym_loop] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1292), - [anon_sym_mod] = ACTIONS(1292), - [anon_sym_pub] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_trait] = ACTIONS(1292), - [anon_sym_type] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_unsafe] = ACTIONS(1292), - [anon_sym_use] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_COLON_COLON] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1292), - [anon_sym_move] = ACTIONS(1292), - [sym_integer_literal] = ACTIONS(1290), - [aux_sym_string_literal_token1] = ACTIONS(1290), - [sym_char_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1292), - [anon_sym_false] = ACTIONS(1292), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1292), - [sym_super] = ACTIONS(1292), - [sym_crate] = ACTIONS(1292), - [sym_metavariable] = ACTIONS(1290), - [sym_raw_string_literal] = ACTIONS(1290), - [sym_float_literal] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym_macro_rules_BANG] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_POUND] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_COLON_COLON] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_DOT_DOT] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_yield] = ACTIONS(1334), + [anon_sym_move] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1332), + [aux_sym_string_literal_token1] = ACTIONS(1332), + [sym_char_literal] = ACTIONS(1332), + [anon_sym_true] = ACTIONS(1334), + [anon_sym_false] = ACTIONS(1334), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_metavariable] = ACTIONS(1332), + [sym_raw_string_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1332), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_macro_rules_BANG] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_u8] = ACTIONS(1296), - [anon_sym_i8] = ACTIONS(1296), - [anon_sym_u16] = ACTIONS(1296), - [anon_sym_i16] = ACTIONS(1296), - [anon_sym_u32] = ACTIONS(1296), - [anon_sym_i32] = ACTIONS(1296), - [anon_sym_u64] = ACTIONS(1296), - [anon_sym_i64] = ACTIONS(1296), - [anon_sym_u128] = ACTIONS(1296), - [anon_sym_i128] = ACTIONS(1296), - [anon_sym_isize] = ACTIONS(1296), - [anon_sym_usize] = ACTIONS(1296), - [anon_sym_f32] = ACTIONS(1296), - [anon_sym_f64] = ACTIONS(1296), - [anon_sym_bool] = ACTIONS(1296), - [anon_sym_str] = ACTIONS(1296), - [anon_sym_char] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_async] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_fn] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_pub] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_trait] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_COLON_COLON] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_move] = ACTIONS(1296), - [sym_integer_literal] = ACTIONS(1294), - [aux_sym_string_literal_token1] = ACTIONS(1294), - [sym_char_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1296), - [sym_super] = ACTIONS(1296), - [sym_crate] = ACTIONS(1296), - [sym_metavariable] = ACTIONS(1294), - [sym_raw_string_literal] = ACTIONS(1294), - [sym_float_literal] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_macro_rules_BANG] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_async] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_fn] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_impl] = ACTIONS(1338), + [anon_sym_let] = ACTIONS(1338), + [anon_sym_loop] = ACTIONS(1338), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_mod] = ACTIONS(1338), + [anon_sym_pub] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_trait] = ACTIONS(1338), + [anon_sym_type] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_unsafe] = ACTIONS(1338), + [anon_sym_use] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1338), + [anon_sym_move] = ACTIONS(1338), + [sym_integer_literal] = ACTIONS(1336), + [aux_sym_string_literal_token1] = ACTIONS(1336), + [sym_char_literal] = ACTIONS(1336), + [anon_sym_true] = ACTIONS(1338), + [anon_sym_false] = ACTIONS(1338), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1338), + [sym_super] = ACTIONS(1338), + [sym_crate] = ACTIONS(1338), + [sym_metavariable] = ACTIONS(1336), + [sym_raw_string_literal] = ACTIONS(1336), + [sym_float_literal] = ACTIONS(1336), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_macro_rules_BANG] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_u8] = ACTIONS(1300), - [anon_sym_i8] = ACTIONS(1300), - [anon_sym_u16] = ACTIONS(1300), - [anon_sym_i16] = ACTIONS(1300), - [anon_sym_u32] = ACTIONS(1300), - [anon_sym_i32] = ACTIONS(1300), - [anon_sym_u64] = ACTIONS(1300), - [anon_sym_i64] = ACTIONS(1300), - [anon_sym_u128] = ACTIONS(1300), - [anon_sym_i128] = ACTIONS(1300), - [anon_sym_isize] = ACTIONS(1300), - [anon_sym_usize] = ACTIONS(1300), - [anon_sym_f32] = ACTIONS(1300), - [anon_sym_f64] = ACTIONS(1300), - [anon_sym_bool] = ACTIONS(1300), - [anon_sym_str] = ACTIONS(1300), - [anon_sym_char] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_async] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_fn] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_impl] = ACTIONS(1300), - [anon_sym_let] = ACTIONS(1300), - [anon_sym_loop] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_mod] = ACTIONS(1300), - [anon_sym_pub] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_COLON_COLON] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1300), - [sym_integer_literal] = ACTIONS(1298), - [aux_sym_string_literal_token1] = ACTIONS(1298), - [sym_char_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1300), - [sym_super] = ACTIONS(1300), - [sym_crate] = ACTIONS(1300), - [sym_metavariable] = ACTIONS(1298), - [sym_raw_string_literal] = ACTIONS(1298), - [sym_float_literal] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_macro_rules_BANG] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_u8] = ACTIONS(1342), + [anon_sym_i8] = ACTIONS(1342), + [anon_sym_u16] = ACTIONS(1342), + [anon_sym_i16] = ACTIONS(1342), + [anon_sym_u32] = ACTIONS(1342), + [anon_sym_i32] = ACTIONS(1342), + [anon_sym_u64] = ACTIONS(1342), + [anon_sym_i64] = ACTIONS(1342), + [anon_sym_u128] = ACTIONS(1342), + [anon_sym_i128] = ACTIONS(1342), + [anon_sym_isize] = ACTIONS(1342), + [anon_sym_usize] = ACTIONS(1342), + [anon_sym_f32] = ACTIONS(1342), + [anon_sym_f64] = ACTIONS(1342), + [anon_sym_bool] = ACTIONS(1342), + [anon_sym_str] = ACTIONS(1342), + [anon_sym_char] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_fn] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_impl] = ACTIONS(1342), + [anon_sym_let] = ACTIONS(1342), + [anon_sym_loop] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1342), + [anon_sym_mod] = ACTIONS(1342), + [anon_sym_pub] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_trait] = ACTIONS(1342), + [anon_sym_type] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1342), + [anon_sym_use] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_POUND] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_DOT_DOT] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_yield] = ACTIONS(1342), + [anon_sym_move] = ACTIONS(1342), + [sym_integer_literal] = ACTIONS(1340), + [aux_sym_string_literal_token1] = ACTIONS(1340), + [sym_char_literal] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1342), + [sym_super] = ACTIONS(1342), + [sym_crate] = ACTIONS(1342), + [sym_metavariable] = ACTIONS(1340), + [sym_raw_string_literal] = ACTIONS(1340), + [sym_float_literal] = ACTIONS(1340), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_macro_rules_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_u8] = ACTIONS(1304), - [anon_sym_i8] = ACTIONS(1304), - [anon_sym_u16] = ACTIONS(1304), - [anon_sym_i16] = ACTIONS(1304), - [anon_sym_u32] = ACTIONS(1304), - [anon_sym_i32] = ACTIONS(1304), - [anon_sym_u64] = ACTIONS(1304), - [anon_sym_i64] = ACTIONS(1304), - [anon_sym_u128] = ACTIONS(1304), - [anon_sym_i128] = ACTIONS(1304), - [anon_sym_isize] = ACTIONS(1304), - [anon_sym_usize] = ACTIONS(1304), - [anon_sym_f32] = ACTIONS(1304), - [anon_sym_f64] = ACTIONS(1304), - [anon_sym_bool] = ACTIONS(1304), - [anon_sym_str] = ACTIONS(1304), - [anon_sym_char] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_fn] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_impl] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_mod] = ACTIONS(1304), - [anon_sym_pub] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_trait] = ACTIONS(1304), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_unsafe] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_COLON_COLON] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1304), - [anon_sym_move] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1302), - [aux_sym_string_literal_token1] = ACTIONS(1302), - [sym_char_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_crate] = ACTIONS(1304), - [sym_metavariable] = ACTIONS(1302), - [sym_raw_string_literal] = ACTIONS(1302), - [sym_float_literal] = ACTIONS(1302), + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_macro_rules_BANG] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_u8] = ACTIONS(1346), + [anon_sym_i8] = ACTIONS(1346), + [anon_sym_u16] = ACTIONS(1346), + [anon_sym_i16] = ACTIONS(1346), + [anon_sym_u32] = ACTIONS(1346), + [anon_sym_i32] = ACTIONS(1346), + [anon_sym_u64] = ACTIONS(1346), + [anon_sym_i64] = ACTIONS(1346), + [anon_sym_u128] = ACTIONS(1346), + [anon_sym_i128] = ACTIONS(1346), + [anon_sym_isize] = ACTIONS(1346), + [anon_sym_usize] = ACTIONS(1346), + [anon_sym_f32] = ACTIONS(1346), + [anon_sym_f64] = ACTIONS(1346), + [anon_sym_bool] = ACTIONS(1346), + [anon_sym_str] = ACTIONS(1346), + [anon_sym_char] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_async] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_fn] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_impl] = ACTIONS(1346), + [anon_sym_let] = ACTIONS(1346), + [anon_sym_loop] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1346), + [anon_sym_mod] = ACTIONS(1346), + [anon_sym_pub] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_trait] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_unsafe] = ACTIONS(1346), + [anon_sym_use] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_POUND] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_COLON_COLON] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_DOT_DOT] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PIPE] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_move] = ACTIONS(1346), + [sym_integer_literal] = ACTIONS(1344), + [aux_sym_string_literal_token1] = ACTIONS(1344), + [sym_char_literal] = ACTIONS(1344), + [anon_sym_true] = ACTIONS(1346), + [anon_sym_false] = ACTIONS(1346), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1346), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1344), + [sym_raw_string_literal] = ACTIONS(1344), + [sym_float_literal] = ACTIONS(1344), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_macro_rules_BANG] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_u8] = ACTIONS(1308), - [anon_sym_i8] = ACTIONS(1308), - [anon_sym_u16] = ACTIONS(1308), - [anon_sym_i16] = ACTIONS(1308), - [anon_sym_u32] = ACTIONS(1308), - [anon_sym_i32] = ACTIONS(1308), - [anon_sym_u64] = ACTIONS(1308), - [anon_sym_i64] = ACTIONS(1308), - [anon_sym_u128] = ACTIONS(1308), - [anon_sym_i128] = ACTIONS(1308), - [anon_sym_isize] = ACTIONS(1308), - [anon_sym_usize] = ACTIONS(1308), - [anon_sym_f32] = ACTIONS(1308), - [anon_sym_f64] = ACTIONS(1308), - [anon_sym_bool] = ACTIONS(1308), - [anon_sym_str] = ACTIONS(1308), - [anon_sym_char] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_impl] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_pub] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_trait] = ACTIONS(1308), - [anon_sym_type] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_unsafe] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_COLON_COLON] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1308), - [anon_sym_move] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1306), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1308), - [sym_super] = ACTIONS(1308), - [sym_crate] = ACTIONS(1308), - [sym_metavariable] = ACTIONS(1306), - [sym_raw_string_literal] = ACTIONS(1306), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_macro_rules_BANG] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_u8] = ACTIONS(1350), + [anon_sym_i8] = ACTIONS(1350), + [anon_sym_u16] = ACTIONS(1350), + [anon_sym_i16] = ACTIONS(1350), + [anon_sym_u32] = ACTIONS(1350), + [anon_sym_i32] = ACTIONS(1350), + [anon_sym_u64] = ACTIONS(1350), + [anon_sym_i64] = ACTIONS(1350), + [anon_sym_u128] = ACTIONS(1350), + [anon_sym_i128] = ACTIONS(1350), + [anon_sym_isize] = ACTIONS(1350), + [anon_sym_usize] = ACTIONS(1350), + [anon_sym_f32] = ACTIONS(1350), + [anon_sym_f64] = ACTIONS(1350), + [anon_sym_bool] = ACTIONS(1350), + [anon_sym_str] = ACTIONS(1350), + [anon_sym_char] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_fn] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_impl] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_mod] = ACTIONS(1350), + [anon_sym_pub] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_trait] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_COLON_COLON] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_DOT_DOT] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_yield] = ACTIONS(1350), + [anon_sym_move] = ACTIONS(1350), + [sym_integer_literal] = ACTIONS(1348), + [aux_sym_string_literal_token1] = ACTIONS(1348), + [sym_char_literal] = ACTIONS(1348), + [anon_sym_true] = ACTIONS(1350), + [anon_sym_false] = ACTIONS(1350), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1348), + [sym_raw_string_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1348), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_macro_rules_BANG] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_u8] = ACTIONS(1312), - [anon_sym_i8] = ACTIONS(1312), - [anon_sym_u16] = ACTIONS(1312), - [anon_sym_i16] = ACTIONS(1312), - [anon_sym_u32] = ACTIONS(1312), - [anon_sym_i32] = ACTIONS(1312), - [anon_sym_u64] = ACTIONS(1312), - [anon_sym_i64] = ACTIONS(1312), - [anon_sym_u128] = ACTIONS(1312), - [anon_sym_i128] = ACTIONS(1312), - [anon_sym_isize] = ACTIONS(1312), - [anon_sym_usize] = ACTIONS(1312), - [anon_sym_f32] = ACTIONS(1312), - [anon_sym_f64] = ACTIONS(1312), - [anon_sym_bool] = ACTIONS(1312), - [anon_sym_str] = ACTIONS(1312), - [anon_sym_char] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_COLON_COLON] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_move] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1310), - [sym_raw_string_literal] = ACTIONS(1310), - [sym_float_literal] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_macro_rules_BANG] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_u8] = ACTIONS(1354), + [anon_sym_i8] = ACTIONS(1354), + [anon_sym_u16] = ACTIONS(1354), + [anon_sym_i16] = ACTIONS(1354), + [anon_sym_u32] = ACTIONS(1354), + [anon_sym_i32] = ACTIONS(1354), + [anon_sym_u64] = ACTIONS(1354), + [anon_sym_i64] = ACTIONS(1354), + [anon_sym_u128] = ACTIONS(1354), + [anon_sym_i128] = ACTIONS(1354), + [anon_sym_isize] = ACTIONS(1354), + [anon_sym_usize] = ACTIONS(1354), + [anon_sym_f32] = ACTIONS(1354), + [anon_sym_f64] = ACTIONS(1354), + [anon_sym_bool] = ACTIONS(1354), + [anon_sym_str] = ACTIONS(1354), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_fn] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_impl] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(1354), + [anon_sym_loop] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_mod] = ACTIONS(1354), + [anon_sym_pub] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_trait] = ACTIONS(1354), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_unsafe] = ACTIONS(1354), + [anon_sym_use] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_COLON_COLON] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_DOT_DOT] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_yield] = ACTIONS(1354), + [anon_sym_move] = ACTIONS(1354), + [sym_integer_literal] = ACTIONS(1352), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1352), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1352), + [sym_float_literal] = ACTIONS(1352), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_macro_rules_BANG] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_u8] = ACTIONS(1316), - [anon_sym_i8] = ACTIONS(1316), - [anon_sym_u16] = ACTIONS(1316), - [anon_sym_i16] = ACTIONS(1316), - [anon_sym_u32] = ACTIONS(1316), - [anon_sym_i32] = ACTIONS(1316), - [anon_sym_u64] = ACTIONS(1316), - [anon_sym_i64] = ACTIONS(1316), - [anon_sym_u128] = ACTIONS(1316), - [anon_sym_i128] = ACTIONS(1316), - [anon_sym_isize] = ACTIONS(1316), - [anon_sym_usize] = ACTIONS(1316), - [anon_sym_f32] = ACTIONS(1316), - [anon_sym_f64] = ACTIONS(1316), - [anon_sym_bool] = ACTIONS(1316), - [anon_sym_str] = ACTIONS(1316), - [anon_sym_char] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_impl] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_pub] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_trait] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsafe] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_COLON_COLON] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1314), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1316), - [sym_crate] = ACTIONS(1316), - [sym_metavariable] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_macro_rules_BANG] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u128] = ACTIONS(1358), + [anon_sym_i128] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_str] = ACTIONS(1358), + [anon_sym_char] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_fn] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_impl] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_loop] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [anon_sym_mod] = ACTIONS(1358), + [anon_sym_pub] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_trait] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_unsafe] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_COLON_COLON] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_DOT_DOT] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_move] = ACTIONS(1358), + [sym_integer_literal] = ACTIONS(1356), + [aux_sym_string_literal_token1] = ACTIONS(1356), + [sym_char_literal] = ACTIONS(1356), + [anon_sym_true] = ACTIONS(1358), + [anon_sym_false] = ACTIONS(1358), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_crate] = ACTIONS(1358), + [sym_metavariable] = ACTIONS(1356), + [sym_raw_string_literal] = ACTIONS(1356), + [sym_float_literal] = ACTIONS(1356), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_macro_rules_BANG] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_fn] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_impl] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_pub] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_trait] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_unsafe] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_COLON_COLON] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1320), - [anon_sym_move] = ACTIONS(1320), - [sym_integer_literal] = ACTIONS(1318), - [aux_sym_string_literal_token1] = ACTIONS(1318), - [sym_char_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1320), - [sym_super] = ACTIONS(1320), - [sym_crate] = ACTIONS(1320), - [sym_metavariable] = ACTIONS(1318), - [sym_raw_string_literal] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_macro_rules_BANG] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_u8] = ACTIONS(1362), + [anon_sym_i8] = ACTIONS(1362), + [anon_sym_u16] = ACTIONS(1362), + [anon_sym_i16] = ACTIONS(1362), + [anon_sym_u32] = ACTIONS(1362), + [anon_sym_i32] = ACTIONS(1362), + [anon_sym_u64] = ACTIONS(1362), + [anon_sym_i64] = ACTIONS(1362), + [anon_sym_u128] = ACTIONS(1362), + [anon_sym_i128] = ACTIONS(1362), + [anon_sym_isize] = ACTIONS(1362), + [anon_sym_usize] = ACTIONS(1362), + [anon_sym_f32] = ACTIONS(1362), + [anon_sym_f64] = ACTIONS(1362), + [anon_sym_bool] = ACTIONS(1362), + [anon_sym_str] = ACTIONS(1362), + [anon_sym_char] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_impl] = ACTIONS(1362), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_loop] = ACTIONS(1362), + [anon_sym_match] = ACTIONS(1362), + [anon_sym_mod] = ACTIONS(1362), + [anon_sym_pub] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_trait] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_unsafe] = ACTIONS(1362), + [anon_sym_use] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_COLON_COLON] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1362), + [anon_sym_move] = ACTIONS(1362), + [sym_integer_literal] = ACTIONS(1360), + [aux_sym_string_literal_token1] = ACTIONS(1360), + [sym_char_literal] = ACTIONS(1360), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1362), + [sym_super] = ACTIONS(1362), + [sym_crate] = ACTIONS(1362), + [sym_metavariable] = ACTIONS(1360), + [sym_raw_string_literal] = ACTIONS(1360), + [sym_float_literal] = ACTIONS(1360), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_macro_rules_BANG] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_u8] = ACTIONS(1324), - [anon_sym_i8] = ACTIONS(1324), - [anon_sym_u16] = ACTIONS(1324), - [anon_sym_i16] = ACTIONS(1324), - [anon_sym_u32] = ACTIONS(1324), - [anon_sym_i32] = ACTIONS(1324), - [anon_sym_u64] = ACTIONS(1324), - [anon_sym_i64] = ACTIONS(1324), - [anon_sym_u128] = ACTIONS(1324), - [anon_sym_i128] = ACTIONS(1324), - [anon_sym_isize] = ACTIONS(1324), - [anon_sym_usize] = ACTIONS(1324), - [anon_sym_f32] = ACTIONS(1324), - [anon_sym_f64] = ACTIONS(1324), - [anon_sym_bool] = ACTIONS(1324), - [anon_sym_str] = ACTIONS(1324), - [anon_sym_char] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_async] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_fn] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_impl] = ACTIONS(1324), - [anon_sym_let] = ACTIONS(1324), - [anon_sym_loop] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1324), - [anon_sym_mod] = ACTIONS(1324), - [anon_sym_pub] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_trait] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_unsafe] = ACTIONS(1324), - [anon_sym_use] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1324), - [anon_sym_move] = ACTIONS(1324), - [sym_integer_literal] = ACTIONS(1322), - [aux_sym_string_literal_token1] = ACTIONS(1322), - [sym_char_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1324), - [anon_sym_false] = ACTIONS(1324), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1324), - [sym_super] = ACTIONS(1324), - [sym_crate] = ACTIONS(1324), - [sym_metavariable] = ACTIONS(1322), - [sym_raw_string_literal] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_macro_rules_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_u8] = ACTIONS(1366), + [anon_sym_i8] = ACTIONS(1366), + [anon_sym_u16] = ACTIONS(1366), + [anon_sym_i16] = ACTIONS(1366), + [anon_sym_u32] = ACTIONS(1366), + [anon_sym_i32] = ACTIONS(1366), + [anon_sym_u64] = ACTIONS(1366), + [anon_sym_i64] = ACTIONS(1366), + [anon_sym_u128] = ACTIONS(1366), + [anon_sym_i128] = ACTIONS(1366), + [anon_sym_isize] = ACTIONS(1366), + [anon_sym_usize] = ACTIONS(1366), + [anon_sym_f32] = ACTIONS(1366), + [anon_sym_f64] = ACTIONS(1366), + [anon_sym_bool] = ACTIONS(1366), + [anon_sym_str] = ACTIONS(1366), + [anon_sym_char] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_async] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_impl] = ACTIONS(1366), + [anon_sym_let] = ACTIONS(1366), + [anon_sym_loop] = ACTIONS(1366), + [anon_sym_match] = ACTIONS(1366), + [anon_sym_mod] = ACTIONS(1366), + [anon_sym_pub] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_trait] = ACTIONS(1366), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_unsafe] = ACTIONS(1366), + [anon_sym_use] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_COLON_COLON] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_yield] = ACTIONS(1366), + [anon_sym_move] = ACTIONS(1366), + [sym_integer_literal] = ACTIONS(1364), + [aux_sym_string_literal_token1] = ACTIONS(1364), + [sym_char_literal] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1366), + [anon_sym_false] = ACTIONS(1366), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_crate] = ACTIONS(1366), + [sym_metavariable] = ACTIONS(1364), + [sym_raw_string_literal] = ACTIONS(1364), + [sym_float_literal] = ACTIONS(1364), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_macro_rules_BANG] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_u8] = ACTIONS(1328), - [anon_sym_i8] = ACTIONS(1328), - [anon_sym_u16] = ACTIONS(1328), - [anon_sym_i16] = ACTIONS(1328), - [anon_sym_u32] = ACTIONS(1328), - [anon_sym_i32] = ACTIONS(1328), - [anon_sym_u64] = ACTIONS(1328), - [anon_sym_i64] = ACTIONS(1328), - [anon_sym_u128] = ACTIONS(1328), - [anon_sym_i128] = ACTIONS(1328), - [anon_sym_isize] = ACTIONS(1328), - [anon_sym_usize] = ACTIONS(1328), - [anon_sym_f32] = ACTIONS(1328), - [anon_sym_f64] = ACTIONS(1328), - [anon_sym_bool] = ACTIONS(1328), - [anon_sym_str] = ACTIONS(1328), - [anon_sym_char] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_fn] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_impl] = ACTIONS(1328), - [anon_sym_let] = ACTIONS(1328), - [anon_sym_loop] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1328), - [anon_sym_mod] = ACTIONS(1328), - [anon_sym_pub] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_trait] = ACTIONS(1328), - [anon_sym_type] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_unsafe] = ACTIONS(1328), - [anon_sym_use] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_COLON_COLON] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_move] = ACTIONS(1328), - [sym_integer_literal] = ACTIONS(1326), - [aux_sym_string_literal_token1] = ACTIONS(1326), - [sym_char_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1328), - [anon_sym_false] = ACTIONS(1328), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1328), - [sym_super] = ACTIONS(1328), - [sym_crate] = ACTIONS(1328), - [sym_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1326), - [sym_float_literal] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_macro_rules_BANG] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_u8] = ACTIONS(1370), + [anon_sym_i8] = ACTIONS(1370), + [anon_sym_u16] = ACTIONS(1370), + [anon_sym_i16] = ACTIONS(1370), + [anon_sym_u32] = ACTIONS(1370), + [anon_sym_i32] = ACTIONS(1370), + [anon_sym_u64] = ACTIONS(1370), + [anon_sym_i64] = ACTIONS(1370), + [anon_sym_u128] = ACTIONS(1370), + [anon_sym_i128] = ACTIONS(1370), + [anon_sym_isize] = ACTIONS(1370), + [anon_sym_usize] = ACTIONS(1370), + [anon_sym_f32] = ACTIONS(1370), + [anon_sym_f64] = ACTIONS(1370), + [anon_sym_bool] = ACTIONS(1370), + [anon_sym_str] = ACTIONS(1370), + [anon_sym_char] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_fn] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_impl] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1370), + [anon_sym_loop] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_mod] = ACTIONS(1370), + [anon_sym_pub] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_trait] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_unsafe] = ACTIONS(1370), + [anon_sym_use] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_POUND] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_move] = ACTIONS(1370), + [sym_integer_literal] = ACTIONS(1368), + [aux_sym_string_literal_token1] = ACTIONS(1368), + [sym_char_literal] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1370), + [sym_super] = ACTIONS(1370), + [sym_crate] = ACTIONS(1370), + [sym_metavariable] = ACTIONS(1368), + [sym_raw_string_literal] = ACTIONS(1368), + [sym_float_literal] = ACTIONS(1368), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_macro_rules_BANG] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_u8] = ACTIONS(1332), - [anon_sym_i8] = ACTIONS(1332), - [anon_sym_u16] = ACTIONS(1332), - [anon_sym_i16] = ACTIONS(1332), - [anon_sym_u32] = ACTIONS(1332), - [anon_sym_i32] = ACTIONS(1332), - [anon_sym_u64] = ACTIONS(1332), - [anon_sym_i64] = ACTIONS(1332), - [anon_sym_u128] = ACTIONS(1332), - [anon_sym_i128] = ACTIONS(1332), - [anon_sym_isize] = ACTIONS(1332), - [anon_sym_usize] = ACTIONS(1332), - [anon_sym_f32] = ACTIONS(1332), - [anon_sym_f64] = ACTIONS(1332), - [anon_sym_bool] = ACTIONS(1332), - [anon_sym_str] = ACTIONS(1332), - [anon_sym_char] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_fn] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_impl] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_pub] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_trait] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_unsafe] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_COLON_COLON] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_DOT_DOT] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1332), - [anon_sym_move] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1330), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1332), - [sym_super] = ACTIONS(1332), - [sym_crate] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1330), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_macro_rules_BANG] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_u8] = ACTIONS(1374), + [anon_sym_i8] = ACTIONS(1374), + [anon_sym_u16] = ACTIONS(1374), + [anon_sym_i16] = ACTIONS(1374), + [anon_sym_u32] = ACTIONS(1374), + [anon_sym_i32] = ACTIONS(1374), + [anon_sym_u64] = ACTIONS(1374), + [anon_sym_i64] = ACTIONS(1374), + [anon_sym_u128] = ACTIONS(1374), + [anon_sym_i128] = ACTIONS(1374), + [anon_sym_isize] = ACTIONS(1374), + [anon_sym_usize] = ACTIONS(1374), + [anon_sym_f32] = ACTIONS(1374), + [anon_sym_f64] = ACTIONS(1374), + [anon_sym_bool] = ACTIONS(1374), + [anon_sym_str] = ACTIONS(1374), + [anon_sym_char] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_impl] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_pub] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_trait] = ACTIONS(1374), + [anon_sym_type] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_unsafe] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_COLON_COLON] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_DOT_DOT] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_move] = ACTIONS(1374), + [sym_integer_literal] = ACTIONS(1372), + [aux_sym_string_literal_token1] = ACTIONS(1372), + [sym_char_literal] = ACTIONS(1372), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1374), + [sym_super] = ACTIONS(1374), + [sym_crate] = ACTIONS(1374), + [sym_metavariable] = ACTIONS(1372), + [sym_raw_string_literal] = ACTIONS(1372), + [sym_float_literal] = ACTIONS(1372), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_macro_rules_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_u8] = ACTIONS(1336), - [anon_sym_i8] = ACTIONS(1336), - [anon_sym_u16] = ACTIONS(1336), - [anon_sym_i16] = ACTIONS(1336), - [anon_sym_u32] = ACTIONS(1336), - [anon_sym_i32] = ACTIONS(1336), - [anon_sym_u64] = ACTIONS(1336), - [anon_sym_i64] = ACTIONS(1336), - [anon_sym_u128] = ACTIONS(1336), - [anon_sym_i128] = ACTIONS(1336), - [anon_sym_isize] = ACTIONS(1336), - [anon_sym_usize] = ACTIONS(1336), - [anon_sym_f32] = ACTIONS(1336), - [anon_sym_f64] = ACTIONS(1336), - [anon_sym_bool] = ACTIONS(1336), - [anon_sym_str] = ACTIONS(1336), - [anon_sym_char] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_impl] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_pub] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_trait] = ACTIONS(1336), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_unsafe] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_COLON_COLON] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_move] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1334), - [aux_sym_string_literal_token1] = ACTIONS(1334), - [sym_char_literal] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1336), - [sym_super] = ACTIONS(1336), - [sym_crate] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1334), - [sym_raw_string_literal] = ACTIONS(1334), - [sym_float_literal] = ACTIONS(1334), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_macro_rules_BANG] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_u8] = ACTIONS(1378), + [anon_sym_i8] = ACTIONS(1378), + [anon_sym_u16] = ACTIONS(1378), + [anon_sym_i16] = ACTIONS(1378), + [anon_sym_u32] = ACTIONS(1378), + [anon_sym_i32] = ACTIONS(1378), + [anon_sym_u64] = ACTIONS(1378), + [anon_sym_i64] = ACTIONS(1378), + [anon_sym_u128] = ACTIONS(1378), + [anon_sym_i128] = ACTIONS(1378), + [anon_sym_isize] = ACTIONS(1378), + [anon_sym_usize] = ACTIONS(1378), + [anon_sym_f32] = ACTIONS(1378), + [anon_sym_f64] = ACTIONS(1378), + [anon_sym_bool] = ACTIONS(1378), + [anon_sym_str] = ACTIONS(1378), + [anon_sym_char] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_impl] = ACTIONS(1378), + [anon_sym_let] = ACTIONS(1378), + [anon_sym_loop] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_mod] = ACTIONS(1378), + [anon_sym_pub] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_trait] = ACTIONS(1378), + [anon_sym_type] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_unsafe] = ACTIONS(1378), + [anon_sym_use] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_COLON_COLON] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_DOT_DOT] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_yield] = ACTIONS(1378), + [anon_sym_move] = ACTIONS(1378), + [sym_integer_literal] = ACTIONS(1376), + [aux_sym_string_literal_token1] = ACTIONS(1376), + [sym_char_literal] = ACTIONS(1376), + [anon_sym_true] = ACTIONS(1378), + [anon_sym_false] = ACTIONS(1378), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1378), + [sym_super] = ACTIONS(1378), + [sym_crate] = ACTIONS(1378), + [sym_metavariable] = ACTIONS(1376), + [sym_raw_string_literal] = ACTIONS(1376), + [sym_float_literal] = ACTIONS(1376), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_macro_rules_BANG] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_move] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1338), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1338), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_macro_rules_BANG] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_u8] = ACTIONS(1382), + [anon_sym_i8] = ACTIONS(1382), + [anon_sym_u16] = ACTIONS(1382), + [anon_sym_i16] = ACTIONS(1382), + [anon_sym_u32] = ACTIONS(1382), + [anon_sym_i32] = ACTIONS(1382), + [anon_sym_u64] = ACTIONS(1382), + [anon_sym_i64] = ACTIONS(1382), + [anon_sym_u128] = ACTIONS(1382), + [anon_sym_i128] = ACTIONS(1382), + [anon_sym_isize] = ACTIONS(1382), + [anon_sym_usize] = ACTIONS(1382), + [anon_sym_f32] = ACTIONS(1382), + [anon_sym_f64] = ACTIONS(1382), + [anon_sym_bool] = ACTIONS(1382), + [anon_sym_str] = ACTIONS(1382), + [anon_sym_char] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_impl] = ACTIONS(1382), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_loop] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_mod] = ACTIONS(1382), + [anon_sym_pub] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_trait] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_unsafe] = ACTIONS(1382), + [anon_sym_use] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_COLON_COLON] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_DOT_DOT] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_move] = ACTIONS(1382), + [sym_integer_literal] = ACTIONS(1380), + [aux_sym_string_literal_token1] = ACTIONS(1380), + [sym_char_literal] = ACTIONS(1380), + [anon_sym_true] = ACTIONS(1382), + [anon_sym_false] = ACTIONS(1382), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_crate] = ACTIONS(1382), + [sym_metavariable] = ACTIONS(1380), + [sym_raw_string_literal] = ACTIONS(1380), + [sym_float_literal] = ACTIONS(1380), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_macro_rules_BANG] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_u8] = ACTIONS(1344), - [anon_sym_i8] = ACTIONS(1344), - [anon_sym_u16] = ACTIONS(1344), - [anon_sym_i16] = ACTIONS(1344), - [anon_sym_u32] = ACTIONS(1344), - [anon_sym_i32] = ACTIONS(1344), - [anon_sym_u64] = ACTIONS(1344), - [anon_sym_i64] = ACTIONS(1344), - [anon_sym_u128] = ACTIONS(1344), - [anon_sym_i128] = ACTIONS(1344), - [anon_sym_isize] = ACTIONS(1344), - [anon_sym_usize] = ACTIONS(1344), - [anon_sym_f32] = ACTIONS(1344), - [anon_sym_f64] = ACTIONS(1344), - [anon_sym_bool] = ACTIONS(1344), - [anon_sym_str] = ACTIONS(1344), - [anon_sym_char] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_async] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_impl] = ACTIONS(1344), - [anon_sym_let] = ACTIONS(1344), - [anon_sym_loop] = ACTIONS(1344), - [anon_sym_match] = ACTIONS(1344), - [anon_sym_mod] = ACTIONS(1344), - [anon_sym_pub] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_trait] = ACTIONS(1344), - [anon_sym_type] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_unsafe] = ACTIONS(1344), - [anon_sym_use] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_COLON_COLON] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_move] = ACTIONS(1344), - [sym_integer_literal] = ACTIONS(1342), - [aux_sym_string_literal_token1] = ACTIONS(1342), - [sym_char_literal] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1344), - [sym_crate] = ACTIONS(1344), - [sym_metavariable] = ACTIONS(1342), - [sym_raw_string_literal] = ACTIONS(1342), - [sym_float_literal] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_macro_rules_BANG] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_u8] = ACTIONS(1386), + [anon_sym_i8] = ACTIONS(1386), + [anon_sym_u16] = ACTIONS(1386), + [anon_sym_i16] = ACTIONS(1386), + [anon_sym_u32] = ACTIONS(1386), + [anon_sym_i32] = ACTIONS(1386), + [anon_sym_u64] = ACTIONS(1386), + [anon_sym_i64] = ACTIONS(1386), + [anon_sym_u128] = ACTIONS(1386), + [anon_sym_i128] = ACTIONS(1386), + [anon_sym_isize] = ACTIONS(1386), + [anon_sym_usize] = ACTIONS(1386), + [anon_sym_f32] = ACTIONS(1386), + [anon_sym_f64] = ACTIONS(1386), + [anon_sym_bool] = ACTIONS(1386), + [anon_sym_str] = ACTIONS(1386), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_fn] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_impl] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_loop] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_mod] = ACTIONS(1386), + [anon_sym_pub] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_trait] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_unsafe] = ACTIONS(1386), + [anon_sym_use] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_COLON_COLON] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_move] = ACTIONS(1386), + [sym_integer_literal] = ACTIONS(1384), + [aux_sym_string_literal_token1] = ACTIONS(1384), + [sym_char_literal] = ACTIONS(1384), + [anon_sym_true] = ACTIONS(1386), + [anon_sym_false] = ACTIONS(1386), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1386), + [sym_super] = ACTIONS(1386), + [sym_crate] = ACTIONS(1386), + [sym_metavariable] = ACTIONS(1384), + [sym_raw_string_literal] = ACTIONS(1384), + [sym_float_literal] = ACTIONS(1384), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_macro_rules_BANG] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_u8] = ACTIONS(1348), - [anon_sym_i8] = ACTIONS(1348), - [anon_sym_u16] = ACTIONS(1348), - [anon_sym_i16] = ACTIONS(1348), - [anon_sym_u32] = ACTIONS(1348), - [anon_sym_i32] = ACTIONS(1348), - [anon_sym_u64] = ACTIONS(1348), - [anon_sym_i64] = ACTIONS(1348), - [anon_sym_u128] = ACTIONS(1348), - [anon_sym_i128] = ACTIONS(1348), - [anon_sym_isize] = ACTIONS(1348), - [anon_sym_usize] = ACTIONS(1348), - [anon_sym_f32] = ACTIONS(1348), - [anon_sym_f64] = ACTIONS(1348), - [anon_sym_bool] = ACTIONS(1348), - [anon_sym_str] = ACTIONS(1348), - [anon_sym_char] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_impl] = ACTIONS(1348), - [anon_sym_let] = ACTIONS(1348), - [anon_sym_loop] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [anon_sym_mod] = ACTIONS(1348), - [anon_sym_pub] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_unsafe] = ACTIONS(1348), - [anon_sym_use] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1348), - [anon_sym_move] = ACTIONS(1348), - [sym_integer_literal] = ACTIONS(1346), - [aux_sym_string_literal_token1] = ACTIONS(1346), - [sym_char_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1348), - [sym_super] = ACTIONS(1348), - [sym_crate] = ACTIONS(1348), - [sym_metavariable] = ACTIONS(1346), - [sym_raw_string_literal] = ACTIONS(1346), - [sym_float_literal] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_macro_rules_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_u8] = ACTIONS(1390), + [anon_sym_i8] = ACTIONS(1390), + [anon_sym_u16] = ACTIONS(1390), + [anon_sym_i16] = ACTIONS(1390), + [anon_sym_u32] = ACTIONS(1390), + [anon_sym_i32] = ACTIONS(1390), + [anon_sym_u64] = ACTIONS(1390), + [anon_sym_i64] = ACTIONS(1390), + [anon_sym_u128] = ACTIONS(1390), + [anon_sym_i128] = ACTIONS(1390), + [anon_sym_isize] = ACTIONS(1390), + [anon_sym_usize] = ACTIONS(1390), + [anon_sym_f32] = ACTIONS(1390), + [anon_sym_f64] = ACTIONS(1390), + [anon_sym_bool] = ACTIONS(1390), + [anon_sym_str] = ACTIONS(1390), + [anon_sym_char] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_fn] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_impl] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_mod] = ACTIONS(1390), + [anon_sym_pub] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_trait] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_unsafe] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_COLON_COLON] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_move] = ACTIONS(1390), + [sym_integer_literal] = ACTIONS(1388), + [aux_sym_string_literal_token1] = ACTIONS(1388), + [sym_char_literal] = ACTIONS(1388), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_crate] = ACTIONS(1390), + [sym_metavariable] = ACTIONS(1388), + [sym_raw_string_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1388), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_macro_rules_BANG] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_loop] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_unsafe] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_macro_rules_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_u8] = ACTIONS(1394), + [anon_sym_i8] = ACTIONS(1394), + [anon_sym_u16] = ACTIONS(1394), + [anon_sym_i16] = ACTIONS(1394), + [anon_sym_u32] = ACTIONS(1394), + [anon_sym_i32] = ACTIONS(1394), + [anon_sym_u64] = ACTIONS(1394), + [anon_sym_i64] = ACTIONS(1394), + [anon_sym_u128] = ACTIONS(1394), + [anon_sym_i128] = ACTIONS(1394), + [anon_sym_isize] = ACTIONS(1394), + [anon_sym_usize] = ACTIONS(1394), + [anon_sym_f32] = ACTIONS(1394), + [anon_sym_f64] = ACTIONS(1394), + [anon_sym_bool] = ACTIONS(1394), + [anon_sym_str] = ACTIONS(1394), + [anon_sym_char] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_fn] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_impl] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_pub] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_trait] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_unsafe] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_COLON_COLON] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_move] = ACTIONS(1394), + [sym_integer_literal] = ACTIONS(1392), + [aux_sym_string_literal_token1] = ACTIONS(1392), + [sym_char_literal] = ACTIONS(1392), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1394), + [sym_super] = ACTIONS(1394), + [sym_crate] = ACTIONS(1394), + [sym_metavariable] = ACTIONS(1392), + [sym_raw_string_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1392), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_macro_rules_BANG] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym_raw_string_literal] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_macro_rules_BANG] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1398), + [anon_sym_i8] = ACTIONS(1398), + [anon_sym_u16] = ACTIONS(1398), + [anon_sym_i16] = ACTIONS(1398), + [anon_sym_u32] = ACTIONS(1398), + [anon_sym_i32] = ACTIONS(1398), + [anon_sym_u64] = ACTIONS(1398), + [anon_sym_i64] = ACTIONS(1398), + [anon_sym_u128] = ACTIONS(1398), + [anon_sym_i128] = ACTIONS(1398), + [anon_sym_isize] = ACTIONS(1398), + [anon_sym_usize] = ACTIONS(1398), + [anon_sym_f32] = ACTIONS(1398), + [anon_sym_f64] = ACTIONS(1398), + [anon_sym_bool] = ACTIONS(1398), + [anon_sym_str] = ACTIONS(1398), + [anon_sym_char] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_fn] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_impl] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1398), + [anon_sym_loop] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_mod] = ACTIONS(1398), + [anon_sym_pub] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_trait] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1398), + [anon_sym_use] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_COLON_COLON] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_move] = ACTIONS(1398), + [sym_integer_literal] = ACTIONS(1396), + [aux_sym_string_literal_token1] = ACTIONS(1396), + [sym_char_literal] = ACTIONS(1396), + [anon_sym_true] = ACTIONS(1398), + [anon_sym_false] = ACTIONS(1398), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1398), + [sym_super] = ACTIONS(1398), + [sym_crate] = ACTIONS(1398), + [sym_metavariable] = ACTIONS(1396), + [sym_raw_string_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1396), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_macro_rules_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1360), - [anon_sym_i8] = ACTIONS(1360), - [anon_sym_u16] = ACTIONS(1360), - [anon_sym_i16] = ACTIONS(1360), - [anon_sym_u32] = ACTIONS(1360), - [anon_sym_i32] = ACTIONS(1360), - [anon_sym_u64] = ACTIONS(1360), - [anon_sym_i64] = ACTIONS(1360), - [anon_sym_u128] = ACTIONS(1360), - [anon_sym_i128] = ACTIONS(1360), - [anon_sym_isize] = ACTIONS(1360), - [anon_sym_usize] = ACTIONS(1360), - [anon_sym_f32] = ACTIONS(1360), - [anon_sym_f64] = ACTIONS(1360), - [anon_sym_bool] = ACTIONS(1360), - [anon_sym_str] = ACTIONS(1360), - [anon_sym_char] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_impl] = ACTIONS(1360), - [anon_sym_let] = ACTIONS(1360), - [anon_sym_loop] = ACTIONS(1360), - [anon_sym_match] = ACTIONS(1360), - [anon_sym_mod] = ACTIONS(1360), - [anon_sym_pub] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_trait] = ACTIONS(1360), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsafe] = ACTIONS(1360), - [anon_sym_use] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1360), - [anon_sym_move] = ACTIONS(1360), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1360), - [sym_super] = ACTIONS(1360), - [sym_crate] = ACTIONS(1360), - [sym_metavariable] = ACTIONS(1358), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_macro_rules_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_u8] = ACTIONS(1402), + [anon_sym_i8] = ACTIONS(1402), + [anon_sym_u16] = ACTIONS(1402), + [anon_sym_i16] = ACTIONS(1402), + [anon_sym_u32] = ACTIONS(1402), + [anon_sym_i32] = ACTIONS(1402), + [anon_sym_u64] = ACTIONS(1402), + [anon_sym_i64] = ACTIONS(1402), + [anon_sym_u128] = ACTIONS(1402), + [anon_sym_i128] = ACTIONS(1402), + [anon_sym_isize] = ACTIONS(1402), + [anon_sym_usize] = ACTIONS(1402), + [anon_sym_f32] = ACTIONS(1402), + [anon_sym_f64] = ACTIONS(1402), + [anon_sym_bool] = ACTIONS(1402), + [anon_sym_str] = ACTIONS(1402), + [anon_sym_char] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_async] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_fn] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_impl] = ACTIONS(1402), + [anon_sym_let] = ACTIONS(1402), + [anon_sym_loop] = ACTIONS(1402), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_mod] = ACTIONS(1402), + [anon_sym_pub] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_trait] = ACTIONS(1402), + [anon_sym_type] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1402), + [anon_sym_use] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_COLON_COLON] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_DOT_DOT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1400), + [aux_sym_string_literal_token1] = ACTIONS(1400), + [sym_char_literal] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1402), + [sym_super] = ACTIONS(1402), + [sym_crate] = ACTIONS(1402), + [sym_metavariable] = ACTIONS(1400), + [sym_raw_string_literal] = ACTIONS(1400), + [sym_float_literal] = ACTIONS(1400), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_macro_rules_BANG] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_fn] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_impl] = ACTIONS(1364), - [anon_sym_let] = ACTIONS(1364), - [anon_sym_loop] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_mod] = ACTIONS(1364), - [anon_sym_pub] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_type] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsafe] = ACTIONS(1364), - [anon_sym_use] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym_raw_string_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_macro_rules_BANG] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_u8] = ACTIONS(1406), + [anon_sym_i8] = ACTIONS(1406), + [anon_sym_u16] = ACTIONS(1406), + [anon_sym_i16] = ACTIONS(1406), + [anon_sym_u32] = ACTIONS(1406), + [anon_sym_i32] = ACTIONS(1406), + [anon_sym_u64] = ACTIONS(1406), + [anon_sym_i64] = ACTIONS(1406), + [anon_sym_u128] = ACTIONS(1406), + [anon_sym_i128] = ACTIONS(1406), + [anon_sym_isize] = ACTIONS(1406), + [anon_sym_usize] = ACTIONS(1406), + [anon_sym_f32] = ACTIONS(1406), + [anon_sym_f64] = ACTIONS(1406), + [anon_sym_bool] = ACTIONS(1406), + [anon_sym_str] = ACTIONS(1406), + [anon_sym_char] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_fn] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_impl] = ACTIONS(1406), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_loop] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1406), + [anon_sym_mod] = ACTIONS(1406), + [anon_sym_pub] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_trait] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1406), + [anon_sym_use] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_POUND] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_COLON_COLON] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_yield] = ACTIONS(1406), + [anon_sym_move] = ACTIONS(1406), + [sym_integer_literal] = ACTIONS(1404), + [aux_sym_string_literal_token1] = ACTIONS(1404), + [sym_char_literal] = ACTIONS(1404), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1406), + [sym_super] = ACTIONS(1406), + [sym_crate] = ACTIONS(1406), + [sym_metavariable] = ACTIONS(1404), + [sym_raw_string_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1404), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_macro_rules_BANG] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_impl] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_pub] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_trait] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_unsafe] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym_raw_string_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_impl] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_loop] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_mod] = ACTIONS(1410), + [anon_sym_pub] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_trait] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsafe] = ACTIONS(1410), + [anon_sym_use] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_DOT_DOT] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_yield] = ACTIONS(1410), + [anon_sym_move] = ACTIONS(1410), + [sym_integer_literal] = ACTIONS(1408), + [aux_sym_string_literal_token1] = ACTIONS(1408), + [sym_char_literal] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1410), + [anon_sym_false] = ACTIONS(1410), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_crate] = ACTIONS(1410), + [sym_metavariable] = ACTIONS(1408), + [sym_raw_string_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1408), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_macro_rules_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_impl] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_pub] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_trait] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_yield] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym_raw_string_literal] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_macro_rules_BANG] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_u8] = ACTIONS(1414), + [anon_sym_i8] = ACTIONS(1414), + [anon_sym_u16] = ACTIONS(1414), + [anon_sym_i16] = ACTIONS(1414), + [anon_sym_u32] = ACTIONS(1414), + [anon_sym_i32] = ACTIONS(1414), + [anon_sym_u64] = ACTIONS(1414), + [anon_sym_i64] = ACTIONS(1414), + [anon_sym_u128] = ACTIONS(1414), + [anon_sym_i128] = ACTIONS(1414), + [anon_sym_isize] = ACTIONS(1414), + [anon_sym_usize] = ACTIONS(1414), + [anon_sym_f32] = ACTIONS(1414), + [anon_sym_f64] = ACTIONS(1414), + [anon_sym_bool] = ACTIONS(1414), + [anon_sym_str] = ACTIONS(1414), + [anon_sym_char] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_fn] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_impl] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1414), + [anon_sym_loop] = ACTIONS(1414), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_mod] = ACTIONS(1414), + [anon_sym_pub] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_trait] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_unsafe] = ACTIONS(1414), + [anon_sym_use] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_COLON_COLON] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_DOT_DOT] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_yield] = ACTIONS(1414), + [anon_sym_move] = ACTIONS(1414), + [sym_integer_literal] = ACTIONS(1412), + [aux_sym_string_literal_token1] = ACTIONS(1412), + [sym_char_literal] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1414), + [sym_super] = ACTIONS(1414), + [sym_crate] = ACTIONS(1414), + [sym_metavariable] = ACTIONS(1412), + [sym_raw_string_literal] = ACTIONS(1412), + [sym_float_literal] = ACTIONS(1412), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_macro_rules_BANG] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_async] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_impl] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_pub] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_trait] = ACTIONS(1376), - [anon_sym_type] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_DOT_DOT] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym_raw_string_literal] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_macro_rules_BANG] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_u8] = ACTIONS(1418), + [anon_sym_i8] = ACTIONS(1418), + [anon_sym_u16] = ACTIONS(1418), + [anon_sym_i16] = ACTIONS(1418), + [anon_sym_u32] = ACTIONS(1418), + [anon_sym_i32] = ACTIONS(1418), + [anon_sym_u64] = ACTIONS(1418), + [anon_sym_i64] = ACTIONS(1418), + [anon_sym_u128] = ACTIONS(1418), + [anon_sym_i128] = ACTIONS(1418), + [anon_sym_isize] = ACTIONS(1418), + [anon_sym_usize] = ACTIONS(1418), + [anon_sym_f32] = ACTIONS(1418), + [anon_sym_f64] = ACTIONS(1418), + [anon_sym_bool] = ACTIONS(1418), + [anon_sym_str] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_fn] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_impl] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1418), + [anon_sym_loop] = ACTIONS(1418), + [anon_sym_match] = ACTIONS(1418), + [anon_sym_mod] = ACTIONS(1418), + [anon_sym_pub] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_trait] = ACTIONS(1418), + [anon_sym_type] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_COLON_COLON] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_yield] = ACTIONS(1418), + [anon_sym_move] = ACTIONS(1418), + [sym_integer_literal] = ACTIONS(1416), + [aux_sym_string_literal_token1] = ACTIONS(1416), + [sym_char_literal] = ACTIONS(1416), + [anon_sym_true] = ACTIONS(1418), + [anon_sym_false] = ACTIONS(1418), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1418), + [sym_super] = ACTIONS(1418), + [sym_crate] = ACTIONS(1418), + [sym_metavariable] = ACTIONS(1416), + [sym_raw_string_literal] = ACTIONS(1416), + [sym_float_literal] = ACTIONS(1416), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_macro_rules_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_loop] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_mod] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_type] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsafe] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym_raw_string_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_macro_rules_BANG] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_u8] = ACTIONS(1422), + [anon_sym_i8] = ACTIONS(1422), + [anon_sym_u16] = ACTIONS(1422), + [anon_sym_i16] = ACTIONS(1422), + [anon_sym_u32] = ACTIONS(1422), + [anon_sym_i32] = ACTIONS(1422), + [anon_sym_u64] = ACTIONS(1422), + [anon_sym_i64] = ACTIONS(1422), + [anon_sym_u128] = ACTIONS(1422), + [anon_sym_i128] = ACTIONS(1422), + [anon_sym_isize] = ACTIONS(1422), + [anon_sym_usize] = ACTIONS(1422), + [anon_sym_f32] = ACTIONS(1422), + [anon_sym_f64] = ACTIONS(1422), + [anon_sym_bool] = ACTIONS(1422), + [anon_sym_str] = ACTIONS(1422), + [anon_sym_char] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_async] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_fn] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_impl] = ACTIONS(1422), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_loop] = ACTIONS(1422), + [anon_sym_match] = ACTIONS(1422), + [anon_sym_mod] = ACTIONS(1422), + [anon_sym_pub] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_trait] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_unsafe] = ACTIONS(1422), + [anon_sym_use] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_COLON_COLON] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_yield] = ACTIONS(1422), + [anon_sym_move] = ACTIONS(1422), + [sym_integer_literal] = ACTIONS(1420), + [aux_sym_string_literal_token1] = ACTIONS(1420), + [sym_char_literal] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1422), + [anon_sym_false] = ACTIONS(1422), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1422), + [sym_super] = ACTIONS(1422), + [sym_crate] = ACTIONS(1422), + [sym_metavariable] = ACTIONS(1420), + [sym_raw_string_literal] = ACTIONS(1420), + [sym_float_literal] = ACTIONS(1420), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_macro_rules_BANG] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_async] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_loop] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_unsafe] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_DOT_DOT] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym_raw_string_literal] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_macro_rules_BANG] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_u8] = ACTIONS(1426), + [anon_sym_i8] = ACTIONS(1426), + [anon_sym_u16] = ACTIONS(1426), + [anon_sym_i16] = ACTIONS(1426), + [anon_sym_u32] = ACTIONS(1426), + [anon_sym_i32] = ACTIONS(1426), + [anon_sym_u64] = ACTIONS(1426), + [anon_sym_i64] = ACTIONS(1426), + [anon_sym_u128] = ACTIONS(1426), + [anon_sym_i128] = ACTIONS(1426), + [anon_sym_isize] = ACTIONS(1426), + [anon_sym_usize] = ACTIONS(1426), + [anon_sym_f32] = ACTIONS(1426), + [anon_sym_f64] = ACTIONS(1426), + [anon_sym_bool] = ACTIONS(1426), + [anon_sym_str] = ACTIONS(1426), + [anon_sym_char] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_async] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_fn] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_impl] = ACTIONS(1426), + [anon_sym_let] = ACTIONS(1426), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1426), + [anon_sym_mod] = ACTIONS(1426), + [anon_sym_pub] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_trait] = ACTIONS(1426), + [anon_sym_type] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_unsafe] = ACTIONS(1426), + [anon_sym_use] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_DOT_DOT] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_move] = ACTIONS(1426), + [sym_integer_literal] = ACTIONS(1424), + [aux_sym_string_literal_token1] = ACTIONS(1424), + [sym_char_literal] = ACTIONS(1424), + [anon_sym_true] = ACTIONS(1426), + [anon_sym_false] = ACTIONS(1426), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1426), + [sym_super] = ACTIONS(1426), + [sym_crate] = ACTIONS(1426), + [sym_metavariable] = ACTIONS(1424), + [sym_raw_string_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1424), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_macro_rules_BANG] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_loop] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_mod] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_type] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_unsafe] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_yield] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym_raw_string_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_macro_rules_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_u8] = ACTIONS(1430), + [anon_sym_i8] = ACTIONS(1430), + [anon_sym_u16] = ACTIONS(1430), + [anon_sym_i16] = ACTIONS(1430), + [anon_sym_u32] = ACTIONS(1430), + [anon_sym_i32] = ACTIONS(1430), + [anon_sym_u64] = ACTIONS(1430), + [anon_sym_i64] = ACTIONS(1430), + [anon_sym_u128] = ACTIONS(1430), + [anon_sym_i128] = ACTIONS(1430), + [anon_sym_isize] = ACTIONS(1430), + [anon_sym_usize] = ACTIONS(1430), + [anon_sym_f32] = ACTIONS(1430), + [anon_sym_f64] = ACTIONS(1430), + [anon_sym_bool] = ACTIONS(1430), + [anon_sym_str] = ACTIONS(1430), + [anon_sym_char] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_async] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_impl] = ACTIONS(1430), + [anon_sym_let] = ACTIONS(1430), + [anon_sym_loop] = ACTIONS(1430), + [anon_sym_match] = ACTIONS(1430), + [anon_sym_mod] = ACTIONS(1430), + [anon_sym_pub] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_trait] = ACTIONS(1430), + [anon_sym_type] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_unsafe] = ACTIONS(1430), + [anon_sym_use] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_COLON_COLON] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_yield] = ACTIONS(1430), + [anon_sym_move] = ACTIONS(1430), + [sym_integer_literal] = ACTIONS(1428), + [aux_sym_string_literal_token1] = ACTIONS(1428), + [sym_char_literal] = ACTIONS(1428), + [anon_sym_true] = ACTIONS(1430), + [anon_sym_false] = ACTIONS(1430), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1430), + [sym_super] = ACTIONS(1430), + [sym_crate] = ACTIONS(1430), + [sym_metavariable] = ACTIONS(1428), + [sym_raw_string_literal] = ACTIONS(1428), + [sym_float_literal] = ACTIONS(1428), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_macro_rules_BANG] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_impl] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_loop] = ACTIONS(1392), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_mod] = ACTIONS(1392), - [anon_sym_pub] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_trait] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_unsafe] = ACTIONS(1392), - [anon_sym_use] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_DOT_DOT] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym_raw_string_literal] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_macro_rules_BANG] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1434), + [anon_sym_i8] = ACTIONS(1434), + [anon_sym_u16] = ACTIONS(1434), + [anon_sym_i16] = ACTIONS(1434), + [anon_sym_u32] = ACTIONS(1434), + [anon_sym_i32] = ACTIONS(1434), + [anon_sym_u64] = ACTIONS(1434), + [anon_sym_i64] = ACTIONS(1434), + [anon_sym_u128] = ACTIONS(1434), + [anon_sym_i128] = ACTIONS(1434), + [anon_sym_isize] = ACTIONS(1434), + [anon_sym_usize] = ACTIONS(1434), + [anon_sym_f32] = ACTIONS(1434), + [anon_sym_f64] = ACTIONS(1434), + [anon_sym_bool] = ACTIONS(1434), + [anon_sym_str] = ACTIONS(1434), + [anon_sym_char] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_impl] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1434), + [anon_sym_loop] = ACTIONS(1434), + [anon_sym_match] = ACTIONS(1434), + [anon_sym_mod] = ACTIONS(1434), + [anon_sym_pub] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_trait] = ACTIONS(1434), + [anon_sym_type] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_unsafe] = ACTIONS(1434), + [anon_sym_use] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1432), + [aux_sym_string_literal_token1] = ACTIONS(1432), + [sym_char_literal] = ACTIONS(1432), + [anon_sym_true] = ACTIONS(1434), + [anon_sym_false] = ACTIONS(1434), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1434), + [sym_super] = ACTIONS(1434), + [sym_crate] = ACTIONS(1434), + [sym_metavariable] = ACTIONS(1432), + [sym_raw_string_literal] = ACTIONS(1432), + [sym_float_literal] = ACTIONS(1432), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_macro_rules_BANG] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_async] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_impl] = ACTIONS(1396), - [anon_sym_let] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1396), - [anon_sym_mod] = ACTIONS(1396), - [anon_sym_pub] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_trait] = ACTIONS(1396), - [anon_sym_type] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1396), - [anon_sym_use] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym_raw_string_literal] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_macro_rules_BANG] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1438), + [anon_sym_i8] = ACTIONS(1438), + [anon_sym_u16] = ACTIONS(1438), + [anon_sym_i16] = ACTIONS(1438), + [anon_sym_u32] = ACTIONS(1438), + [anon_sym_i32] = ACTIONS(1438), + [anon_sym_u64] = ACTIONS(1438), + [anon_sym_i64] = ACTIONS(1438), + [anon_sym_u128] = ACTIONS(1438), + [anon_sym_i128] = ACTIONS(1438), + [anon_sym_isize] = ACTIONS(1438), + [anon_sym_usize] = ACTIONS(1438), + [anon_sym_f32] = ACTIONS(1438), + [anon_sym_f64] = ACTIONS(1438), + [anon_sym_bool] = ACTIONS(1438), + [anon_sym_str] = ACTIONS(1438), + [anon_sym_char] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_async] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_impl] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1438), + [anon_sym_loop] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1438), + [anon_sym_mod] = ACTIONS(1438), + [anon_sym_pub] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_trait] = ACTIONS(1438), + [anon_sym_type] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_unsafe] = ACTIONS(1438), + [anon_sym_use] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1438), + [anon_sym_move] = ACTIONS(1438), + [sym_integer_literal] = ACTIONS(1436), + [aux_sym_string_literal_token1] = ACTIONS(1436), + [sym_char_literal] = ACTIONS(1436), + [anon_sym_true] = ACTIONS(1438), + [anon_sym_false] = ACTIONS(1438), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1438), + [sym_super] = ACTIONS(1438), + [sym_crate] = ACTIONS(1438), + [sym_metavariable] = ACTIONS(1436), + [sym_raw_string_literal] = ACTIONS(1436), + [sym_float_literal] = ACTIONS(1436), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_macro_rules_BANG] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_loop] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsafe] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym_raw_string_literal] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_macro_rules_BANG] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1442), + [anon_sym_move] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1440), + [aux_sym_string_literal_token1] = ACTIONS(1440), + [sym_char_literal] = ACTIONS(1440), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1440), + [sym_raw_string_literal] = ACTIONS(1440), + [sym_float_literal] = ACTIONS(1440), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_macro_rules_BANG] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_async] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_impl] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_mod] = ACTIONS(1404), - [anon_sym_pub] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_trait] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_unsafe] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym_raw_string_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_macro_rules_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1446), + [anon_sym_i8] = ACTIONS(1446), + [anon_sym_u16] = ACTIONS(1446), + [anon_sym_i16] = ACTIONS(1446), + [anon_sym_u32] = ACTIONS(1446), + [anon_sym_i32] = ACTIONS(1446), + [anon_sym_u64] = ACTIONS(1446), + [anon_sym_i64] = ACTIONS(1446), + [anon_sym_u128] = ACTIONS(1446), + [anon_sym_i128] = ACTIONS(1446), + [anon_sym_isize] = ACTIONS(1446), + [anon_sym_usize] = ACTIONS(1446), + [anon_sym_f32] = ACTIONS(1446), + [anon_sym_f64] = ACTIONS(1446), + [anon_sym_bool] = ACTIONS(1446), + [anon_sym_str] = ACTIONS(1446), + [anon_sym_char] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_impl] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_loop] = ACTIONS(1446), + [anon_sym_match] = ACTIONS(1446), + [anon_sym_mod] = ACTIONS(1446), + [anon_sym_pub] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_trait] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_unsafe] = ACTIONS(1446), + [anon_sym_use] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_move] = ACTIONS(1446), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1446), + [anon_sym_false] = ACTIONS(1446), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_crate] = ACTIONS(1446), + [sym_metavariable] = ACTIONS(1444), + [sym_raw_string_literal] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1406), - [sym_identifier] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_macro_rules_BANG] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_u8] = ACTIONS(1408), - [anon_sym_i8] = ACTIONS(1408), - [anon_sym_u16] = ACTIONS(1408), - [anon_sym_i16] = ACTIONS(1408), - [anon_sym_u32] = ACTIONS(1408), - [anon_sym_i32] = ACTIONS(1408), - [anon_sym_u64] = ACTIONS(1408), - [anon_sym_i64] = ACTIONS(1408), - [anon_sym_u128] = ACTIONS(1408), - [anon_sym_i128] = ACTIONS(1408), - [anon_sym_isize] = ACTIONS(1408), - [anon_sym_usize] = ACTIONS(1408), - [anon_sym_f32] = ACTIONS(1408), - [anon_sym_f64] = ACTIONS(1408), - [anon_sym_bool] = ACTIONS(1408), - [anon_sym_str] = ACTIONS(1408), - [anon_sym_char] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_impl] = ACTIONS(1408), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_loop] = ACTIONS(1408), - [anon_sym_match] = ACTIONS(1408), - [anon_sym_mod] = ACTIONS(1408), - [anon_sym_pub] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_trait] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1408), - [anon_sym_unsafe] = ACTIONS(1408), - [anon_sym_use] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_POUND] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_COLON_COLON] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1408), - [anon_sym_move] = ACTIONS(1408), - [sym_integer_literal] = ACTIONS(1406), - [aux_sym_string_literal_token1] = ACTIONS(1406), - [sym_char_literal] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1408), - [anon_sym_false] = ACTIONS(1408), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1408), - [sym_super] = ACTIONS(1408), - [sym_crate] = ACTIONS(1408), - [sym_metavariable] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1406), - [sym_float_literal] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_macro_rules_BANG] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1450), + [anon_sym_i8] = ACTIONS(1450), + [anon_sym_u16] = ACTIONS(1450), + [anon_sym_i16] = ACTIONS(1450), + [anon_sym_u32] = ACTIONS(1450), + [anon_sym_i32] = ACTIONS(1450), + [anon_sym_u64] = ACTIONS(1450), + [anon_sym_i64] = ACTIONS(1450), + [anon_sym_u128] = ACTIONS(1450), + [anon_sym_i128] = ACTIONS(1450), + [anon_sym_isize] = ACTIONS(1450), + [anon_sym_usize] = ACTIONS(1450), + [anon_sym_f32] = ACTIONS(1450), + [anon_sym_f64] = ACTIONS(1450), + [anon_sym_bool] = ACTIONS(1450), + [anon_sym_str] = ACTIONS(1450), + [anon_sym_char] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_impl] = ACTIONS(1450), + [anon_sym_let] = ACTIONS(1450), + [anon_sym_loop] = ACTIONS(1450), + [anon_sym_match] = ACTIONS(1450), + [anon_sym_mod] = ACTIONS(1450), + [anon_sym_pub] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_trait] = ACTIONS(1450), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_unsafe] = ACTIONS(1450), + [anon_sym_use] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1450), + [anon_sym_move] = ACTIONS(1450), + [sym_integer_literal] = ACTIONS(1448), + [aux_sym_string_literal_token1] = ACTIONS(1448), + [sym_char_literal] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1450), + [anon_sym_false] = ACTIONS(1450), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1450), + [sym_super] = ACTIONS(1450), + [sym_crate] = ACTIONS(1450), + [sym_metavariable] = ACTIONS(1448), + [sym_raw_string_literal] = ACTIONS(1448), + [sym_float_literal] = ACTIONS(1448), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_macro_rules_BANG] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_async] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_impl] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(1412), - [anon_sym_loop] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1412), - [anon_sym_mod] = ACTIONS(1412), - [anon_sym_pub] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_trait] = ACTIONS(1412), - [anon_sym_type] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_unsafe] = ACTIONS(1412), - [anon_sym_use] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1412), - [sym_super] = ACTIONS(1412), - [sym_crate] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym_raw_string_literal] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_macro_rules_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_fn] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_impl] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_loop] = ACTIONS(1454), + [anon_sym_match] = ACTIONS(1454), + [anon_sym_mod] = ACTIONS(1454), + [anon_sym_pub] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_trait] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_unsafe] = ACTIONS(1454), + [anon_sym_use] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_yield] = ACTIONS(1454), + [anon_sym_move] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym_raw_string_literal] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_macro_rules_BANG] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_u8] = ACTIONS(1416), - [anon_sym_i8] = ACTIONS(1416), - [anon_sym_u16] = ACTIONS(1416), - [anon_sym_i16] = ACTIONS(1416), - [anon_sym_u32] = ACTIONS(1416), - [anon_sym_i32] = ACTIONS(1416), - [anon_sym_u64] = ACTIONS(1416), - [anon_sym_i64] = ACTIONS(1416), - [anon_sym_u128] = ACTIONS(1416), - [anon_sym_i128] = ACTIONS(1416), - [anon_sym_isize] = ACTIONS(1416), - [anon_sym_usize] = ACTIONS(1416), - [anon_sym_f32] = ACTIONS(1416), - [anon_sym_f64] = ACTIONS(1416), - [anon_sym_bool] = ACTIONS(1416), - [anon_sym_str] = ACTIONS(1416), - [anon_sym_char] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_impl] = ACTIONS(1416), - [anon_sym_let] = ACTIONS(1416), - [anon_sym_loop] = ACTIONS(1416), - [anon_sym_match] = ACTIONS(1416), - [anon_sym_mod] = ACTIONS(1416), - [anon_sym_pub] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_trait] = ACTIONS(1416), - [anon_sym_type] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_unsafe] = ACTIONS(1416), - [anon_sym_use] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_COLON_COLON] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1416), - [anon_sym_move] = ACTIONS(1416), - [sym_integer_literal] = ACTIONS(1414), - [aux_sym_string_literal_token1] = ACTIONS(1414), - [sym_char_literal] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1416), - [sym_super] = ACTIONS(1416), - [sym_crate] = ACTIONS(1416), - [sym_metavariable] = ACTIONS(1414), - [sym_raw_string_literal] = ACTIONS(1414), - [sym_float_literal] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_macro_rules_BANG] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_u8] = ACTIONS(1458), + [anon_sym_i8] = ACTIONS(1458), + [anon_sym_u16] = ACTIONS(1458), + [anon_sym_i16] = ACTIONS(1458), + [anon_sym_u32] = ACTIONS(1458), + [anon_sym_i32] = ACTIONS(1458), + [anon_sym_u64] = ACTIONS(1458), + [anon_sym_i64] = ACTIONS(1458), + [anon_sym_u128] = ACTIONS(1458), + [anon_sym_i128] = ACTIONS(1458), + [anon_sym_isize] = ACTIONS(1458), + [anon_sym_usize] = ACTIONS(1458), + [anon_sym_f32] = ACTIONS(1458), + [anon_sym_f64] = ACTIONS(1458), + [anon_sym_bool] = ACTIONS(1458), + [anon_sym_str] = ACTIONS(1458), + [anon_sym_char] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_async] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_fn] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_impl] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(1458), + [anon_sym_loop] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1458), + [anon_sym_mod] = ACTIONS(1458), + [anon_sym_pub] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_trait] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_unsafe] = ACTIONS(1458), + [anon_sym_use] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_COLON_COLON] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_yield] = ACTIONS(1458), + [anon_sym_move] = ACTIONS(1458), + [sym_integer_literal] = ACTIONS(1456), + [aux_sym_string_literal_token1] = ACTIONS(1456), + [sym_char_literal] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1458), + [anon_sym_false] = ACTIONS(1458), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_crate] = ACTIONS(1458), + [sym_metavariable] = ACTIONS(1456), + [sym_raw_string_literal] = ACTIONS(1456), + [sym_float_literal] = ACTIONS(1456), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1420), - [anon_sym_i8] = ACTIONS(1420), - [anon_sym_u16] = ACTIONS(1420), - [anon_sym_i16] = ACTIONS(1420), - [anon_sym_u32] = ACTIONS(1420), - [anon_sym_i32] = ACTIONS(1420), - [anon_sym_u64] = ACTIONS(1420), - [anon_sym_i64] = ACTIONS(1420), - [anon_sym_u128] = ACTIONS(1420), - [anon_sym_i128] = ACTIONS(1420), - [anon_sym_isize] = ACTIONS(1420), - [anon_sym_usize] = ACTIONS(1420), - [anon_sym_f32] = ACTIONS(1420), - [anon_sym_f64] = ACTIONS(1420), - [anon_sym_bool] = ACTIONS(1420), - [anon_sym_str] = ACTIONS(1420), - [anon_sym_char] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_async] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_impl] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_loop] = ACTIONS(1420), - [anon_sym_match] = ACTIONS(1420), - [anon_sym_mod] = ACTIONS(1420), - [anon_sym_pub] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_trait] = ACTIONS(1420), - [anon_sym_type] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_unsafe] = ACTIONS(1420), - [anon_sym_use] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_move] = ACTIONS(1420), - [sym_integer_literal] = ACTIONS(1418), - [aux_sym_string_literal_token1] = ACTIONS(1418), - [sym_char_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1418), - [sym_raw_string_literal] = ACTIONS(1418), - [sym_float_literal] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_macro_rules_BANG] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_u8] = ACTIONS(1462), + [anon_sym_i8] = ACTIONS(1462), + [anon_sym_u16] = ACTIONS(1462), + [anon_sym_i16] = ACTIONS(1462), + [anon_sym_u32] = ACTIONS(1462), + [anon_sym_i32] = ACTIONS(1462), + [anon_sym_u64] = ACTIONS(1462), + [anon_sym_i64] = ACTIONS(1462), + [anon_sym_u128] = ACTIONS(1462), + [anon_sym_i128] = ACTIONS(1462), + [anon_sym_isize] = ACTIONS(1462), + [anon_sym_usize] = ACTIONS(1462), + [anon_sym_f32] = ACTIONS(1462), + [anon_sym_f64] = ACTIONS(1462), + [anon_sym_bool] = ACTIONS(1462), + [anon_sym_str] = ACTIONS(1462), + [anon_sym_char] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_fn] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_impl] = ACTIONS(1462), + [anon_sym_let] = ACTIONS(1462), + [anon_sym_loop] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1462), + [anon_sym_mod] = ACTIONS(1462), + [anon_sym_pub] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_trait] = ACTIONS(1462), + [anon_sym_type] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_unsafe] = ACTIONS(1462), + [anon_sym_use] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_DOT_DOT] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1462), + [anon_sym_move] = ACTIONS(1462), + [sym_integer_literal] = ACTIONS(1460), + [aux_sym_string_literal_token1] = ACTIONS(1460), + [sym_char_literal] = ACTIONS(1460), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1462), + [sym_super] = ACTIONS(1462), + [sym_crate] = ACTIONS(1462), + [sym_metavariable] = ACTIONS(1460), + [sym_raw_string_literal] = ACTIONS(1460), + [sym_float_literal] = ACTIONS(1460), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_macro_rules_BANG] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_u8] = ACTIONS(1424), - [anon_sym_i8] = ACTIONS(1424), - [anon_sym_u16] = ACTIONS(1424), - [anon_sym_i16] = ACTIONS(1424), - [anon_sym_u32] = ACTIONS(1424), - [anon_sym_i32] = ACTIONS(1424), - [anon_sym_u64] = ACTIONS(1424), - [anon_sym_i64] = ACTIONS(1424), - [anon_sym_u128] = ACTIONS(1424), - [anon_sym_i128] = ACTIONS(1424), - [anon_sym_isize] = ACTIONS(1424), - [anon_sym_usize] = ACTIONS(1424), - [anon_sym_f32] = ACTIONS(1424), - [anon_sym_f64] = ACTIONS(1424), - [anon_sym_bool] = ACTIONS(1424), - [anon_sym_str] = ACTIONS(1424), - [anon_sym_char] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_impl] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_loop] = ACTIONS(1424), - [anon_sym_match] = ACTIONS(1424), - [anon_sym_mod] = ACTIONS(1424), - [anon_sym_pub] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_trait] = ACTIONS(1424), - [anon_sym_type] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_unsafe] = ACTIONS(1424), - [anon_sym_use] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_COLON_COLON] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1424), - [sym_integer_literal] = ACTIONS(1422), - [aux_sym_string_literal_token1] = ACTIONS(1422), - [sym_char_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_crate] = ACTIONS(1424), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(1422), - [sym_float_literal] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_u8] = ACTIONS(1466), + [anon_sym_i8] = ACTIONS(1466), + [anon_sym_u16] = ACTIONS(1466), + [anon_sym_i16] = ACTIONS(1466), + [anon_sym_u32] = ACTIONS(1466), + [anon_sym_i32] = ACTIONS(1466), + [anon_sym_u64] = ACTIONS(1466), + [anon_sym_i64] = ACTIONS(1466), + [anon_sym_u128] = ACTIONS(1466), + [anon_sym_i128] = ACTIONS(1466), + [anon_sym_isize] = ACTIONS(1466), + [anon_sym_usize] = ACTIONS(1466), + [anon_sym_f32] = ACTIONS(1466), + [anon_sym_f64] = ACTIONS(1466), + [anon_sym_bool] = ACTIONS(1466), + [anon_sym_str] = ACTIONS(1466), + [anon_sym_char] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_async] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_fn] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_impl] = ACTIONS(1466), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_loop] = ACTIONS(1466), + [anon_sym_match] = ACTIONS(1466), + [anon_sym_mod] = ACTIONS(1466), + [anon_sym_pub] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_trait] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsafe] = ACTIONS(1466), + [anon_sym_use] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_COLON_COLON] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_DOT_DOT] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_yield] = ACTIONS(1466), + [anon_sym_move] = ACTIONS(1466), + [sym_integer_literal] = ACTIONS(1464), + [aux_sym_string_literal_token1] = ACTIONS(1464), + [sym_char_literal] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1466), + [anon_sym_false] = ACTIONS(1466), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1466), + [sym_super] = ACTIONS(1466), + [sym_crate] = ACTIONS(1466), + [sym_metavariable] = ACTIONS(1464), + [sym_raw_string_literal] = ACTIONS(1464), + [sym_float_literal] = ACTIONS(1464), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_macro_rules_BANG] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_u8] = ACTIONS(1428), - [anon_sym_i8] = ACTIONS(1428), - [anon_sym_u16] = ACTIONS(1428), - [anon_sym_i16] = ACTIONS(1428), - [anon_sym_u32] = ACTIONS(1428), - [anon_sym_i32] = ACTIONS(1428), - [anon_sym_u64] = ACTIONS(1428), - [anon_sym_i64] = ACTIONS(1428), - [anon_sym_u128] = ACTIONS(1428), - [anon_sym_i128] = ACTIONS(1428), - [anon_sym_isize] = ACTIONS(1428), - [anon_sym_usize] = ACTIONS(1428), - [anon_sym_f32] = ACTIONS(1428), - [anon_sym_f64] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_str] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_async] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_impl] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_loop] = ACTIONS(1428), - [anon_sym_match] = ACTIONS(1428), - [anon_sym_mod] = ACTIONS(1428), - [anon_sym_pub] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_trait] = ACTIONS(1428), - [anon_sym_type] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_unsafe] = ACTIONS(1428), - [anon_sym_use] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1428), - [anon_sym_move] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1426), - [aux_sym_string_literal_token1] = ACTIONS(1426), - [sym_char_literal] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_crate] = ACTIONS(1428), - [sym_metavariable] = ACTIONS(1426), - [sym_raw_string_literal] = ACTIONS(1426), - [sym_float_literal] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_macro_rules_BANG] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1470), + [anon_sym_i8] = ACTIONS(1470), + [anon_sym_u16] = ACTIONS(1470), + [anon_sym_i16] = ACTIONS(1470), + [anon_sym_u32] = ACTIONS(1470), + [anon_sym_i32] = ACTIONS(1470), + [anon_sym_u64] = ACTIONS(1470), + [anon_sym_i64] = ACTIONS(1470), + [anon_sym_u128] = ACTIONS(1470), + [anon_sym_i128] = ACTIONS(1470), + [anon_sym_isize] = ACTIONS(1470), + [anon_sym_usize] = ACTIONS(1470), + [anon_sym_f32] = ACTIONS(1470), + [anon_sym_f64] = ACTIONS(1470), + [anon_sym_bool] = ACTIONS(1470), + [anon_sym_str] = ACTIONS(1470), + [anon_sym_char] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_fn] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_impl] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_mod] = ACTIONS(1470), + [anon_sym_pub] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_trait] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_unsafe] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_COLON_COLON] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_yield] = ACTIONS(1470), + [anon_sym_move] = ACTIONS(1470), + [sym_integer_literal] = ACTIONS(1468), + [aux_sym_string_literal_token1] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1470), + [sym_super] = ACTIONS(1470), + [sym_crate] = ACTIONS(1470), + [sym_metavariable] = ACTIONS(1468), + [sym_raw_string_literal] = ACTIONS(1468), + [sym_float_literal] = ACTIONS(1468), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_macro_rules_BANG] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_u8] = ACTIONS(1432), - [anon_sym_i8] = ACTIONS(1432), - [anon_sym_u16] = ACTIONS(1432), - [anon_sym_i16] = ACTIONS(1432), - [anon_sym_u32] = ACTIONS(1432), - [anon_sym_i32] = ACTIONS(1432), - [anon_sym_u64] = ACTIONS(1432), - [anon_sym_i64] = ACTIONS(1432), - [anon_sym_u128] = ACTIONS(1432), - [anon_sym_i128] = ACTIONS(1432), - [anon_sym_isize] = ACTIONS(1432), - [anon_sym_usize] = ACTIONS(1432), - [anon_sym_f32] = ACTIONS(1432), - [anon_sym_f64] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_str] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_async] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_impl] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(1432), - [anon_sym_loop] = ACTIONS(1432), - [anon_sym_match] = ACTIONS(1432), - [anon_sym_mod] = ACTIONS(1432), - [anon_sym_pub] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_trait] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsafe] = ACTIONS(1432), - [anon_sym_use] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1432), - [sym_super] = ACTIONS(1432), - [sym_crate] = ACTIONS(1432), - [sym_metavariable] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_macro_rules_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_u8] = ACTIONS(1474), + [anon_sym_i8] = ACTIONS(1474), + [anon_sym_u16] = ACTIONS(1474), + [anon_sym_i16] = ACTIONS(1474), + [anon_sym_u32] = ACTIONS(1474), + [anon_sym_i32] = ACTIONS(1474), + [anon_sym_u64] = ACTIONS(1474), + [anon_sym_i64] = ACTIONS(1474), + [anon_sym_u128] = ACTIONS(1474), + [anon_sym_i128] = ACTIONS(1474), + [anon_sym_isize] = ACTIONS(1474), + [anon_sym_usize] = ACTIONS(1474), + [anon_sym_f32] = ACTIONS(1474), + [anon_sym_f64] = ACTIONS(1474), + [anon_sym_bool] = ACTIONS(1474), + [anon_sym_str] = ACTIONS(1474), + [anon_sym_char] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_fn] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_impl] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_pub] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_trait] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_unsafe] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_COLON_COLON] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_move] = ACTIONS(1474), + [sym_integer_literal] = ACTIONS(1472), + [aux_sym_string_literal_token1] = ACTIONS(1472), + [sym_char_literal] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_crate] = ACTIONS(1474), + [sym_metavariable] = ACTIONS(1472), + [sym_raw_string_literal] = ACTIONS(1472), + [sym_float_literal] = ACTIONS(1472), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_macro_rules_BANG] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_u8] = ACTIONS(1436), - [anon_sym_i8] = ACTIONS(1436), - [anon_sym_u16] = ACTIONS(1436), - [anon_sym_i16] = ACTIONS(1436), - [anon_sym_u32] = ACTIONS(1436), - [anon_sym_i32] = ACTIONS(1436), - [anon_sym_u64] = ACTIONS(1436), - [anon_sym_i64] = ACTIONS(1436), - [anon_sym_u128] = ACTIONS(1436), - [anon_sym_i128] = ACTIONS(1436), - [anon_sym_isize] = ACTIONS(1436), - [anon_sym_usize] = ACTIONS(1436), - [anon_sym_f32] = ACTIONS(1436), - [anon_sym_f64] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_str] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_async] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_impl] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_pub] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_trait] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_unsafe] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_COLON_COLON] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_DOT_DOT] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_move] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1436), - [sym_super] = ACTIONS(1436), - [sym_crate] = ACTIONS(1436), - [sym_metavariable] = ACTIONS(1434), - [sym_raw_string_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_macro_rules_BANG] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_u8] = ACTIONS(1478), + [anon_sym_i8] = ACTIONS(1478), + [anon_sym_u16] = ACTIONS(1478), + [anon_sym_i16] = ACTIONS(1478), + [anon_sym_u32] = ACTIONS(1478), + [anon_sym_i32] = ACTIONS(1478), + [anon_sym_u64] = ACTIONS(1478), + [anon_sym_i64] = ACTIONS(1478), + [anon_sym_u128] = ACTIONS(1478), + [anon_sym_i128] = ACTIONS(1478), + [anon_sym_isize] = ACTIONS(1478), + [anon_sym_usize] = ACTIONS(1478), + [anon_sym_f32] = ACTIONS(1478), + [anon_sym_f64] = ACTIONS(1478), + [anon_sym_bool] = ACTIONS(1478), + [anon_sym_str] = ACTIONS(1478), + [anon_sym_char] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_impl] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_pub] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_trait] = ACTIONS(1478), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1478), + [anon_sym_move] = ACTIONS(1478), + [sym_integer_literal] = ACTIONS(1476), + [aux_sym_string_literal_token1] = ACTIONS(1476), + [sym_char_literal] = ACTIONS(1476), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1478), + [sym_super] = ACTIONS(1478), + [sym_crate] = ACTIONS(1478), + [sym_metavariable] = ACTIONS(1476), + [sym_raw_string_literal] = ACTIONS(1476), + [sym_float_literal] = ACTIONS(1476), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_macro_rules_BANG] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_impl] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_pub] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_trait] = ACTIONS(1440), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_unsafe] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1440), - [sym_super] = ACTIONS(1440), - [sym_crate] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym_raw_string_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_macro_rules_BANG] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_u8] = ACTIONS(1482), + [anon_sym_i8] = ACTIONS(1482), + [anon_sym_u16] = ACTIONS(1482), + [anon_sym_i16] = ACTIONS(1482), + [anon_sym_u32] = ACTIONS(1482), + [anon_sym_i32] = ACTIONS(1482), + [anon_sym_u64] = ACTIONS(1482), + [anon_sym_i64] = ACTIONS(1482), + [anon_sym_u128] = ACTIONS(1482), + [anon_sym_i128] = ACTIONS(1482), + [anon_sym_isize] = ACTIONS(1482), + [anon_sym_usize] = ACTIONS(1482), + [anon_sym_f32] = ACTIONS(1482), + [anon_sym_f64] = ACTIONS(1482), + [anon_sym_bool] = ACTIONS(1482), + [anon_sym_str] = ACTIONS(1482), + [anon_sym_char] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_async] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_fn] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1482), + [anon_sym_loop] = ACTIONS(1482), + [anon_sym_match] = ACTIONS(1482), + [anon_sym_mod] = ACTIONS(1482), + [anon_sym_pub] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_trait] = ACTIONS(1482), + [anon_sym_type] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_use] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_COLON_COLON] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1482), + [anon_sym_move] = ACTIONS(1482), + [sym_integer_literal] = ACTIONS(1480), + [aux_sym_string_literal_token1] = ACTIONS(1480), + [sym_char_literal] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1482), + [anon_sym_false] = ACTIONS(1482), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1482), + [sym_super] = ACTIONS(1482), + [sym_crate] = ACTIONS(1482), + [sym_metavariable] = ACTIONS(1480), + [sym_raw_string_literal] = ACTIONS(1480), + [sym_float_literal] = ACTIONS(1480), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_macro_rules_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_async] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_impl] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_loop] = ACTIONS(1444), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_mod] = ACTIONS(1444), - [anon_sym_pub] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_trait] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1444), - [anon_sym_use] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1444), - [sym_super] = ACTIONS(1444), - [sym_crate] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym_raw_string_literal] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), - [sym_block_comment] = ACTIONS(3), - }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_macro_rules_BANG] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_impl] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_loop] = ACTIONS(1448), - [anon_sym_match] = ACTIONS(1448), - [anon_sym_mod] = ACTIONS(1448), - [anon_sym_pub] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_trait] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1448), - [anon_sym_use] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_DOT_DOT] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym_raw_string_literal] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), - [sym_block_comment] = ACTIONS(3), - }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_macro_rules_BANG] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_DOT_DOT] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym_raw_string_literal] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), - [sym_block_comment] = ACTIONS(3), - }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_macro_rules_BANG] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_async] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_impl] = ACTIONS(1456), - [anon_sym_let] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_mod] = ACTIONS(1456), - [anon_sym_pub] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_trait] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_use] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym_raw_string_literal] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), - [sym_block_comment] = ACTIONS(3), - }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_macro_rules_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1460), - [anon_sym_i8] = ACTIONS(1460), - [anon_sym_u16] = ACTIONS(1460), - [anon_sym_i16] = ACTIONS(1460), - [anon_sym_u32] = ACTIONS(1460), - [anon_sym_i32] = ACTIONS(1460), - [anon_sym_u64] = ACTIONS(1460), - [anon_sym_i64] = ACTIONS(1460), - [anon_sym_u128] = ACTIONS(1460), - [anon_sym_i128] = ACTIONS(1460), - [anon_sym_isize] = ACTIONS(1460), - [anon_sym_usize] = ACTIONS(1460), - [anon_sym_f32] = ACTIONS(1460), - [anon_sym_f64] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_str] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_async] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_impl] = ACTIONS(1460), - [anon_sym_let] = ACTIONS(1460), - [anon_sym_loop] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1460), - [anon_sym_mod] = ACTIONS(1460), - [anon_sym_pub] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_trait] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_unsafe] = ACTIONS(1460), - [anon_sym_use] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1460), - [sym_super] = ACTIONS(1460), - [sym_crate] = ACTIONS(1460), - [sym_metavariable] = ACTIONS(1458), - [sym_raw_string_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), - [sym_block_comment] = ACTIONS(3), - }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_macro_rules_BANG] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_u8] = ACTIONS(1464), - [anon_sym_i8] = ACTIONS(1464), - [anon_sym_u16] = ACTIONS(1464), - [anon_sym_i16] = ACTIONS(1464), - [anon_sym_u32] = ACTIONS(1464), - [anon_sym_i32] = ACTIONS(1464), - [anon_sym_u64] = ACTIONS(1464), - [anon_sym_i64] = ACTIONS(1464), - [anon_sym_u128] = ACTIONS(1464), - [anon_sym_i128] = ACTIONS(1464), - [anon_sym_isize] = ACTIONS(1464), - [anon_sym_usize] = ACTIONS(1464), - [anon_sym_f32] = ACTIONS(1464), - [anon_sym_f64] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_str] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_impl] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_pub] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_trait] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_unsafe] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_COLON_COLON] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1464), - [anon_sym_move] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1462), - [aux_sym_string_literal_token1] = ACTIONS(1462), - [sym_char_literal] = ACTIONS(1462), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1464), - [sym_super] = ACTIONS(1464), - [sym_crate] = ACTIONS(1464), - [sym_metavariable] = ACTIONS(1462), - [sym_raw_string_literal] = ACTIONS(1462), - [sym_float_literal] = ACTIONS(1462), - [sym_block_comment] = ACTIONS(3), - }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_macro_rules_BANG] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_impl] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_loop] = ACTIONS(1468), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_mod] = ACTIONS(1468), - [anon_sym_pub] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_trait] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1468), - [anon_sym_use] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_COLON_COLON] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_DOT_DOT] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_yield] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1466), - [aux_sym_string_literal_token1] = ACTIONS(1466), - [sym_char_literal] = ACTIONS(1466), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_crate] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1466), - [sym_raw_string_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1466), - [sym_block_comment] = ACTIONS(3), - }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_macro_rules_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_impl] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_mod] = ACTIONS(1472), - [anon_sym_pub] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_trait] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_COLON_COLON] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_move] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1470), - [aux_sym_string_literal_token1] = ACTIONS(1470), - [sym_char_literal] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1470), - [sym_raw_string_literal] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), - [sym_block_comment] = ACTIONS(3), - }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_macro_rules_BANG] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1476), - [anon_sym_i8] = ACTIONS(1476), - [anon_sym_u16] = ACTIONS(1476), - [anon_sym_i16] = ACTIONS(1476), - [anon_sym_u32] = ACTIONS(1476), - [anon_sym_i32] = ACTIONS(1476), - [anon_sym_u64] = ACTIONS(1476), - [anon_sym_i64] = ACTIONS(1476), - [anon_sym_u128] = ACTIONS(1476), - [anon_sym_i128] = ACTIONS(1476), - [anon_sym_isize] = ACTIONS(1476), - [anon_sym_usize] = ACTIONS(1476), - [anon_sym_f32] = ACTIONS(1476), - [anon_sym_f64] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_str] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_impl] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(1476), - [anon_sym_loop] = ACTIONS(1476), - [anon_sym_match] = ACTIONS(1476), - [anon_sym_mod] = ACTIONS(1476), - [anon_sym_pub] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_trait] = ACTIONS(1476), - [anon_sym_type] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1476), - [anon_sym_use] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_COLON_COLON] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_yield] = ACTIONS(1476), - [anon_sym_move] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1474), - [aux_sym_string_literal_token1] = ACTIONS(1474), - [sym_char_literal] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1476), - [sym_super] = ACTIONS(1476), - [sym_crate] = ACTIONS(1476), - [sym_metavariable] = ACTIONS(1474), - [sym_raw_string_literal] = ACTIONS(1474), - [sym_float_literal] = ACTIONS(1474), - [sym_block_comment] = ACTIONS(3), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_macro_rules_BANG] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_u8] = ACTIONS(1480), - [anon_sym_i8] = ACTIONS(1480), - [anon_sym_u16] = ACTIONS(1480), - [anon_sym_i16] = ACTIONS(1480), - [anon_sym_u32] = ACTIONS(1480), - [anon_sym_i32] = ACTIONS(1480), - [anon_sym_u64] = ACTIONS(1480), - [anon_sym_i64] = ACTIONS(1480), - [anon_sym_u128] = ACTIONS(1480), - [anon_sym_i128] = ACTIONS(1480), - [anon_sym_isize] = ACTIONS(1480), - [anon_sym_usize] = ACTIONS(1480), - [anon_sym_f32] = ACTIONS(1480), - [anon_sym_f64] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_str] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [anon_sym_async] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_impl] = ACTIONS(1480), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_loop] = ACTIONS(1480), - [anon_sym_match] = ACTIONS(1480), - [anon_sym_mod] = ACTIONS(1480), - [anon_sym_pub] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_trait] = ACTIONS(1480), - [anon_sym_type] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_unsafe] = ACTIONS(1480), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1480), - [anon_sym_move] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1478), - [aux_sym_string_literal_token1] = ACTIONS(1478), - [sym_char_literal] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1480), - [sym_super] = ACTIONS(1480), - [sym_crate] = ACTIONS(1480), - [sym_metavariable] = ACTIONS(1478), - [sym_raw_string_literal] = ACTIONS(1478), - [sym_float_literal] = ACTIONS(1478), - [sym_block_comment] = ACTIONS(3), - }, - [361] = { - [sym_attribute_item] = STATE(566), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_match_arm] = STATE(514), - [sym_last_match_arm] = STATE(2477), - [sym_match_pattern] = STATE(2472), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2151), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_enum_variant_list_repeat1] = STATE(566), - [aux_sym_match_block_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [362] = { [ts_builtin_sym_end] = ACTIONS(1484), [sym_identifier] = ACTIONS(1486), [anon_sym_SEMI] = ACTIONS(1484), @@ -54271,7 +51889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1484), [sym_block_comment] = ACTIONS(3), }, - [363] = { + [352] = { [ts_builtin_sym_end] = ACTIONS(1488), [sym_identifier] = ACTIONS(1490), [anon_sym_SEMI] = ACTIONS(1488), @@ -54348,7 +51966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1488), [sym_block_comment] = ACTIONS(3), }, - [364] = { + [353] = { [ts_builtin_sym_end] = ACTIONS(1492), [sym_identifier] = ACTIONS(1494), [anon_sym_SEMI] = ACTIONS(1492), @@ -54425,7 +52043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1492), [sym_block_comment] = ACTIONS(3), }, - [365] = { + [354] = { [ts_builtin_sym_end] = ACTIONS(1496), [sym_identifier] = ACTIONS(1498), [anon_sym_SEMI] = ACTIONS(1496), @@ -54502,7 +52120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1496), [sym_block_comment] = ACTIONS(3), }, - [366] = { + [355] = { [ts_builtin_sym_end] = ACTIONS(1500), [sym_identifier] = ACTIONS(1502), [anon_sym_SEMI] = ACTIONS(1500), @@ -54579,7 +52197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1500), [sym_block_comment] = ACTIONS(3), }, - [367] = { + [356] = { [ts_builtin_sym_end] = ACTIONS(1504), [sym_identifier] = ACTIONS(1506), [anon_sym_SEMI] = ACTIONS(1504), @@ -54656,7 +52274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1504), [sym_block_comment] = ACTIONS(3), }, - [368] = { + [357] = { [ts_builtin_sym_end] = ACTIONS(1508), [sym_identifier] = ACTIONS(1510), [anon_sym_SEMI] = ACTIONS(1508), @@ -54733,7 +52351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1508), [sym_block_comment] = ACTIONS(3), }, - [369] = { + [358] = { [ts_builtin_sym_end] = ACTIONS(1512), [sym_identifier] = ACTIONS(1514), [anon_sym_SEMI] = ACTIONS(1512), @@ -54810,7 +52428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1512), [sym_block_comment] = ACTIONS(3), }, - [370] = { + [359] = { [ts_builtin_sym_end] = ACTIONS(1516), [sym_identifier] = ACTIONS(1518), [anon_sym_SEMI] = ACTIONS(1516), @@ -54887,7 +52505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1516), [sym_block_comment] = ACTIONS(3), }, - [371] = { + [360] = { [ts_builtin_sym_end] = ACTIONS(1520), [sym_identifier] = ACTIONS(1522), [anon_sym_SEMI] = ACTIONS(1520), @@ -54964,1008 +52582,1008 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1520), [sym_block_comment] = ACTIONS(3), }, - [372] = { - [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), + [361] = { + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_match_arm] = STATE(503), + [sym_last_match_arm] = STATE(2517), + [sym_match_pattern] = STATE(2518), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1908), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), [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), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), + [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(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [373] = { - [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), + [362] = { + [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), }, - [374] = { - [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), + [363] = { + [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), }, - [375] = { - [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), + [364] = { + [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), }, - [376] = { - [ts_builtin_sym_end] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_macro_rules_BANG] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_u8] = ACTIONS(1542), - [anon_sym_i8] = ACTIONS(1542), - [anon_sym_u16] = ACTIONS(1542), - [anon_sym_i16] = ACTIONS(1542), - [anon_sym_u32] = ACTIONS(1542), - [anon_sym_i32] = ACTIONS(1542), - [anon_sym_u64] = ACTIONS(1542), - [anon_sym_i64] = ACTIONS(1542), - [anon_sym_u128] = ACTIONS(1542), - [anon_sym_i128] = ACTIONS(1542), - [anon_sym_isize] = ACTIONS(1542), - [anon_sym_usize] = ACTIONS(1542), - [anon_sym_f32] = ACTIONS(1542), - [anon_sym_f64] = ACTIONS(1542), - [anon_sym_bool] = ACTIONS(1542), - [anon_sym_str] = ACTIONS(1542), - [anon_sym_char] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_default] = ACTIONS(1542), - [anon_sym_enum] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_impl] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_loop] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_mod] = ACTIONS(1542), - [anon_sym_pub] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_static] = ACTIONS(1542), - [anon_sym_struct] = ACTIONS(1542), - [anon_sym_trait] = ACTIONS(1542), - [anon_sym_type] = ACTIONS(1542), - [anon_sym_union] = ACTIONS(1542), - [anon_sym_unsafe] = ACTIONS(1542), - [anon_sym_use] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_yield] = ACTIONS(1542), - [anon_sym_move] = ACTIONS(1542), - [sym_integer_literal] = ACTIONS(1540), - [aux_sym_string_literal_token1] = ACTIONS(1540), - [sym_char_literal] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1540), - [sym_raw_string_literal] = ACTIONS(1540), - [sym_float_literal] = ACTIONS(1540), + [365] = { + [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), }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1544), - [sym_identifier] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_macro_rules_BANG] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_u8] = ACTIONS(1546), - [anon_sym_i8] = ACTIONS(1546), - [anon_sym_u16] = ACTIONS(1546), - [anon_sym_i16] = ACTIONS(1546), - [anon_sym_u32] = ACTIONS(1546), - [anon_sym_i32] = ACTIONS(1546), - [anon_sym_u64] = ACTIONS(1546), - [anon_sym_i64] = ACTIONS(1546), - [anon_sym_u128] = ACTIONS(1546), - [anon_sym_i128] = ACTIONS(1546), - [anon_sym_isize] = ACTIONS(1546), - [anon_sym_usize] = ACTIONS(1546), - [anon_sym_f32] = ACTIONS(1546), - [anon_sym_f64] = ACTIONS(1546), - [anon_sym_bool] = ACTIONS(1546), - [anon_sym_str] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_impl] = ACTIONS(1546), - [anon_sym_let] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_mod] = ACTIONS(1546), - [anon_sym_pub] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_trait] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_use] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_COLON_COLON] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_yield] = ACTIONS(1546), - [anon_sym_move] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1544), - [aux_sym_string_literal_token1] = ACTIONS(1544), - [sym_char_literal] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(1544), - [sym_float_literal] = ACTIONS(1544), + [366] = { + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_macro_rules_BANG] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_u8] = ACTIONS(1544), + [anon_sym_i8] = ACTIONS(1544), + [anon_sym_u16] = ACTIONS(1544), + [anon_sym_i16] = ACTIONS(1544), + [anon_sym_u32] = ACTIONS(1544), + [anon_sym_i32] = ACTIONS(1544), + [anon_sym_u64] = ACTIONS(1544), + [anon_sym_i64] = ACTIONS(1544), + [anon_sym_u128] = ACTIONS(1544), + [anon_sym_i128] = ACTIONS(1544), + [anon_sym_isize] = ACTIONS(1544), + [anon_sym_usize] = ACTIONS(1544), + [anon_sym_f32] = ACTIONS(1544), + [anon_sym_f64] = ACTIONS(1544), + [anon_sym_bool] = ACTIONS(1544), + [anon_sym_str] = ACTIONS(1544), + [anon_sym_char] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_async] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_impl] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1544), + [anon_sym_match] = ACTIONS(1544), + [anon_sym_mod] = ACTIONS(1544), + [anon_sym_pub] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_trait] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_unsafe] = ACTIONS(1544), + [anon_sym_use] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_move] = ACTIONS(1544), + [sym_integer_literal] = ACTIONS(1542), + [aux_sym_string_literal_token1] = ACTIONS(1542), + [sym_char_literal] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1544), + [sym_super] = ACTIONS(1544), + [sym_crate] = ACTIONS(1544), + [sym_metavariable] = ACTIONS(1542), + [sym_raw_string_literal] = ACTIONS(1542), + [sym_float_literal] = ACTIONS(1542), [sym_block_comment] = ACTIONS(3), }, - [378] = { - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_macro_rules_BANG] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1550), - [anon_sym_i8] = ACTIONS(1550), - [anon_sym_u16] = ACTIONS(1550), - [anon_sym_i16] = ACTIONS(1550), - [anon_sym_u32] = ACTIONS(1550), - [anon_sym_i32] = ACTIONS(1550), - [anon_sym_u64] = ACTIONS(1550), - [anon_sym_i64] = ACTIONS(1550), - [anon_sym_u128] = ACTIONS(1550), - [anon_sym_i128] = ACTIONS(1550), - [anon_sym_isize] = ACTIONS(1550), - [anon_sym_usize] = ACTIONS(1550), - [anon_sym_f32] = ACTIONS(1550), - [anon_sym_f64] = ACTIONS(1550), - [anon_sym_bool] = ACTIONS(1550), - [anon_sym_str] = ACTIONS(1550), - [anon_sym_char] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_async] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_default] = ACTIONS(1550), - [anon_sym_enum] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_impl] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1550), - [anon_sym_pub] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_struct] = ACTIONS(1550), - [anon_sym_trait] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_union] = ACTIONS(1550), - [anon_sym_unsafe] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_move] = ACTIONS(1550), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1550), - [sym_super] = ACTIONS(1550), - [sym_crate] = ACTIONS(1550), - [sym_metavariable] = ACTIONS(1548), - [sym_raw_string_literal] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), + [367] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_macro_rules_BANG] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_u8] = ACTIONS(1548), + [anon_sym_i8] = ACTIONS(1548), + [anon_sym_u16] = ACTIONS(1548), + [anon_sym_i16] = ACTIONS(1548), + [anon_sym_u32] = ACTIONS(1548), + [anon_sym_i32] = ACTIONS(1548), + [anon_sym_u64] = ACTIONS(1548), + [anon_sym_i64] = ACTIONS(1548), + [anon_sym_u128] = ACTIONS(1548), + [anon_sym_i128] = ACTIONS(1548), + [anon_sym_isize] = ACTIONS(1548), + [anon_sym_usize] = ACTIONS(1548), + [anon_sym_f32] = ACTIONS(1548), + [anon_sym_f64] = ACTIONS(1548), + [anon_sym_bool] = ACTIONS(1548), + [anon_sym_str] = ACTIONS(1548), + [anon_sym_char] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_async] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_fn] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_impl] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_loop] = ACTIONS(1548), + [anon_sym_match] = ACTIONS(1548), + [anon_sym_mod] = ACTIONS(1548), + [anon_sym_pub] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_trait] = ACTIONS(1548), + [anon_sym_type] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_unsafe] = ACTIONS(1548), + [anon_sym_use] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_COLON_COLON] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_DOT_DOT] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1548), + [anon_sym_move] = ACTIONS(1548), + [sym_integer_literal] = ACTIONS(1546), + [aux_sym_string_literal_token1] = ACTIONS(1546), + [sym_char_literal] = ACTIONS(1546), + [anon_sym_true] = ACTIONS(1548), + [anon_sym_false] = ACTIONS(1548), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1548), + [sym_super] = ACTIONS(1548), + [sym_crate] = ACTIONS(1548), + [sym_metavariable] = ACTIONS(1546), + [sym_raw_string_literal] = ACTIONS(1546), + [sym_float_literal] = ACTIONS(1546), [sym_block_comment] = ACTIONS(3), }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1552), - [sym_identifier] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_macro_rules_BANG] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_u8] = ACTIONS(1554), - [anon_sym_i8] = ACTIONS(1554), - [anon_sym_u16] = ACTIONS(1554), - [anon_sym_i16] = ACTIONS(1554), - [anon_sym_u32] = ACTIONS(1554), - [anon_sym_i32] = ACTIONS(1554), - [anon_sym_u64] = ACTIONS(1554), - [anon_sym_i64] = ACTIONS(1554), - [anon_sym_u128] = ACTIONS(1554), - [anon_sym_i128] = ACTIONS(1554), - [anon_sym_isize] = ACTIONS(1554), - [anon_sym_usize] = ACTIONS(1554), - [anon_sym_f32] = ACTIONS(1554), - [anon_sym_f64] = ACTIONS(1554), - [anon_sym_bool] = ACTIONS(1554), - [anon_sym_str] = ACTIONS(1554), - [anon_sym_char] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_enum] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_impl] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_mod] = ACTIONS(1554), - [anon_sym_pub] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_struct] = ACTIONS(1554), - [anon_sym_trait] = ACTIONS(1554), - [anon_sym_type] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_unsafe] = ACTIONS(1554), - [anon_sym_use] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_COLON_COLON] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_yield] = ACTIONS(1554), - [anon_sym_move] = ACTIONS(1554), - [sym_integer_literal] = ACTIONS(1552), - [aux_sym_string_literal_token1] = ACTIONS(1552), - [sym_char_literal] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1554), - [sym_super] = ACTIONS(1554), - [sym_crate] = ACTIONS(1554), - [sym_metavariable] = ACTIONS(1552), - [sym_raw_string_literal] = ACTIONS(1552), - [sym_float_literal] = ACTIONS(1552), + [368] = { + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_macro_rules_BANG] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_u8] = ACTIONS(1552), + [anon_sym_i8] = ACTIONS(1552), + [anon_sym_u16] = ACTIONS(1552), + [anon_sym_i16] = ACTIONS(1552), + [anon_sym_u32] = ACTIONS(1552), + [anon_sym_i32] = ACTIONS(1552), + [anon_sym_u64] = ACTIONS(1552), + [anon_sym_i64] = ACTIONS(1552), + [anon_sym_u128] = ACTIONS(1552), + [anon_sym_i128] = ACTIONS(1552), + [anon_sym_isize] = ACTIONS(1552), + [anon_sym_usize] = ACTIONS(1552), + [anon_sym_f32] = ACTIONS(1552), + [anon_sym_f64] = ACTIONS(1552), + [anon_sym_bool] = ACTIONS(1552), + [anon_sym_str] = ACTIONS(1552), + [anon_sym_char] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_async] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_fn] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_impl] = ACTIONS(1552), + [anon_sym_let] = ACTIONS(1552), + [anon_sym_loop] = ACTIONS(1552), + [anon_sym_match] = ACTIONS(1552), + [anon_sym_mod] = ACTIONS(1552), + [anon_sym_pub] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_trait] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_unsafe] = ACTIONS(1552), + [anon_sym_use] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_COLON_COLON] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_yield] = ACTIONS(1552), + [anon_sym_move] = ACTIONS(1552), + [sym_integer_literal] = ACTIONS(1550), + [aux_sym_string_literal_token1] = ACTIONS(1550), + [sym_char_literal] = ACTIONS(1550), + [anon_sym_true] = ACTIONS(1552), + [anon_sym_false] = ACTIONS(1552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1552), + [sym_super] = ACTIONS(1552), + [sym_crate] = ACTIONS(1552), + [sym_metavariable] = ACTIONS(1550), + [sym_raw_string_literal] = ACTIONS(1550), + [sym_float_literal] = ACTIONS(1550), [sym_block_comment] = ACTIONS(3), }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1556), - [sym_identifier] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_macro_rules_BANG] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_u8] = ACTIONS(1558), - [anon_sym_i8] = ACTIONS(1558), - [anon_sym_u16] = ACTIONS(1558), - [anon_sym_i16] = ACTIONS(1558), - [anon_sym_u32] = ACTIONS(1558), - [anon_sym_i32] = ACTIONS(1558), - [anon_sym_u64] = ACTIONS(1558), - [anon_sym_i64] = ACTIONS(1558), - [anon_sym_u128] = ACTIONS(1558), - [anon_sym_i128] = ACTIONS(1558), - [anon_sym_isize] = ACTIONS(1558), - [anon_sym_usize] = ACTIONS(1558), - [anon_sym_f32] = ACTIONS(1558), - [anon_sym_f64] = ACTIONS(1558), - [anon_sym_bool] = ACTIONS(1558), - [anon_sym_str] = ACTIONS(1558), - [anon_sym_char] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1558), - [anon_sym_enum] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_impl] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_loop] = ACTIONS(1558), - [anon_sym_match] = ACTIONS(1558), - [anon_sym_mod] = ACTIONS(1558), - [anon_sym_pub] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_static] = ACTIONS(1558), - [anon_sym_struct] = ACTIONS(1558), - [anon_sym_trait] = ACTIONS(1558), - [anon_sym_type] = ACTIONS(1558), - [anon_sym_union] = ACTIONS(1558), - [anon_sym_unsafe] = ACTIONS(1558), - [anon_sym_use] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_move] = ACTIONS(1558), - [sym_integer_literal] = ACTIONS(1556), - [aux_sym_string_literal_token1] = ACTIONS(1556), - [sym_char_literal] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1558), - [sym_super] = ACTIONS(1558), - [sym_crate] = ACTIONS(1558), - [sym_metavariable] = ACTIONS(1556), - [sym_raw_string_literal] = ACTIONS(1556), - [sym_float_literal] = ACTIONS(1556), + [369] = { + [ts_builtin_sym_end] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_macro_rules_BANG] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_u8] = ACTIONS(1556), + [anon_sym_i8] = ACTIONS(1556), + [anon_sym_u16] = ACTIONS(1556), + [anon_sym_i16] = ACTIONS(1556), + [anon_sym_u32] = ACTIONS(1556), + [anon_sym_i32] = ACTIONS(1556), + [anon_sym_u64] = ACTIONS(1556), + [anon_sym_i64] = ACTIONS(1556), + [anon_sym_u128] = ACTIONS(1556), + [anon_sym_i128] = ACTIONS(1556), + [anon_sym_isize] = ACTIONS(1556), + [anon_sym_usize] = ACTIONS(1556), + [anon_sym_f32] = ACTIONS(1556), + [anon_sym_f64] = ACTIONS(1556), + [anon_sym_bool] = ACTIONS(1556), + [anon_sym_str] = ACTIONS(1556), + [anon_sym_char] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_fn] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_impl] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_mod] = ACTIONS(1556), + [anon_sym_pub] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_trait] = ACTIONS(1556), + [anon_sym_type] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_unsafe] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_yield] = ACTIONS(1556), + [anon_sym_move] = ACTIONS(1556), + [sym_integer_literal] = ACTIONS(1554), + [aux_sym_string_literal_token1] = ACTIONS(1554), + [sym_char_literal] = ACTIONS(1554), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1556), + [sym_super] = ACTIONS(1556), + [sym_crate] = ACTIONS(1556), + [sym_metavariable] = ACTIONS(1554), + [sym_raw_string_literal] = ACTIONS(1554), + [sym_float_literal] = ACTIONS(1554), [sym_block_comment] = ACTIONS(3), }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_identifier] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_macro_rules_BANG] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_u8] = ACTIONS(1562), - [anon_sym_i8] = ACTIONS(1562), - [anon_sym_u16] = ACTIONS(1562), - [anon_sym_i16] = ACTIONS(1562), - [anon_sym_u32] = ACTIONS(1562), - [anon_sym_i32] = ACTIONS(1562), - [anon_sym_u64] = ACTIONS(1562), - [anon_sym_i64] = ACTIONS(1562), - [anon_sym_u128] = ACTIONS(1562), - [anon_sym_i128] = ACTIONS(1562), - [anon_sym_isize] = ACTIONS(1562), - [anon_sym_usize] = ACTIONS(1562), - [anon_sym_f32] = ACTIONS(1562), - [anon_sym_f64] = ACTIONS(1562), - [anon_sym_bool] = ACTIONS(1562), - [anon_sym_str] = ACTIONS(1562), - [anon_sym_char] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_impl] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_loop] = ACTIONS(1562), - [anon_sym_match] = ACTIONS(1562), - [anon_sym_mod] = ACTIONS(1562), - [anon_sym_pub] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_struct] = ACTIONS(1562), - [anon_sym_trait] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_union] = ACTIONS(1562), - [anon_sym_unsafe] = ACTIONS(1562), - [anon_sym_use] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_COLON_COLON] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_yield] = ACTIONS(1562), - [anon_sym_move] = ACTIONS(1562), - [sym_integer_literal] = ACTIONS(1560), - [aux_sym_string_literal_token1] = ACTIONS(1560), - [sym_char_literal] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1562), - [anon_sym_false] = ACTIONS(1562), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1562), - [sym_super] = ACTIONS(1562), - [sym_crate] = ACTIONS(1562), - [sym_metavariable] = ACTIONS(1560), - [sym_raw_string_literal] = ACTIONS(1560), - [sym_float_literal] = ACTIONS(1560), + [370] = { + [ts_builtin_sym_end] = ACTIONS(1558), + [sym_identifier] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_macro_rules_BANG] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_u8] = ACTIONS(1560), + [anon_sym_i8] = ACTIONS(1560), + [anon_sym_u16] = ACTIONS(1560), + [anon_sym_i16] = ACTIONS(1560), + [anon_sym_u32] = ACTIONS(1560), + [anon_sym_i32] = ACTIONS(1560), + [anon_sym_u64] = ACTIONS(1560), + [anon_sym_i64] = ACTIONS(1560), + [anon_sym_u128] = ACTIONS(1560), + [anon_sym_i128] = ACTIONS(1560), + [anon_sym_isize] = ACTIONS(1560), + [anon_sym_usize] = ACTIONS(1560), + [anon_sym_f32] = ACTIONS(1560), + [anon_sym_f64] = ACTIONS(1560), + [anon_sym_bool] = ACTIONS(1560), + [anon_sym_str] = ACTIONS(1560), + [anon_sym_char] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_enum] = ACTIONS(1560), + [anon_sym_fn] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_impl] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_mod] = ACTIONS(1560), + [anon_sym_pub] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1560), + [anon_sym_struct] = ACTIONS(1560), + [anon_sym_trait] = ACTIONS(1560), + [anon_sym_type] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_unsafe] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_COLON_COLON] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_DOT_DOT] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_yield] = ACTIONS(1560), + [anon_sym_move] = ACTIONS(1560), + [sym_integer_literal] = ACTIONS(1558), + [aux_sym_string_literal_token1] = ACTIONS(1558), + [sym_char_literal] = ACTIONS(1558), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1560), + [sym_super] = ACTIONS(1560), + [sym_crate] = ACTIONS(1560), + [sym_metavariable] = ACTIONS(1558), + [sym_raw_string_literal] = ACTIONS(1558), + [sym_float_literal] = ACTIONS(1558), [sym_block_comment] = ACTIONS(3), }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_identifier] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_macro_rules_BANG] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_default] = ACTIONS(1566), - [anon_sym_enum] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1566), - [anon_sym_for] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_impl] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1566), - [anon_sym_loop] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1566), - [anon_sym_mod] = ACTIONS(1566), - [anon_sym_pub] = ACTIONS(1566), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_struct] = ACTIONS(1566), - [anon_sym_trait] = ACTIONS(1566), - [anon_sym_type] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1566), - [anon_sym_unsafe] = ACTIONS(1566), - [anon_sym_use] = ACTIONS(1566), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_COLON_COLON] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_DOT_DOT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_yield] = ACTIONS(1566), - [anon_sym_move] = ACTIONS(1566), - [sym_integer_literal] = ACTIONS(1564), - [aux_sym_string_literal_token1] = ACTIONS(1564), - [sym_char_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1566), - [anon_sym_false] = ACTIONS(1566), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1566), - [sym_super] = ACTIONS(1566), - [sym_crate] = ACTIONS(1566), - [sym_metavariable] = ACTIONS(1564), - [sym_raw_string_literal] = ACTIONS(1564), - [sym_float_literal] = ACTIONS(1564), + [371] = { + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_identifier] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_macro_rules_BANG] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_u8] = ACTIONS(1564), + [anon_sym_i8] = ACTIONS(1564), + [anon_sym_u16] = ACTIONS(1564), + [anon_sym_i16] = ACTIONS(1564), + [anon_sym_u32] = ACTIONS(1564), + [anon_sym_i32] = ACTIONS(1564), + [anon_sym_u64] = ACTIONS(1564), + [anon_sym_i64] = ACTIONS(1564), + [anon_sym_u128] = ACTIONS(1564), + [anon_sym_i128] = ACTIONS(1564), + [anon_sym_isize] = ACTIONS(1564), + [anon_sym_usize] = ACTIONS(1564), + [anon_sym_f32] = ACTIONS(1564), + [anon_sym_f64] = ACTIONS(1564), + [anon_sym_bool] = ACTIONS(1564), + [anon_sym_str] = ACTIONS(1564), + [anon_sym_char] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_fn] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_impl] = ACTIONS(1564), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_loop] = ACTIONS(1564), + [anon_sym_match] = ACTIONS(1564), + [anon_sym_mod] = ACTIONS(1564), + [anon_sym_pub] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_trait] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_unsafe] = ACTIONS(1564), + [anon_sym_use] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_COLON_COLON] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_DOT_DOT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_move] = ACTIONS(1564), + [sym_integer_literal] = ACTIONS(1562), + [aux_sym_string_literal_token1] = ACTIONS(1562), + [sym_char_literal] = ACTIONS(1562), + [anon_sym_true] = ACTIONS(1564), + [anon_sym_false] = ACTIONS(1564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_crate] = ACTIONS(1564), + [sym_metavariable] = ACTIONS(1562), + [sym_raw_string_literal] = ACTIONS(1562), + [sym_float_literal] = ACTIONS(1562), [sym_block_comment] = ACTIONS(3), }, - [383] = { - [ts_builtin_sym_end] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_macro_rules_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_u8] = ACTIONS(1570), - [anon_sym_i8] = ACTIONS(1570), - [anon_sym_u16] = ACTIONS(1570), - [anon_sym_i16] = ACTIONS(1570), - [anon_sym_u32] = ACTIONS(1570), - [anon_sym_i32] = ACTIONS(1570), - [anon_sym_u64] = ACTIONS(1570), - [anon_sym_i64] = ACTIONS(1570), - [anon_sym_u128] = ACTIONS(1570), - [anon_sym_i128] = ACTIONS(1570), - [anon_sym_isize] = ACTIONS(1570), - [anon_sym_usize] = ACTIONS(1570), - [anon_sym_f32] = ACTIONS(1570), - [anon_sym_f64] = ACTIONS(1570), - [anon_sym_bool] = ACTIONS(1570), - [anon_sym_str] = ACTIONS(1570), - [anon_sym_char] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_async] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_default] = ACTIONS(1570), - [anon_sym_enum] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_impl] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_mod] = ACTIONS(1570), - [anon_sym_pub] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_static] = ACTIONS(1570), - [anon_sym_struct] = ACTIONS(1570), - [anon_sym_trait] = ACTIONS(1570), - [anon_sym_type] = ACTIONS(1570), - [anon_sym_union] = ACTIONS(1570), - [anon_sym_unsafe] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_yield] = ACTIONS(1570), - [anon_sym_move] = ACTIONS(1570), - [sym_integer_literal] = ACTIONS(1568), - [aux_sym_string_literal_token1] = ACTIONS(1568), - [sym_char_literal] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1570), - [sym_super] = ACTIONS(1570), - [sym_crate] = ACTIONS(1570), - [sym_metavariable] = ACTIONS(1568), - [sym_raw_string_literal] = ACTIONS(1568), - [sym_float_literal] = ACTIONS(1568), + [372] = { + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_macro_rules_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_u8] = ACTIONS(1568), + [anon_sym_i8] = ACTIONS(1568), + [anon_sym_u16] = ACTIONS(1568), + [anon_sym_i16] = ACTIONS(1568), + [anon_sym_u32] = ACTIONS(1568), + [anon_sym_i32] = ACTIONS(1568), + [anon_sym_u64] = ACTIONS(1568), + [anon_sym_i64] = ACTIONS(1568), + [anon_sym_u128] = ACTIONS(1568), + [anon_sym_i128] = ACTIONS(1568), + [anon_sym_isize] = ACTIONS(1568), + [anon_sym_usize] = ACTIONS(1568), + [anon_sym_f32] = ACTIONS(1568), + [anon_sym_f64] = ACTIONS(1568), + [anon_sym_bool] = ACTIONS(1568), + [anon_sym_str] = ACTIONS(1568), + [anon_sym_char] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_break] = ACTIONS(1568), + [anon_sym_const] = ACTIONS(1568), + [anon_sym_continue] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1568), + [anon_sym_enum] = ACTIONS(1568), + [anon_sym_fn] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1568), + [anon_sym_if] = ACTIONS(1568), + [anon_sym_impl] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_loop] = ACTIONS(1568), + [anon_sym_match] = ACTIONS(1568), + [anon_sym_mod] = ACTIONS(1568), + [anon_sym_pub] = ACTIONS(1568), + [anon_sym_return] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_struct] = ACTIONS(1568), + [anon_sym_trait] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_union] = ACTIONS(1568), + [anon_sym_unsafe] = ACTIONS(1568), + [anon_sym_use] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_COLON_COLON] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1566), + [aux_sym_string_literal_token1] = ACTIONS(1566), + [sym_char_literal] = ACTIONS(1566), + [anon_sym_true] = ACTIONS(1568), + [anon_sym_false] = ACTIONS(1568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1568), + [sym_super] = ACTIONS(1568), + [sym_crate] = ACTIONS(1568), + [sym_metavariable] = ACTIONS(1566), + [sym_raw_string_literal] = ACTIONS(1566), + [sym_float_literal] = ACTIONS(1566), [sym_block_comment] = ACTIONS(3), }, - [384] = { - [sym_attribute_item] = STATE(566), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_match_arm] = STATE(510), - [sym_last_match_arm] = STATE(2390), - [sym_match_pattern] = STATE(2472), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2151), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_enum_variant_list_repeat1] = STATE(566), - [aux_sym_match_block_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [373] = { + [ts_builtin_sym_end] = ACTIONS(1570), + [sym_identifier] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_macro_rules_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_STAR] = ACTIONS(1570), + [anon_sym_u8] = ACTIONS(1572), + [anon_sym_i8] = ACTIONS(1572), + [anon_sym_u16] = ACTIONS(1572), + [anon_sym_i16] = ACTIONS(1572), + [anon_sym_u32] = ACTIONS(1572), + [anon_sym_i32] = ACTIONS(1572), + [anon_sym_u64] = ACTIONS(1572), + [anon_sym_i64] = ACTIONS(1572), + [anon_sym_u128] = ACTIONS(1572), + [anon_sym_i128] = ACTIONS(1572), + [anon_sym_isize] = ACTIONS(1572), + [anon_sym_usize] = ACTIONS(1572), + [anon_sym_f32] = ACTIONS(1572), + [anon_sym_f64] = ACTIONS(1572), + [anon_sym_bool] = ACTIONS(1572), + [anon_sym_str] = ACTIONS(1572), + [anon_sym_char] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_async] = ACTIONS(1572), + [anon_sym_break] = ACTIONS(1572), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_continue] = ACTIONS(1572), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_enum] = ACTIONS(1572), + [anon_sym_fn] = ACTIONS(1572), + [anon_sym_for] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(1572), + [anon_sym_impl] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1572), + [anon_sym_loop] = ACTIONS(1572), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_mod] = ACTIONS(1572), + [anon_sym_pub] = ACTIONS(1572), + [anon_sym_return] = ACTIONS(1572), + [anon_sym_static] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1572), + [anon_sym_trait] = ACTIONS(1572), + [anon_sym_type] = ACTIONS(1572), + [anon_sym_union] = ACTIONS(1572), + [anon_sym_unsafe] = ACTIONS(1572), + [anon_sym_use] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_extern] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1570), + [anon_sym_COLON_COLON] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_DOT_DOT] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_yield] = ACTIONS(1572), + [anon_sym_move] = ACTIONS(1572), + [sym_integer_literal] = ACTIONS(1570), + [aux_sym_string_literal_token1] = ACTIONS(1570), + [sym_char_literal] = ACTIONS(1570), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1572), + [sym_super] = ACTIONS(1572), + [sym_crate] = ACTIONS(1572), + [sym_metavariable] = ACTIONS(1570), + [sym_raw_string_literal] = ACTIONS(1570), + [sym_float_literal] = ACTIONS(1570), [sym_block_comment] = ACTIONS(3), }, - [385] = { + [374] = { [ts_builtin_sym_end] = ACTIONS(1574), [sym_identifier] = ACTIONS(1576), [anon_sym_SEMI] = ACTIONS(1574), @@ -56042,7 +53660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1574), [sym_block_comment] = ACTIONS(3), }, - [386] = { + [375] = { [ts_builtin_sym_end] = ACTIONS(1578), [sym_identifier] = ACTIONS(1580), [anon_sym_SEMI] = ACTIONS(1578), @@ -56119,7 +53737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1578), [sym_block_comment] = ACTIONS(3), }, - [387] = { + [376] = { [ts_builtin_sym_end] = ACTIONS(1582), [sym_identifier] = ACTIONS(1584), [anon_sym_SEMI] = ACTIONS(1582), @@ -56196,7 +53814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1582), [sym_block_comment] = ACTIONS(3), }, - [388] = { + [377] = { [ts_builtin_sym_end] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [anon_sym_SEMI] = ACTIONS(1586), @@ -56273,7 +53891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1586), [sym_block_comment] = ACTIONS(3), }, - [389] = { + [378] = { [ts_builtin_sym_end] = ACTIONS(1590), [sym_identifier] = ACTIONS(1592), [anon_sym_SEMI] = ACTIONS(1590), @@ -56350,7 +53968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1590), [sym_block_comment] = ACTIONS(3), }, - [390] = { + [379] = { [ts_builtin_sym_end] = ACTIONS(1594), [sym_identifier] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1594), @@ -56427,7 +54045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1594), [sym_block_comment] = ACTIONS(3), }, - [391] = { + [380] = { [ts_builtin_sym_end] = ACTIONS(1598), [sym_identifier] = ACTIONS(1600), [anon_sym_SEMI] = ACTIONS(1598), @@ -56504,8255 +54122,8568 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1598), [sym_block_comment] = ACTIONS(3), }, - [392] = { - [ts_builtin_sym_end] = ACTIONS(1602), - [sym_identifier] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_macro_rules_BANG] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), + [381] = { + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_match_arm] = STATE(499), + [sym_last_match_arm] = STATE(2438), + [sym_match_pattern] = STATE(2518), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1908), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_u8] = ACTIONS(1604), - [anon_sym_i8] = ACTIONS(1604), - [anon_sym_u16] = ACTIONS(1604), - [anon_sym_i16] = ACTIONS(1604), - [anon_sym_u32] = ACTIONS(1604), - [anon_sym_i32] = ACTIONS(1604), - [anon_sym_u64] = ACTIONS(1604), - [anon_sym_i64] = ACTIONS(1604), - [anon_sym_u128] = ACTIONS(1604), - [anon_sym_i128] = ACTIONS(1604), - [anon_sym_isize] = ACTIONS(1604), - [anon_sym_usize] = ACTIONS(1604), - [anon_sym_f32] = ACTIONS(1604), - [anon_sym_f64] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_str] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_async] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_enum] = ACTIONS(1604), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_impl] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_pub] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_struct] = ACTIONS(1604), - [anon_sym_trait] = ACTIONS(1604), - [anon_sym_type] = ACTIONS(1604), - [anon_sym_union] = ACTIONS(1604), - [anon_sym_unsafe] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_POUND] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_extern] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_COLON_COLON] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1602), - [anon_sym_DOT_DOT] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_yield] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1602), - [aux_sym_string_literal_token1] = ACTIONS(1602), - [sym_char_literal] = ACTIONS(1602), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1604), - [sym_super] = ACTIONS(1604), - [sym_crate] = ACTIONS(1604), - [sym_metavariable] = ACTIONS(1602), - [sym_raw_string_literal] = ACTIONS(1602), - [sym_float_literal] = ACTIONS(1602), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), + [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(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [382] = { + [ts_builtin_sym_end] = ACTIONS(1604), + [sym_identifier] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_macro_rules_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_u8] = ACTIONS(1606), + [anon_sym_i8] = ACTIONS(1606), + [anon_sym_u16] = ACTIONS(1606), + [anon_sym_i16] = ACTIONS(1606), + [anon_sym_u32] = ACTIONS(1606), + [anon_sym_i32] = ACTIONS(1606), + [anon_sym_u64] = ACTIONS(1606), + [anon_sym_i64] = ACTIONS(1606), + [anon_sym_u128] = ACTIONS(1606), + [anon_sym_i128] = ACTIONS(1606), + [anon_sym_isize] = ACTIONS(1606), + [anon_sym_usize] = ACTIONS(1606), + [anon_sym_f32] = ACTIONS(1606), + [anon_sym_f64] = ACTIONS(1606), + [anon_sym_bool] = ACTIONS(1606), + [anon_sym_str] = ACTIONS(1606), + [anon_sym_char] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_break] = ACTIONS(1606), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_continue] = ACTIONS(1606), + [anon_sym_default] = ACTIONS(1606), + [anon_sym_enum] = ACTIONS(1606), + [anon_sym_fn] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1606), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_impl] = ACTIONS(1606), + [anon_sym_let] = ACTIONS(1606), + [anon_sym_loop] = ACTIONS(1606), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_mod] = ACTIONS(1606), + [anon_sym_pub] = ACTIONS(1606), + [anon_sym_return] = ACTIONS(1606), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_struct] = ACTIONS(1606), + [anon_sym_trait] = ACTIONS(1606), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_union] = ACTIONS(1606), + [anon_sym_unsafe] = ACTIONS(1606), + [anon_sym_use] = ACTIONS(1606), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_extern] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_COLON_COLON] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_move] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(1604), + [aux_sym_string_literal_token1] = ACTIONS(1604), + [sym_char_literal] = ACTIONS(1604), + [anon_sym_true] = ACTIONS(1606), + [anon_sym_false] = ACTIONS(1606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1606), + [sym_super] = ACTIONS(1606), + [sym_crate] = ACTIONS(1606), + [sym_metavariable] = ACTIONS(1604), + [sym_raw_string_literal] = ACTIONS(1604), + [sym_float_literal] = ACTIONS(1604), + [sym_block_comment] = ACTIONS(3), + }, + [383] = { + [ts_builtin_sym_end] = ACTIONS(1608), + [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_macro_rules_BANG] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1610), + [anon_sym_i8] = ACTIONS(1610), + [anon_sym_u16] = ACTIONS(1610), + [anon_sym_i16] = ACTIONS(1610), + [anon_sym_u32] = ACTIONS(1610), + [anon_sym_i32] = ACTIONS(1610), + [anon_sym_u64] = ACTIONS(1610), + [anon_sym_i64] = ACTIONS(1610), + [anon_sym_u128] = ACTIONS(1610), + [anon_sym_i128] = ACTIONS(1610), + [anon_sym_isize] = ACTIONS(1610), + [anon_sym_usize] = ACTIONS(1610), + [anon_sym_f32] = ACTIONS(1610), + [anon_sym_f64] = ACTIONS(1610), + [anon_sym_bool] = ACTIONS(1610), + [anon_sym_str] = ACTIONS(1610), + [anon_sym_char] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(1610), + [anon_sym_continue] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_enum] = ACTIONS(1610), + [anon_sym_fn] = ACTIONS(1610), + [anon_sym_for] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_impl] = ACTIONS(1610), + [anon_sym_let] = ACTIONS(1610), + [anon_sym_loop] = ACTIONS(1610), + [anon_sym_match] = ACTIONS(1610), + [anon_sym_mod] = ACTIONS(1610), + [anon_sym_pub] = ACTIONS(1610), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_static] = ACTIONS(1610), + [anon_sym_struct] = ACTIONS(1610), + [anon_sym_trait] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_union] = ACTIONS(1610), + [anon_sym_unsafe] = ACTIONS(1610), + [anon_sym_use] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_extern] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_COLON_COLON] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_yield] = ACTIONS(1610), + [anon_sym_move] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1608), + [aux_sym_string_literal_token1] = ACTIONS(1608), + [sym_char_literal] = ACTIONS(1608), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1610), + [sym_super] = ACTIONS(1610), + [sym_crate] = ACTIONS(1610), + [sym_metavariable] = ACTIONS(1608), + [sym_raw_string_literal] = ACTIONS(1608), + [sym_float_literal] = ACTIONS(1608), + [sym_block_comment] = ACTIONS(3), + }, + [384] = { + [ts_builtin_sym_end] = ACTIONS(1612), + [sym_identifier] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_macro_rules_BANG] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_u8] = ACTIONS(1614), + [anon_sym_i8] = ACTIONS(1614), + [anon_sym_u16] = ACTIONS(1614), + [anon_sym_i16] = ACTIONS(1614), + [anon_sym_u32] = ACTIONS(1614), + [anon_sym_i32] = ACTIONS(1614), + [anon_sym_u64] = ACTIONS(1614), + [anon_sym_i64] = ACTIONS(1614), + [anon_sym_u128] = ACTIONS(1614), + [anon_sym_i128] = ACTIONS(1614), + [anon_sym_isize] = ACTIONS(1614), + [anon_sym_usize] = ACTIONS(1614), + [anon_sym_f32] = ACTIONS(1614), + [anon_sym_f64] = ACTIONS(1614), + [anon_sym_bool] = ACTIONS(1614), + [anon_sym_str] = ACTIONS(1614), + [anon_sym_char] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1614), + [anon_sym_break] = ACTIONS(1614), + [anon_sym_const] = ACTIONS(1614), + [anon_sym_continue] = ACTIONS(1614), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_enum] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_for] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1614), + [anon_sym_impl] = ACTIONS(1614), + [anon_sym_let] = ACTIONS(1614), + [anon_sym_loop] = ACTIONS(1614), + [anon_sym_match] = ACTIONS(1614), + [anon_sym_mod] = ACTIONS(1614), + [anon_sym_pub] = ACTIONS(1614), + [anon_sym_return] = ACTIONS(1614), + [anon_sym_static] = ACTIONS(1614), + [anon_sym_struct] = ACTIONS(1614), + [anon_sym_trait] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1614), + [anon_sym_union] = ACTIONS(1614), + [anon_sym_unsafe] = ACTIONS(1614), + [anon_sym_use] = ACTIONS(1614), + [anon_sym_while] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_extern] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_COLON_COLON] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_move] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1612), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1614), + [sym_super] = ACTIONS(1614), + [sym_crate] = ACTIONS(1614), + [sym_metavariable] = ACTIONS(1612), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), + [sym_block_comment] = ACTIONS(3), + }, + [385] = { + [ts_builtin_sym_end] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_macro_rules_BANG] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_u8] = ACTIONS(1618), + [anon_sym_i8] = ACTIONS(1618), + [anon_sym_u16] = ACTIONS(1618), + [anon_sym_i16] = ACTIONS(1618), + [anon_sym_u32] = ACTIONS(1618), + [anon_sym_i32] = ACTIONS(1618), + [anon_sym_u64] = ACTIONS(1618), + [anon_sym_i64] = ACTIONS(1618), + [anon_sym_u128] = ACTIONS(1618), + [anon_sym_i128] = ACTIONS(1618), + [anon_sym_isize] = ACTIONS(1618), + [anon_sym_usize] = ACTIONS(1618), + [anon_sym_f32] = ACTIONS(1618), + [anon_sym_f64] = ACTIONS(1618), + [anon_sym_bool] = ACTIONS(1618), + [anon_sym_str] = ACTIONS(1618), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_enum] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_impl] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1618), + [anon_sym_pub] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_trait] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1618), + [anon_sym_unsafe] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_yield] = ACTIONS(1618), + [anon_sym_move] = ACTIONS(1618), + [sym_integer_literal] = ACTIONS(1616), + [aux_sym_string_literal_token1] = ACTIONS(1616), + [sym_char_literal] = ACTIONS(1616), + [anon_sym_true] = ACTIONS(1618), + [anon_sym_false] = ACTIONS(1618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1616), + [sym_raw_string_literal] = ACTIONS(1616), + [sym_float_literal] = ACTIONS(1616), + [sym_block_comment] = ACTIONS(3), + }, + [386] = { + [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), + }, + [387] = { + [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), + }, + [388] = { + [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), + }, + [389] = { + [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), + }, + [390] = { + [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), + }, + [391] = { + [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), + }, + [392] = { + [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), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [sym_identifier] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_macro_rules_BANG] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_SQUOTE] = ACTIONS(1608), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_enum] = ACTIONS(1608), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_impl] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_pub] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_struct] = ACTIONS(1608), - [anon_sym_trait] = ACTIONS(1608), - [anon_sym_type] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_unsafe] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1606), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1606), - [anon_sym_DOT_DOT] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_move] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1606), - [aux_sym_string_literal_token1] = ACTIONS(1606), - [sym_char_literal] = ACTIONS(1606), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1608), - [sym_super] = ACTIONS(1608), - [sym_crate] = ACTIONS(1608), - [sym_metavariable] = ACTIONS(1606), - [sym_raw_string_literal] = ACTIONS(1606), - [sym_float_literal] = ACTIONS(1606), + [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), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1610), - [sym_identifier] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_macro_rules_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_impl] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_pub] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_trait] = ACTIONS(1612), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_unsafe] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1610), - [aux_sym_string_literal_token1] = ACTIONS(1610), - [sym_char_literal] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_crate] = ACTIONS(1612), - [sym_metavariable] = ACTIONS(1610), - [sym_raw_string_literal] = ACTIONS(1610), - [sym_float_literal] = ACTIONS(1610), + [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), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1614), - [sym_identifier] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_macro_rules_BANG] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_u8] = ACTIONS(1616), - [anon_sym_i8] = ACTIONS(1616), - [anon_sym_u16] = ACTIONS(1616), - [anon_sym_i16] = ACTIONS(1616), - [anon_sym_u32] = ACTIONS(1616), - [anon_sym_i32] = ACTIONS(1616), - [anon_sym_u64] = ACTIONS(1616), - [anon_sym_i64] = ACTIONS(1616), - [anon_sym_u128] = ACTIONS(1616), - [anon_sym_i128] = ACTIONS(1616), - [anon_sym_isize] = ACTIONS(1616), - [anon_sym_usize] = ACTIONS(1616), - [anon_sym_f32] = ACTIONS(1616), - [anon_sym_f64] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_str] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_default] = ACTIONS(1616), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_impl] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_pub] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_struct] = ACTIONS(1616), - [anon_sym_trait] = ACTIONS(1616), - [anon_sym_type] = ACTIONS(1616), - [anon_sym_union] = ACTIONS(1616), - [anon_sym_unsafe] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_POUND] = ACTIONS(1614), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_COLON_COLON] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_DOT_DOT] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_yield] = ACTIONS(1616), - [anon_sym_move] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1614), - [aux_sym_string_literal_token1] = ACTIONS(1614), - [sym_char_literal] = ACTIONS(1614), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1616), - [sym_super] = ACTIONS(1616), - [sym_crate] = ACTIONS(1616), - [sym_metavariable] = ACTIONS(1614), - [sym_raw_string_literal] = ACTIONS(1614), - [sym_float_literal] = ACTIONS(1614), + [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), [sym_block_comment] = ACTIONS(3), }, [396] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [397] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [398] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [399] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [400] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [401] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [402] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [403] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [404] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [405] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [406] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [407] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [408] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [409] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [410] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [411] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [412] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [413] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [414] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [415] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [416] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [417] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [418] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [419] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [420] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [421] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [422] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [423] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [424] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [425] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [426] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [427] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [428] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [429] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [430] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [431] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_macro_rules_BANG] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_u8] = ACTIONS(1802), + [anon_sym_i8] = ACTIONS(1802), + [anon_sym_u16] = ACTIONS(1802), + [anon_sym_i16] = ACTIONS(1802), + [anon_sym_u32] = ACTIONS(1802), + [anon_sym_i32] = ACTIONS(1802), + [anon_sym_u64] = ACTIONS(1802), + [anon_sym_i64] = ACTIONS(1802), + [anon_sym_u128] = ACTIONS(1802), + [anon_sym_i128] = ACTIONS(1802), + [anon_sym_isize] = ACTIONS(1802), + [anon_sym_usize] = ACTIONS(1802), + [anon_sym_f32] = ACTIONS(1802), + [anon_sym_f64] = ACTIONS(1802), + [anon_sym_bool] = ACTIONS(1802), + [anon_sym_str] = ACTIONS(1802), + [anon_sym_char] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [anon_sym_fn] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_impl] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_pub] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_struct] = ACTIONS(1802), + [anon_sym_trait] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_union] = ACTIONS(1802), + [anon_sym_unsafe] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_yield] = ACTIONS(1802), + [anon_sym_move] = ACTIONS(1802), + [sym_integer_literal] = ACTIONS(1800), + [aux_sym_string_literal_token1] = ACTIONS(1800), + [sym_char_literal] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_crate] = ACTIONS(1802), + [sym_metavariable] = ACTIONS(1800), + [sym_raw_string_literal] = ACTIONS(1800), + [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, [432] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_macro_rules_BANG] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_u8] = ACTIONS(1806), + [anon_sym_i8] = ACTIONS(1806), + [anon_sym_u16] = ACTIONS(1806), + [anon_sym_i16] = ACTIONS(1806), + [anon_sym_u32] = ACTIONS(1806), + [anon_sym_i32] = ACTIONS(1806), + [anon_sym_u64] = ACTIONS(1806), + [anon_sym_i64] = ACTIONS(1806), + [anon_sym_u128] = ACTIONS(1806), + [anon_sym_i128] = ACTIONS(1806), + [anon_sym_isize] = ACTIONS(1806), + [anon_sym_usize] = ACTIONS(1806), + [anon_sym_f32] = ACTIONS(1806), + [anon_sym_f64] = ACTIONS(1806), + [anon_sym_bool] = ACTIONS(1806), + [anon_sym_str] = ACTIONS(1806), + [anon_sym_char] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_fn] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_impl] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_mod] = ACTIONS(1806), + [anon_sym_pub] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1806), + [anon_sym_trait] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_unsafe] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_yield] = ACTIONS(1806), + [anon_sym_move] = ACTIONS(1806), + [sym_integer_literal] = ACTIONS(1804), + [aux_sym_string_literal_token1] = ACTIONS(1804), + [sym_char_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1804), + [sym_raw_string_literal] = ACTIONS(1804), + [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, [433] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym_identifier] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_macro_rules_BANG] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_u8] = ACTIONS(1810), + [anon_sym_i8] = ACTIONS(1810), + [anon_sym_u16] = ACTIONS(1810), + [anon_sym_i16] = ACTIONS(1810), + [anon_sym_u32] = ACTIONS(1810), + [anon_sym_i32] = ACTIONS(1810), + [anon_sym_u64] = ACTIONS(1810), + [anon_sym_i64] = ACTIONS(1810), + [anon_sym_u128] = ACTIONS(1810), + [anon_sym_i128] = ACTIONS(1810), + [anon_sym_isize] = ACTIONS(1810), + [anon_sym_usize] = ACTIONS(1810), + [anon_sym_f32] = ACTIONS(1810), + [anon_sym_f64] = ACTIONS(1810), + [anon_sym_bool] = ACTIONS(1810), + [anon_sym_str] = ACTIONS(1810), + [anon_sym_char] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_async] = ACTIONS(1810), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1810), + [anon_sym_default] = ACTIONS(1810), + [anon_sym_enum] = ACTIONS(1810), + [anon_sym_fn] = ACTIONS(1810), + [anon_sym_for] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(1810), + [anon_sym_impl] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(1810), + [anon_sym_loop] = ACTIONS(1810), + [anon_sym_match] = ACTIONS(1810), + [anon_sym_mod] = ACTIONS(1810), + [anon_sym_pub] = ACTIONS(1810), + [anon_sym_return] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_struct] = ACTIONS(1810), + [anon_sym_trait] = ACTIONS(1810), + [anon_sym_type] = ACTIONS(1810), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_unsafe] = ACTIONS(1810), + [anon_sym_use] = ACTIONS(1810), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1808), + [anon_sym_AMP] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_yield] = ACTIONS(1810), + [anon_sym_move] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [aux_sym_string_literal_token1] = ACTIONS(1808), + [sym_char_literal] = ACTIONS(1808), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1808), + [sym_raw_string_literal] = ACTIONS(1808), + [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, [434] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_macro_rules_BANG] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_u8] = ACTIONS(1814), + [anon_sym_i8] = ACTIONS(1814), + [anon_sym_u16] = ACTIONS(1814), + [anon_sym_i16] = ACTIONS(1814), + [anon_sym_u32] = ACTIONS(1814), + [anon_sym_i32] = ACTIONS(1814), + [anon_sym_u64] = ACTIONS(1814), + [anon_sym_i64] = ACTIONS(1814), + [anon_sym_u128] = ACTIONS(1814), + [anon_sym_i128] = ACTIONS(1814), + [anon_sym_isize] = ACTIONS(1814), + [anon_sym_usize] = ACTIONS(1814), + [anon_sym_f32] = ACTIONS(1814), + [anon_sym_f64] = ACTIONS(1814), + [anon_sym_bool] = ACTIONS(1814), + [anon_sym_str] = ACTIONS(1814), + [anon_sym_char] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1814), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_fn] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_impl] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1814), + [anon_sym_loop] = ACTIONS(1814), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_mod] = ACTIONS(1814), + [anon_sym_pub] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_struct] = ACTIONS(1814), + [anon_sym_trait] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_union] = ACTIONS(1814), + [anon_sym_unsafe] = ACTIONS(1814), + [anon_sym_use] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1814), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_COLON_COLON] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1812), + [anon_sym_DOT_DOT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1814), + [anon_sym_move] = ACTIONS(1814), + [sym_integer_literal] = ACTIONS(1812), + [aux_sym_string_literal_token1] = ACTIONS(1812), + [sym_char_literal] = ACTIONS(1812), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1814), + [sym_super] = ACTIONS(1814), + [sym_crate] = ACTIONS(1814), + [sym_metavariable] = ACTIONS(1812), + [sym_raw_string_literal] = ACTIONS(1812), + [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, [435] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_macro_rules_BANG] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_u8] = ACTIONS(1818), + [anon_sym_i8] = ACTIONS(1818), + [anon_sym_u16] = ACTIONS(1818), + [anon_sym_i16] = ACTIONS(1818), + [anon_sym_u32] = ACTIONS(1818), + [anon_sym_i32] = ACTIONS(1818), + [anon_sym_u64] = ACTIONS(1818), + [anon_sym_i64] = ACTIONS(1818), + [anon_sym_u128] = ACTIONS(1818), + [anon_sym_i128] = ACTIONS(1818), + [anon_sym_isize] = ACTIONS(1818), + [anon_sym_usize] = ACTIONS(1818), + [anon_sym_f32] = ACTIONS(1818), + [anon_sym_f64] = ACTIONS(1818), + [anon_sym_bool] = ACTIONS(1818), + [anon_sym_str] = ACTIONS(1818), + [anon_sym_char] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [anon_sym_fn] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_impl] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_mod] = ACTIONS(1818), + [anon_sym_pub] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_trait] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1818), + [anon_sym_unsafe] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_yield] = ACTIONS(1818), + [anon_sym_move] = ACTIONS(1818), + [sym_integer_literal] = ACTIONS(1816), + [aux_sym_string_literal_token1] = ACTIONS(1816), + [sym_char_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1818), + [anon_sym_false] = ACTIONS(1818), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_crate] = ACTIONS(1818), + [sym_metavariable] = ACTIONS(1816), + [sym_raw_string_literal] = ACTIONS(1816), + [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, [436] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_macro_rules_BANG] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_u8] = ACTIONS(1822), + [anon_sym_i8] = ACTIONS(1822), + [anon_sym_u16] = ACTIONS(1822), + [anon_sym_i16] = ACTIONS(1822), + [anon_sym_u32] = ACTIONS(1822), + [anon_sym_i32] = ACTIONS(1822), + [anon_sym_u64] = ACTIONS(1822), + [anon_sym_i64] = ACTIONS(1822), + [anon_sym_u128] = ACTIONS(1822), + [anon_sym_i128] = ACTIONS(1822), + [anon_sym_isize] = ACTIONS(1822), + [anon_sym_usize] = ACTIONS(1822), + [anon_sym_f32] = ACTIONS(1822), + [anon_sym_f64] = ACTIONS(1822), + [anon_sym_bool] = ACTIONS(1822), + [anon_sym_str] = ACTIONS(1822), + [anon_sym_char] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_fn] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_impl] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_pub] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1822), + [anon_sym_trait] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_union] = ACTIONS(1822), + [anon_sym_unsafe] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_COLON_COLON] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_move] = ACTIONS(1822), + [sym_integer_literal] = ACTIONS(1820), + [aux_sym_string_literal_token1] = ACTIONS(1820), + [sym_char_literal] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_crate] = ACTIONS(1822), + [sym_metavariable] = ACTIONS(1820), + [sym_raw_string_literal] = ACTIONS(1820), + [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, [437] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_macro_rules_BANG] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u128] = ACTIONS(1826), + [anon_sym_i128] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_str] = ACTIONS(1826), + [anon_sym_char] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_fn] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_impl] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mod] = ACTIONS(1826), + [anon_sym_pub] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_trait] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_unsafe] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_yield] = ACTIONS(1826), + [anon_sym_move] = ACTIONS(1826), + [sym_integer_literal] = ACTIONS(1824), + [aux_sym_string_literal_token1] = ACTIONS(1824), + [sym_char_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1824), + [sym_raw_string_literal] = ACTIONS(1824), + [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, [438] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_macro_rules_BANG] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_u8] = ACTIONS(1830), + [anon_sym_i8] = ACTIONS(1830), + [anon_sym_u16] = ACTIONS(1830), + [anon_sym_i16] = ACTIONS(1830), + [anon_sym_u32] = ACTIONS(1830), + [anon_sym_i32] = ACTIONS(1830), + [anon_sym_u64] = ACTIONS(1830), + [anon_sym_i64] = ACTIONS(1830), + [anon_sym_u128] = ACTIONS(1830), + [anon_sym_i128] = ACTIONS(1830), + [anon_sym_isize] = ACTIONS(1830), + [anon_sym_usize] = ACTIONS(1830), + [anon_sym_f32] = ACTIONS(1830), + [anon_sym_f64] = ACTIONS(1830), + [anon_sym_bool] = ACTIONS(1830), + [anon_sym_str] = ACTIONS(1830), + [anon_sym_char] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [anon_sym_fn] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_impl] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mod] = ACTIONS(1830), + [anon_sym_pub] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_struct] = ACTIONS(1830), + [anon_sym_trait] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_union] = ACTIONS(1830), + [anon_sym_unsafe] = ACTIONS(1830), + [anon_sym_use] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_COLON_COLON] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_yield] = ACTIONS(1830), + [anon_sym_move] = ACTIONS(1830), + [sym_integer_literal] = ACTIONS(1828), + [aux_sym_string_literal_token1] = ACTIONS(1828), + [sym_char_literal] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_crate] = ACTIONS(1830), + [sym_metavariable] = ACTIONS(1828), + [sym_raw_string_literal] = ACTIONS(1828), + [sym_float_literal] = ACTIONS(1828), [sym_block_comment] = ACTIONS(3), }, [439] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_macro_rules_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_u8] = ACTIONS(1834), + [anon_sym_i8] = ACTIONS(1834), + [anon_sym_u16] = ACTIONS(1834), + [anon_sym_i16] = ACTIONS(1834), + [anon_sym_u32] = ACTIONS(1834), + [anon_sym_i32] = ACTIONS(1834), + [anon_sym_u64] = ACTIONS(1834), + [anon_sym_i64] = ACTIONS(1834), + [anon_sym_u128] = ACTIONS(1834), + [anon_sym_i128] = ACTIONS(1834), + [anon_sym_isize] = ACTIONS(1834), + [anon_sym_usize] = ACTIONS(1834), + [anon_sym_f32] = ACTIONS(1834), + [anon_sym_f64] = ACTIONS(1834), + [anon_sym_bool] = ACTIONS(1834), + [anon_sym_str] = ACTIONS(1834), + [anon_sym_char] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_async] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_fn] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_impl] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1834), + [anon_sym_loop] = ACTIONS(1834), + [anon_sym_match] = ACTIONS(1834), + [anon_sym_mod] = ACTIONS(1834), + [anon_sym_pub] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_trait] = ACTIONS(1834), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_unsafe] = ACTIONS(1834), + [anon_sym_use] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_COLON_COLON] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_DOT_DOT] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1834), + [anon_sym_move] = ACTIONS(1834), + [sym_integer_literal] = ACTIONS(1832), + [aux_sym_string_literal_token1] = ACTIONS(1832), + [sym_char_literal] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1834), + [sym_super] = ACTIONS(1834), + [sym_crate] = ACTIONS(1834), + [sym_metavariable] = ACTIONS(1832), + [sym_raw_string_literal] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1832), [sym_block_comment] = ACTIONS(3), }, [440] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_macro_rules_BANG] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_u8] = ACTIONS(1838), + [anon_sym_i8] = ACTIONS(1838), + [anon_sym_u16] = ACTIONS(1838), + [anon_sym_i16] = ACTIONS(1838), + [anon_sym_u32] = ACTIONS(1838), + [anon_sym_i32] = ACTIONS(1838), + [anon_sym_u64] = ACTIONS(1838), + [anon_sym_i64] = ACTIONS(1838), + [anon_sym_u128] = ACTIONS(1838), + [anon_sym_i128] = ACTIONS(1838), + [anon_sym_isize] = ACTIONS(1838), + [anon_sym_usize] = ACTIONS(1838), + [anon_sym_f32] = ACTIONS(1838), + [anon_sym_f64] = ACTIONS(1838), + [anon_sym_bool] = ACTIONS(1838), + [anon_sym_str] = ACTIONS(1838), + [anon_sym_char] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_async] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_union] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_COLON_COLON] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_DOT_DOT] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_yield] = ACTIONS(1838), + [anon_sym_move] = ACTIONS(1838), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1836), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1838), + [sym_super] = ACTIONS(1838), + [sym_crate] = ACTIONS(1838), + [sym_metavariable] = ACTIONS(1836), + [sym_raw_string_literal] = ACTIONS(1836), + [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_yield] = ACTIONS(1800), - [anon_sym_move] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym_raw_string_literal] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), + [ts_builtin_sym_end] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_macro_rules_BANG] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_u8] = ACTIONS(1842), + [anon_sym_i8] = ACTIONS(1842), + [anon_sym_u16] = ACTIONS(1842), + [anon_sym_i16] = ACTIONS(1842), + [anon_sym_u32] = ACTIONS(1842), + [anon_sym_i32] = ACTIONS(1842), + [anon_sym_u64] = ACTIONS(1842), + [anon_sym_i64] = ACTIONS(1842), + [anon_sym_u128] = ACTIONS(1842), + [anon_sym_i128] = ACTIONS(1842), + [anon_sym_isize] = ACTIONS(1842), + [anon_sym_usize] = ACTIONS(1842), + [anon_sym_f32] = ACTIONS(1842), + [anon_sym_f64] = ACTIONS(1842), + [anon_sym_bool] = ACTIONS(1842), + [anon_sym_str] = ACTIONS(1842), + [anon_sym_char] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_async] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [anon_sym_fn] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_impl] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mod] = ACTIONS(1842), + [anon_sym_pub] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(1842), + [anon_sym_trait] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_union] = ACTIONS(1842), + [anon_sym_unsafe] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_COLON_COLON] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_yield] = ACTIONS(1842), + [anon_sym_move] = ACTIONS(1842), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1840), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1842), + [sym_super] = ACTIONS(1842), + [sym_crate] = ACTIONS(1842), + [sym_metavariable] = ACTIONS(1840), + [sym_raw_string_literal] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym_raw_string_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_macro_rules_BANG] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_u8] = ACTIONS(1846), + [anon_sym_i8] = ACTIONS(1846), + [anon_sym_u16] = ACTIONS(1846), + [anon_sym_i16] = ACTIONS(1846), + [anon_sym_u32] = ACTIONS(1846), + [anon_sym_i32] = ACTIONS(1846), + [anon_sym_u64] = ACTIONS(1846), + [anon_sym_i64] = ACTIONS(1846), + [anon_sym_u128] = ACTIONS(1846), + [anon_sym_i128] = ACTIONS(1846), + [anon_sym_isize] = ACTIONS(1846), + [anon_sym_usize] = ACTIONS(1846), + [anon_sym_f32] = ACTIONS(1846), + [anon_sym_f64] = ACTIONS(1846), + [anon_sym_bool] = ACTIONS(1846), + [anon_sym_str] = ACTIONS(1846), + [anon_sym_char] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_unsafe] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_COLON_COLON] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_move] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(1844), + [aux_sym_string_literal_token1] = ACTIONS(1844), + [sym_char_literal] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_crate] = ACTIONS(1846), + [sym_metavariable] = ACTIONS(1844), + [sym_raw_string_literal] = ACTIONS(1844), + [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym_raw_string_literal] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_macro_rules_BANG] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(556), + [anon_sym_i8] = ACTIONS(556), + [anon_sym_u16] = ACTIONS(556), + [anon_sym_i16] = ACTIONS(556), + [anon_sym_u32] = ACTIONS(556), + [anon_sym_i32] = ACTIONS(556), + [anon_sym_u64] = ACTIONS(556), + [anon_sym_i64] = ACTIONS(556), + [anon_sym_u128] = ACTIONS(556), + [anon_sym_i128] = ACTIONS(556), + [anon_sym_isize] = ACTIONS(556), + [anon_sym_usize] = ACTIONS(556), + [anon_sym_f32] = ACTIONS(556), + [anon_sym_f64] = ACTIONS(556), + [anon_sym_bool] = ACTIONS(556), + [anon_sym_str] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_async] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_enum] = ACTIONS(556), + [anon_sym_fn] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_impl] = ACTIONS(556), + [anon_sym_let] = ACTIONS(556), + [anon_sym_loop] = ACTIONS(556), + [anon_sym_match] = ACTIONS(556), + [anon_sym_mod] = ACTIONS(556), + [anon_sym_pub] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_struct] = ACTIONS(556), + [anon_sym_trait] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_union] = ACTIONS(556), + [anon_sym_unsafe] = ACTIONS(556), + [anon_sym_use] = ACTIONS(556), + [anon_sym_while] = ACTIONS(556), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_extern] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_DOT_DOT] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(554), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_move] = ACTIONS(556), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(554), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(556), + [anon_sym_false] = ACTIONS(556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_crate] = ACTIONS(556), + [sym_metavariable] = ACTIONS(554), + [sym_raw_string_literal] = ACTIONS(554), + [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym_raw_string_literal] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_macro_rules_BANG] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_u8] = ACTIONS(1850), + [anon_sym_i8] = ACTIONS(1850), + [anon_sym_u16] = ACTIONS(1850), + [anon_sym_i16] = ACTIONS(1850), + [anon_sym_u32] = ACTIONS(1850), + [anon_sym_i32] = ACTIONS(1850), + [anon_sym_u64] = ACTIONS(1850), + [anon_sym_i64] = ACTIONS(1850), + [anon_sym_u128] = ACTIONS(1850), + [anon_sym_i128] = ACTIONS(1850), + [anon_sym_isize] = ACTIONS(1850), + [anon_sym_usize] = ACTIONS(1850), + [anon_sym_f32] = ACTIONS(1850), + [anon_sym_f64] = ACTIONS(1850), + [anon_sym_bool] = ACTIONS(1850), + [anon_sym_str] = ACTIONS(1850), + [anon_sym_char] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_fn] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_impl] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_loop] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_mod] = ACTIONS(1850), + [anon_sym_pub] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_struct] = ACTIONS(1850), + [anon_sym_trait] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_union] = ACTIONS(1850), + [anon_sym_unsafe] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_move] = ACTIONS(1850), + [sym_integer_literal] = ACTIONS(1848), + [aux_sym_string_literal_token1] = ACTIONS(1848), + [sym_char_literal] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_crate] = ACTIONS(1850), + [sym_metavariable] = ACTIONS(1848), + [sym_raw_string_literal] = ACTIONS(1848), + [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym_raw_string_literal] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_macro_rules_BANG] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_u8] = ACTIONS(1854), + [anon_sym_i8] = ACTIONS(1854), + [anon_sym_u16] = ACTIONS(1854), + [anon_sym_i16] = ACTIONS(1854), + [anon_sym_u32] = ACTIONS(1854), + [anon_sym_i32] = ACTIONS(1854), + [anon_sym_u64] = ACTIONS(1854), + [anon_sym_i64] = ACTIONS(1854), + [anon_sym_u128] = ACTIONS(1854), + [anon_sym_i128] = ACTIONS(1854), + [anon_sym_isize] = ACTIONS(1854), + [anon_sym_usize] = ACTIONS(1854), + [anon_sym_f32] = ACTIONS(1854), + [anon_sym_f64] = ACTIONS(1854), + [anon_sym_bool] = ACTIONS(1854), + [anon_sym_str] = ACTIONS(1854), + [anon_sym_char] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_fn] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_impl] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mod] = ACTIONS(1854), + [anon_sym_pub] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_trait] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_unsafe] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_COLON_COLON] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_move] = ACTIONS(1854), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_crate] = ACTIONS(1854), + [sym_metavariable] = ACTIONS(1852), + [sym_raw_string_literal] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym_raw_string_literal] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_macro_rules_BANG] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1858), + [anon_sym_i8] = ACTIONS(1858), + [anon_sym_u16] = ACTIONS(1858), + [anon_sym_i16] = ACTIONS(1858), + [anon_sym_u32] = ACTIONS(1858), + [anon_sym_i32] = ACTIONS(1858), + [anon_sym_u64] = ACTIONS(1858), + [anon_sym_i64] = ACTIONS(1858), + [anon_sym_u128] = ACTIONS(1858), + [anon_sym_i128] = ACTIONS(1858), + [anon_sym_isize] = ACTIONS(1858), + [anon_sym_usize] = ACTIONS(1858), + [anon_sym_f32] = ACTIONS(1858), + [anon_sym_f64] = ACTIONS(1858), + [anon_sym_bool] = ACTIONS(1858), + [anon_sym_str] = ACTIONS(1858), + [anon_sym_char] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_impl] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_loop] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mod] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_trait] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_use] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_move] = ACTIONS(1858), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_crate] = ACTIONS(1858), + [sym_metavariable] = ACTIONS(1856), + [sym_raw_string_literal] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym_raw_string_literal] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(532), + [sym_identifier] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(532), + [anon_sym_macro_rules_BANG] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_u8] = ACTIONS(534), + [anon_sym_i8] = ACTIONS(534), + [anon_sym_u16] = ACTIONS(534), + [anon_sym_i16] = ACTIONS(534), + [anon_sym_u32] = ACTIONS(534), + [anon_sym_i32] = ACTIONS(534), + [anon_sym_u64] = ACTIONS(534), + [anon_sym_i64] = ACTIONS(534), + [anon_sym_u128] = ACTIONS(534), + [anon_sym_i128] = ACTIONS(534), + [anon_sym_isize] = ACTIONS(534), + [anon_sym_usize] = ACTIONS(534), + [anon_sym_f32] = ACTIONS(534), + [anon_sym_f64] = ACTIONS(534), + [anon_sym_bool] = ACTIONS(534), + [anon_sym_str] = ACTIONS(534), + [anon_sym_char] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_async] = ACTIONS(534), + [anon_sym_break] = ACTIONS(534), + [anon_sym_const] = ACTIONS(534), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_default] = ACTIONS(534), + [anon_sym_enum] = ACTIONS(534), + [anon_sym_fn] = ACTIONS(534), + [anon_sym_for] = ACTIONS(534), + [anon_sym_if] = ACTIONS(534), + [anon_sym_impl] = ACTIONS(534), + [anon_sym_let] = ACTIONS(534), + [anon_sym_loop] = ACTIONS(534), + [anon_sym_match] = ACTIONS(534), + [anon_sym_mod] = ACTIONS(534), + [anon_sym_pub] = ACTIONS(534), + [anon_sym_return] = ACTIONS(534), + [anon_sym_static] = ACTIONS(534), + [anon_sym_struct] = ACTIONS(534), + [anon_sym_trait] = ACTIONS(534), + [anon_sym_type] = ACTIONS(534), + [anon_sym_union] = ACTIONS(534), + [anon_sym_unsafe] = ACTIONS(534), + [anon_sym_use] = ACTIONS(534), + [anon_sym_while] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_COLON_COLON] = ACTIONS(532), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_DOT_DOT] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_yield] = ACTIONS(534), + [anon_sym_move] = ACTIONS(534), + [sym_integer_literal] = ACTIONS(532), + [aux_sym_string_literal_token1] = ACTIONS(532), + [sym_char_literal] = ACTIONS(532), + [anon_sym_true] = ACTIONS(534), + [anon_sym_false] = ACTIONS(534), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(534), + [sym_super] = ACTIONS(534), + [sym_crate] = ACTIONS(534), + [sym_metavariable] = ACTIONS(532), + [sym_raw_string_literal] = ACTIONS(532), + [sym_float_literal] = ACTIONS(532), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym_raw_string_literal] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_macro_rules_BANG] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_u8] = ACTIONS(1862), + [anon_sym_i8] = ACTIONS(1862), + [anon_sym_u16] = ACTIONS(1862), + [anon_sym_i16] = ACTIONS(1862), + [anon_sym_u32] = ACTIONS(1862), + [anon_sym_i32] = ACTIONS(1862), + [anon_sym_u64] = ACTIONS(1862), + [anon_sym_i64] = ACTIONS(1862), + [anon_sym_u128] = ACTIONS(1862), + [anon_sym_i128] = ACTIONS(1862), + [anon_sym_isize] = ACTIONS(1862), + [anon_sym_usize] = ACTIONS(1862), + [anon_sym_f32] = ACTIONS(1862), + [anon_sym_f64] = ACTIONS(1862), + [anon_sym_bool] = ACTIONS(1862), + [anon_sym_str] = ACTIONS(1862), + [anon_sym_char] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_fn] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_impl] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_loop] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mod] = ACTIONS(1862), + [anon_sym_pub] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_struct] = ACTIONS(1862), + [anon_sym_trait] = ACTIONS(1862), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_union] = ACTIONS(1862), + [anon_sym_unsafe] = ACTIONS(1862), + [anon_sym_use] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_COLON_COLON] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_move] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(1860), + [aux_sym_string_literal_token1] = ACTIONS(1860), + [sym_char_literal] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_crate] = ACTIONS(1862), + [sym_metavariable] = ACTIONS(1860), + [sym_raw_string_literal] = ACTIONS(1860), + [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym_raw_string_literal] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_macro_rules_BANG] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_fn] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_impl] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1866), + [anon_sym_pub] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_trait] = ACTIONS(1866), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1866), + [anon_sym_unsafe] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_COLON_COLON] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_move] = ACTIONS(1866), + [sym_integer_literal] = ACTIONS(1864), + [aux_sym_string_literal_token1] = ACTIONS(1864), + [sym_char_literal] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_crate] = ACTIONS(1866), + [sym_metavariable] = ACTIONS(1864), + [sym_raw_string_literal] = ACTIONS(1864), + [sym_float_literal] = ACTIONS(1864), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_macro_rules_BANG] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_u8] = ACTIONS(1870), + [anon_sym_i8] = ACTIONS(1870), + [anon_sym_u16] = ACTIONS(1870), + [anon_sym_i16] = ACTIONS(1870), + [anon_sym_u32] = ACTIONS(1870), + [anon_sym_i32] = ACTIONS(1870), + [anon_sym_u64] = ACTIONS(1870), + [anon_sym_i64] = ACTIONS(1870), + [anon_sym_u128] = ACTIONS(1870), + [anon_sym_i128] = ACTIONS(1870), + [anon_sym_isize] = ACTIONS(1870), + [anon_sym_usize] = ACTIONS(1870), + [anon_sym_f32] = ACTIONS(1870), + [anon_sym_f64] = ACTIONS(1870), + [anon_sym_bool] = ACTIONS(1870), + [anon_sym_str] = ACTIONS(1870), + [anon_sym_char] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_const] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_impl] = ACTIONS(1870), + [anon_sym_let] = ACTIONS(1870), + [anon_sym_loop] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mod] = ACTIONS(1870), + [anon_sym_pub] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_struct] = ACTIONS(1870), + [anon_sym_trait] = ACTIONS(1870), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_union] = ACTIONS(1870), + [anon_sym_unsafe] = ACTIONS(1870), + [anon_sym_use] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_COLON_COLON] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_yield] = ACTIONS(1870), + [anon_sym_move] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(1868), + [aux_sym_string_literal_token1] = ACTIONS(1868), + [sym_char_literal] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1870), + [sym_super] = ACTIONS(1870), + [sym_crate] = ACTIONS(1870), + [sym_metavariable] = ACTIONS(1868), + [sym_raw_string_literal] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), [sym_block_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_macro_rules_BANG] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_u8] = ACTIONS(1874), + [anon_sym_i8] = ACTIONS(1874), + [anon_sym_u16] = ACTIONS(1874), + [anon_sym_i16] = ACTIONS(1874), + [anon_sym_u32] = ACTIONS(1874), + [anon_sym_i32] = ACTIONS(1874), + [anon_sym_u64] = ACTIONS(1874), + [anon_sym_i64] = ACTIONS(1874), + [anon_sym_u128] = ACTIONS(1874), + [anon_sym_i128] = ACTIONS(1874), + [anon_sym_isize] = ACTIONS(1874), + [anon_sym_usize] = ACTIONS(1874), + [anon_sym_f32] = ACTIONS(1874), + [anon_sym_f64] = ACTIONS(1874), + [anon_sym_bool] = ACTIONS(1874), + [anon_sym_str] = ACTIONS(1874), + [anon_sym_char] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_fn] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_impl] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mod] = ACTIONS(1874), + [anon_sym_pub] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_struct] = ACTIONS(1874), + [anon_sym_trait] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_union] = ACTIONS(1874), + [anon_sym_unsafe] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_move] = ACTIONS(1874), + [sym_integer_literal] = ACTIONS(1872), + [aux_sym_string_literal_token1] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_crate] = ACTIONS(1874), + [sym_metavariable] = ACTIONS(1872), + [sym_raw_string_literal] = ACTIONS(1872), + [sym_float_literal] = ACTIONS(1872), [sym_block_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym_raw_string_literal] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_u8] = ACTIONS(1878), + [anon_sym_i8] = ACTIONS(1878), + [anon_sym_u16] = ACTIONS(1878), + [anon_sym_i16] = ACTIONS(1878), + [anon_sym_u32] = ACTIONS(1878), + [anon_sym_i32] = ACTIONS(1878), + [anon_sym_u64] = ACTIONS(1878), + [anon_sym_i64] = ACTIONS(1878), + [anon_sym_u128] = ACTIONS(1878), + [anon_sym_i128] = ACTIONS(1878), + [anon_sym_isize] = ACTIONS(1878), + [anon_sym_usize] = ACTIONS(1878), + [anon_sym_f32] = ACTIONS(1878), + [anon_sym_f64] = ACTIONS(1878), + [anon_sym_bool] = ACTIONS(1878), + [anon_sym_str] = ACTIONS(1878), + [anon_sym_char] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_fn] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_impl] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mod] = ACTIONS(1878), + [anon_sym_pub] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_trait] = ACTIONS(1878), + [anon_sym_type] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_unsafe] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_yield] = ACTIONS(1878), + [anon_sym_move] = ACTIONS(1878), + [sym_integer_literal] = ACTIONS(1876), + [aux_sym_string_literal_token1] = ACTIONS(1876), + [sym_char_literal] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1878), + [sym_super] = ACTIONS(1878), + [sym_crate] = ACTIONS(1878), + [sym_metavariable] = ACTIONS(1876), + [sym_raw_string_literal] = ACTIONS(1876), + [sym_float_literal] = ACTIONS(1876), [sym_block_comment] = ACTIONS(3), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym_raw_string_literal] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_macro_rules_BANG] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_async] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_fn] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_impl] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mod] = ACTIONS(1882), + [anon_sym_pub] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_struct] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_union] = ACTIONS(1882), + [anon_sym_unsafe] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1882), + [anon_sym_move] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(1880), + [aux_sym_string_literal_token1] = ACTIONS(1880), + [sym_char_literal] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1882), + [sym_super] = ACTIONS(1882), + [sym_crate] = ACTIONS(1882), + [sym_metavariable] = ACTIONS(1880), + [sym_raw_string_literal] = ACTIONS(1880), + [sym_float_literal] = ACTIONS(1880), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym_raw_string_literal] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(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), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym_raw_string_literal] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_macro_rules_BANG] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_u8] = ACTIONS(1886), + [anon_sym_i8] = ACTIONS(1886), + [anon_sym_u16] = ACTIONS(1886), + [anon_sym_i16] = ACTIONS(1886), + [anon_sym_u32] = ACTIONS(1886), + [anon_sym_i32] = ACTIONS(1886), + [anon_sym_u64] = ACTIONS(1886), + [anon_sym_i64] = ACTIONS(1886), + [anon_sym_u128] = ACTIONS(1886), + [anon_sym_i128] = ACTIONS(1886), + [anon_sym_isize] = ACTIONS(1886), + [anon_sym_usize] = ACTIONS(1886), + [anon_sym_f32] = ACTIONS(1886), + [anon_sym_f64] = ACTIONS(1886), + [anon_sym_bool] = ACTIONS(1886), + [anon_sym_str] = ACTIONS(1886), + [anon_sym_char] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_impl] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mod] = ACTIONS(1886), + [anon_sym_pub] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_trait] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_unsafe] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1884), + [aux_sym_string_literal_token1] = ACTIONS(1884), + [sym_char_literal] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1884), + [sym_raw_string_literal] = ACTIONS(1884), + [sym_float_literal] = ACTIONS(1884), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym_raw_string_literal] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_macro_rules_BANG] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_u8] = ACTIONS(1890), + [anon_sym_i8] = ACTIONS(1890), + [anon_sym_u16] = ACTIONS(1890), + [anon_sym_i16] = ACTIONS(1890), + [anon_sym_u32] = ACTIONS(1890), + [anon_sym_i32] = ACTIONS(1890), + [anon_sym_u64] = ACTIONS(1890), + [anon_sym_i64] = ACTIONS(1890), + [anon_sym_u128] = ACTIONS(1890), + [anon_sym_i128] = ACTIONS(1890), + [anon_sym_isize] = ACTIONS(1890), + [anon_sym_usize] = ACTIONS(1890), + [anon_sym_f32] = ACTIONS(1890), + [anon_sym_f64] = ACTIONS(1890), + [anon_sym_bool] = ACTIONS(1890), + [anon_sym_str] = ACTIONS(1890), + [anon_sym_char] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [anon_sym_fn] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_impl] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mod] = ACTIONS(1890), + [anon_sym_pub] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1890), + [anon_sym_unsafe] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1890), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_crate] = ACTIONS(1890), + [sym_metavariable] = ACTIONS(1888), + [sym_raw_string_literal] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), [sym_block_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym_raw_string_literal] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_macro_rules_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_impl] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mod] = ACTIONS(1894), + [anon_sym_pub] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1894), + [anon_sym_trait] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_union] = ACTIONS(1894), + [anon_sym_unsafe] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_COLON_COLON] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1894), + [sym_integer_literal] = ACTIONS(1892), + [aux_sym_string_literal_token1] = ACTIONS(1892), + [sym_char_literal] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_crate] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1892), + [sym_raw_string_literal] = ACTIONS(1892), + [sym_float_literal] = ACTIONS(1892), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym_raw_string_literal] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_macro_rules_BANG] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_u8] = ACTIONS(1898), + [anon_sym_i8] = ACTIONS(1898), + [anon_sym_u16] = ACTIONS(1898), + [anon_sym_i16] = ACTIONS(1898), + [anon_sym_u32] = ACTIONS(1898), + [anon_sym_i32] = ACTIONS(1898), + [anon_sym_u64] = ACTIONS(1898), + [anon_sym_i64] = ACTIONS(1898), + [anon_sym_u128] = ACTIONS(1898), + [anon_sym_i128] = ACTIONS(1898), + [anon_sym_isize] = ACTIONS(1898), + [anon_sym_usize] = ACTIONS(1898), + [anon_sym_f32] = ACTIONS(1898), + [anon_sym_f64] = ACTIONS(1898), + [anon_sym_bool] = ACTIONS(1898), + [anon_sym_str] = ACTIONS(1898), + [anon_sym_char] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [anon_sym_fn] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mod] = ACTIONS(1898), + [anon_sym_pub] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_struct] = ACTIONS(1898), + [anon_sym_trait] = ACTIONS(1898), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_union] = ACTIONS(1898), + [anon_sym_unsafe] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_COLON_COLON] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1898), + [sym_integer_literal] = ACTIONS(1896), + [aux_sym_string_literal_token1] = ACTIONS(1896), + [sym_char_literal] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_crate] = ACTIONS(1898), + [sym_metavariable] = ACTIONS(1896), + [sym_raw_string_literal] = ACTIONS(1896), + [sym_float_literal] = ACTIONS(1896), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym_raw_string_literal] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_macro_rules_BANG] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_u8] = ACTIONS(1902), + [anon_sym_i8] = ACTIONS(1902), + [anon_sym_u16] = ACTIONS(1902), + [anon_sym_i16] = ACTIONS(1902), + [anon_sym_u32] = ACTIONS(1902), + [anon_sym_i32] = ACTIONS(1902), + [anon_sym_u64] = ACTIONS(1902), + [anon_sym_i64] = ACTIONS(1902), + [anon_sym_u128] = ACTIONS(1902), + [anon_sym_i128] = ACTIONS(1902), + [anon_sym_isize] = ACTIONS(1902), + [anon_sym_usize] = ACTIONS(1902), + [anon_sym_f32] = ACTIONS(1902), + [anon_sym_f64] = ACTIONS(1902), + [anon_sym_bool] = ACTIONS(1902), + [anon_sym_str] = ACTIONS(1902), + [anon_sym_char] = ACTIONS(1902), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [anon_sym_fn] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_impl] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_loop] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1902), + [anon_sym_trait] = ACTIONS(1902), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1902), + [anon_sym_unsafe] = ACTIONS(1902), + [anon_sym_use] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_COLON_COLON] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1902), + [sym_integer_literal] = ACTIONS(1900), + [aux_sym_string_literal_token1] = ACTIONS(1900), + [sym_char_literal] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1900), + [sym_raw_string_literal] = ACTIONS(1900), + [sym_float_literal] = ACTIONS(1900), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym_raw_string_literal] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_macro_rules_BANG] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_u8] = ACTIONS(1906), + [anon_sym_i8] = ACTIONS(1906), + [anon_sym_u16] = ACTIONS(1906), + [anon_sym_i16] = ACTIONS(1906), + [anon_sym_u32] = ACTIONS(1906), + [anon_sym_i32] = ACTIONS(1906), + [anon_sym_u64] = ACTIONS(1906), + [anon_sym_i64] = ACTIONS(1906), + [anon_sym_u128] = ACTIONS(1906), + [anon_sym_i128] = ACTIONS(1906), + [anon_sym_isize] = ACTIONS(1906), + [anon_sym_usize] = ACTIONS(1906), + [anon_sym_f32] = ACTIONS(1906), + [anon_sym_f64] = ACTIONS(1906), + [anon_sym_bool] = ACTIONS(1906), + [anon_sym_str] = ACTIONS(1906), + [anon_sym_char] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [anon_sym_fn] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_impl] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_loop] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mod] = ACTIONS(1906), + [anon_sym_pub] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1906), + [anon_sym_unsafe] = ACTIONS(1906), + [anon_sym_use] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_COLON_COLON] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1906), + [sym_integer_literal] = ACTIONS(1904), + [aux_sym_string_literal_token1] = ACTIONS(1904), + [sym_char_literal] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_crate] = ACTIONS(1906), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(1904), + [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym_raw_string_literal] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_macro_rules_BANG] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1910), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_COLON_COLON] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1908), + [aux_sym_string_literal_token1] = ACTIONS(1908), + [sym_char_literal] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1910), + [anon_sym_false] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1908), + [sym_raw_string_literal] = ACTIONS(1908), + [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym_raw_string_literal] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_macro_rules_BANG] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_u8] = ACTIONS(1914), + [anon_sym_i8] = ACTIONS(1914), + [anon_sym_u16] = ACTIONS(1914), + [anon_sym_i16] = ACTIONS(1914), + [anon_sym_u32] = ACTIONS(1914), + [anon_sym_i32] = ACTIONS(1914), + [anon_sym_u64] = ACTIONS(1914), + [anon_sym_i64] = ACTIONS(1914), + [anon_sym_u128] = ACTIONS(1914), + [anon_sym_i128] = ACTIONS(1914), + [anon_sym_isize] = ACTIONS(1914), + [anon_sym_usize] = ACTIONS(1914), + [anon_sym_f32] = ACTIONS(1914), + [anon_sym_f64] = ACTIONS(1914), + [anon_sym_bool] = ACTIONS(1914), + [anon_sym_str] = ACTIONS(1914), + [anon_sym_char] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [anon_sym_fn] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_impl] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_loop] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mod] = ACTIONS(1914), + [anon_sym_pub] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1914), + [anon_sym_trait] = ACTIONS(1914), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1914), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(1912), + [aux_sym_string_literal_token1] = ACTIONS(1912), + [sym_char_literal] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1912), + [sym_raw_string_literal] = ACTIONS(1912), + [sym_float_literal] = ACTIONS(1912), [sym_block_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym_raw_string_literal] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_macro_rules_BANG] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_u8] = ACTIONS(1918), + [anon_sym_i8] = ACTIONS(1918), + [anon_sym_u16] = ACTIONS(1918), + [anon_sym_i16] = ACTIONS(1918), + [anon_sym_u32] = ACTIONS(1918), + [anon_sym_i32] = ACTIONS(1918), + [anon_sym_u64] = ACTIONS(1918), + [anon_sym_i64] = ACTIONS(1918), + [anon_sym_u128] = ACTIONS(1918), + [anon_sym_i128] = ACTIONS(1918), + [anon_sym_isize] = ACTIONS(1918), + [anon_sym_usize] = ACTIONS(1918), + [anon_sym_f32] = ACTIONS(1918), + [anon_sym_f64] = ACTIONS(1918), + [anon_sym_bool] = ACTIONS(1918), + [anon_sym_str] = ACTIONS(1918), + [anon_sym_char] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_async] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_impl] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mod] = ACTIONS(1918), + [anon_sym_pub] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_trait] = ACTIONS(1918), + [anon_sym_type] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsafe] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_COLON_COLON] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_yield] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1918), + [sym_integer_literal] = ACTIONS(1916), + [aux_sym_string_literal_token1] = ACTIONS(1916), + [sym_char_literal] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1918), + [anon_sym_false] = ACTIONS(1918), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1918), + [sym_super] = ACTIONS(1918), + [sym_crate] = ACTIONS(1918), + [sym_metavariable] = ACTIONS(1916), + [sym_raw_string_literal] = ACTIONS(1916), + [sym_float_literal] = ACTIONS(1916), [sym_block_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym_raw_string_literal] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1920), + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_macro_rules_BANG] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1922), + [anon_sym_i8] = ACTIONS(1922), + [anon_sym_u16] = ACTIONS(1922), + [anon_sym_i16] = ACTIONS(1922), + [anon_sym_u32] = ACTIONS(1922), + [anon_sym_i32] = ACTIONS(1922), + [anon_sym_u64] = ACTIONS(1922), + [anon_sym_i64] = ACTIONS(1922), + [anon_sym_u128] = ACTIONS(1922), + [anon_sym_i128] = ACTIONS(1922), + [anon_sym_isize] = ACTIONS(1922), + [anon_sym_usize] = ACTIONS(1922), + [anon_sym_f32] = ACTIONS(1922), + [anon_sym_f64] = ACTIONS(1922), + [anon_sym_bool] = ACTIONS(1922), + [anon_sym_str] = ACTIONS(1922), + [anon_sym_char] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_enum] = ACTIONS(1922), + [anon_sym_fn] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_impl] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mod] = ACTIONS(1922), + [anon_sym_pub] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_trait] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1922), + [anon_sym_unsafe] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_COLON_COLON] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_yield] = ACTIONS(1922), + [anon_sym_move] = ACTIONS(1922), + [sym_integer_literal] = ACTIONS(1920), + [aux_sym_string_literal_token1] = ACTIONS(1920), + [sym_char_literal] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1922), + [anon_sym_false] = ACTIONS(1922), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1922), + [sym_super] = ACTIONS(1922), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1920), + [sym_raw_string_literal] = ACTIONS(1920), + [sym_float_literal] = ACTIONS(1920), [sym_block_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym_raw_string_literal] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1924), + [anon_sym_u8] = ACTIONS(1926), + [anon_sym_i8] = ACTIONS(1926), + [anon_sym_u16] = ACTIONS(1926), + [anon_sym_i16] = ACTIONS(1926), + [anon_sym_u32] = ACTIONS(1926), + [anon_sym_i32] = ACTIONS(1926), + [anon_sym_u64] = ACTIONS(1926), + [anon_sym_i64] = ACTIONS(1926), + [anon_sym_u128] = ACTIONS(1926), + [anon_sym_i128] = ACTIONS(1926), + [anon_sym_isize] = ACTIONS(1926), + [anon_sym_usize] = ACTIONS(1926), + [anon_sym_f32] = ACTIONS(1926), + [anon_sym_f64] = ACTIONS(1926), + [anon_sym_bool] = ACTIONS(1926), + [anon_sym_str] = ACTIONS(1926), + [anon_sym_char] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_async] = ACTIONS(1926), + [anon_sym_break] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(1926), + [anon_sym_continue] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_enum] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_impl] = ACTIONS(1926), + [anon_sym_let] = ACTIONS(1926), + [anon_sym_loop] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mod] = ACTIONS(1926), + [anon_sym_pub] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_struct] = ACTIONS(1926), + [anon_sym_trait] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_union] = ACTIONS(1926), + [anon_sym_unsafe] = ACTIONS(1926), + [anon_sym_use] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_yield] = ACTIONS(1926), + [anon_sym_move] = ACTIONS(1926), + [sym_integer_literal] = ACTIONS(1924), + [aux_sym_string_literal_token1] = ACTIONS(1924), + [sym_char_literal] = ACTIONS(1924), + [anon_sym_true] = ACTIONS(1926), + [anon_sym_false] = ACTIONS(1926), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1926), + [sym_super] = ACTIONS(1926), + [sym_crate] = ACTIONS(1926), + [sym_metavariable] = ACTIONS(1924), + [sym_raw_string_literal] = ACTIONS(1924), + [sym_float_literal] = ACTIONS(1924), [sym_block_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym_raw_string_literal] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_macro_rules_BANG] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_u8] = ACTIONS(1930), + [anon_sym_i8] = ACTIONS(1930), + [anon_sym_u16] = ACTIONS(1930), + [anon_sym_i16] = ACTIONS(1930), + [anon_sym_u32] = ACTIONS(1930), + [anon_sym_i32] = ACTIONS(1930), + [anon_sym_u64] = ACTIONS(1930), + [anon_sym_i64] = ACTIONS(1930), + [anon_sym_u128] = ACTIONS(1930), + [anon_sym_i128] = ACTIONS(1930), + [anon_sym_isize] = ACTIONS(1930), + [anon_sym_usize] = ACTIONS(1930), + [anon_sym_f32] = ACTIONS(1930), + [anon_sym_f64] = ACTIONS(1930), + [anon_sym_bool] = ACTIONS(1930), + [anon_sym_str] = ACTIONS(1930), + [anon_sym_char] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_impl] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_loop] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mod] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_trait] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_use] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_COLON_COLON] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_DOT_DOT] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_move] = ACTIONS(1930), + [sym_integer_literal] = ACTIONS(1928), + [aux_sym_string_literal_token1] = ACTIONS(1928), + [sym_char_literal] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_crate] = ACTIONS(1930), + [sym_metavariable] = ACTIONS(1928), + [sym_raw_string_literal] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), [sym_block_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym_raw_string_literal] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_macro_rules_BANG] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_u8] = ACTIONS(1934), + [anon_sym_i8] = ACTIONS(1934), + [anon_sym_u16] = ACTIONS(1934), + [anon_sym_i16] = ACTIONS(1934), + [anon_sym_u32] = ACTIONS(1934), + [anon_sym_i32] = ACTIONS(1934), + [anon_sym_u64] = ACTIONS(1934), + [anon_sym_i64] = ACTIONS(1934), + [anon_sym_u128] = ACTIONS(1934), + [anon_sym_i128] = ACTIONS(1934), + [anon_sym_isize] = ACTIONS(1934), + [anon_sym_usize] = ACTIONS(1934), + [anon_sym_f32] = ACTIONS(1934), + [anon_sym_f64] = ACTIONS(1934), + [anon_sym_bool] = ACTIONS(1934), + [anon_sym_str] = ACTIONS(1934), + [anon_sym_char] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_async] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_enum] = ACTIONS(1934), + [anon_sym_fn] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_impl] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mod] = ACTIONS(1934), + [anon_sym_pub] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1934), + [anon_sym_struct] = ACTIONS(1934), + [anon_sym_trait] = ACTIONS(1934), + [anon_sym_type] = ACTIONS(1934), + [anon_sym_union] = ACTIONS(1934), + [anon_sym_unsafe] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1932), + [anon_sym_COLON_COLON] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_DOT_DOT] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_yield] = ACTIONS(1934), + [anon_sym_move] = ACTIONS(1934), + [sym_integer_literal] = ACTIONS(1932), + [aux_sym_string_literal_token1] = ACTIONS(1932), + [sym_char_literal] = ACTIONS(1932), + [anon_sym_true] = ACTIONS(1934), + [anon_sym_false] = ACTIONS(1934), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1934), + [sym_super] = ACTIONS(1934), + [sym_crate] = ACTIONS(1934), + [sym_metavariable] = ACTIONS(1932), + [sym_raw_string_literal] = ACTIONS(1932), + [sym_float_literal] = ACTIONS(1932), [sym_block_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym_raw_string_literal] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym_raw_string_literal] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), - [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym_raw_string_literal] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym_raw_string_literal] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_u8] = ACTIONS(1928), - [anon_sym_i8] = ACTIONS(1928), - [anon_sym_u16] = ACTIONS(1928), - [anon_sym_i16] = ACTIONS(1928), - [anon_sym_u32] = ACTIONS(1928), - [anon_sym_i32] = ACTIONS(1928), - [anon_sym_u64] = ACTIONS(1928), - [anon_sym_i64] = ACTIONS(1928), - [anon_sym_u128] = ACTIONS(1928), - [anon_sym_i128] = ACTIONS(1928), - [anon_sym_isize] = ACTIONS(1928), - [anon_sym_usize] = ACTIONS(1928), - [anon_sym_f32] = ACTIONS(1928), - [anon_sym_f64] = ACTIONS(1928), - [anon_sym_bool] = ACTIONS(1928), - [anon_sym_str] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym_raw_string_literal] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym_raw_string_literal] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [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), [sym_block_comment] = ACTIONS(3), }, [475] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [476] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [477] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [478] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [479] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [480] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [481] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [482] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [483] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [484] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [485] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [486] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2008), + [sym_identifier] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_macro_rules_BANG] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_u8] = ACTIONS(2010), + [anon_sym_i8] = ACTIONS(2010), + [anon_sym_u16] = ACTIONS(2010), + [anon_sym_i16] = ACTIONS(2010), + [anon_sym_u32] = ACTIONS(2010), + [anon_sym_i32] = ACTIONS(2010), + [anon_sym_u64] = ACTIONS(2010), + [anon_sym_i64] = ACTIONS(2010), + [anon_sym_u128] = ACTIONS(2010), + [anon_sym_i128] = ACTIONS(2010), + [anon_sym_isize] = ACTIONS(2010), + [anon_sym_usize] = ACTIONS(2010), + [anon_sym_f32] = ACTIONS(2010), + [anon_sym_f64] = ACTIONS(2010), + [anon_sym_bool] = ACTIONS(2010), + [anon_sym_str] = ACTIONS(2010), + [anon_sym_char] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_default] = ACTIONS(2010), + [anon_sym_enum] = ACTIONS(2010), + [anon_sym_fn] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_impl] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_mod] = ACTIONS(2010), + [anon_sym_pub] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_struct] = ACTIONS(2010), + [anon_sym_trait] = ACTIONS(2010), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_union] = ACTIONS(2010), + [anon_sym_unsafe] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2008), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_yield] = ACTIONS(2010), + [anon_sym_move] = ACTIONS(2010), + [sym_integer_literal] = ACTIONS(2008), + [aux_sym_string_literal_token1] = ACTIONS(2008), + [sym_char_literal] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2010), + [sym_super] = ACTIONS(2010), + [sym_crate] = ACTIONS(2010), + [sym_metavariable] = ACTIONS(2008), + [sym_raw_string_literal] = ACTIONS(2008), + [sym_float_literal] = ACTIONS(2008), [sym_block_comment] = ACTIONS(3), }, [487] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_macro_rules_BANG] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2014), + [anon_sym_i8] = ACTIONS(2014), + [anon_sym_u16] = ACTIONS(2014), + [anon_sym_i16] = ACTIONS(2014), + [anon_sym_u32] = ACTIONS(2014), + [anon_sym_i32] = ACTIONS(2014), + [anon_sym_u64] = ACTIONS(2014), + [anon_sym_i64] = ACTIONS(2014), + [anon_sym_u128] = ACTIONS(2014), + [anon_sym_i128] = ACTIONS(2014), + [anon_sym_isize] = ACTIONS(2014), + [anon_sym_usize] = ACTIONS(2014), + [anon_sym_f32] = ACTIONS(2014), + [anon_sym_f64] = ACTIONS(2014), + [anon_sym_bool] = ACTIONS(2014), + [anon_sym_str] = ACTIONS(2014), + [anon_sym_char] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_async] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_default] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_impl] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_mod] = ACTIONS(2014), + [anon_sym_pub] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2014), + [anon_sym_trait] = ACTIONS(2014), + [anon_sym_type] = ACTIONS(2014), + [anon_sym_union] = ACTIONS(2014), + [anon_sym_unsafe] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_DOT_DOT] = ACTIONS(2012), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_yield] = ACTIONS(2014), + [anon_sym_move] = ACTIONS(2014), + [sym_integer_literal] = ACTIONS(2012), + [aux_sym_string_literal_token1] = ACTIONS(2012), + [sym_char_literal] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2014), + [sym_super] = ACTIONS(2014), + [sym_crate] = ACTIONS(2014), + [sym_metavariable] = ACTIONS(2012), + [sym_raw_string_literal] = ACTIONS(2012), + [sym_float_literal] = ACTIONS(2012), [sym_block_comment] = ACTIONS(3), }, [488] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_macro_rules_BANG] = ACTIONS(2016), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2018), + [anon_sym_i8] = ACTIONS(2018), + [anon_sym_u16] = ACTIONS(2018), + [anon_sym_i16] = ACTIONS(2018), + [anon_sym_u32] = ACTIONS(2018), + [anon_sym_i32] = ACTIONS(2018), + [anon_sym_u64] = ACTIONS(2018), + [anon_sym_i64] = ACTIONS(2018), + [anon_sym_u128] = ACTIONS(2018), + [anon_sym_i128] = ACTIONS(2018), + [anon_sym_isize] = ACTIONS(2018), + [anon_sym_usize] = ACTIONS(2018), + [anon_sym_f32] = ACTIONS(2018), + [anon_sym_f64] = ACTIONS(2018), + [anon_sym_bool] = ACTIONS(2018), + [anon_sym_str] = ACTIONS(2018), + [anon_sym_char] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_default] = ACTIONS(2018), + [anon_sym_enum] = ACTIONS(2018), + [anon_sym_fn] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_impl] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_mod] = ACTIONS(2018), + [anon_sym_pub] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_struct] = ACTIONS(2018), + [anon_sym_trait] = ACTIONS(2018), + [anon_sym_type] = ACTIONS(2018), + [anon_sym_union] = ACTIONS(2018), + [anon_sym_unsafe] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_DOT_DOT] = ACTIONS(2016), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_yield] = ACTIONS(2018), + [anon_sym_move] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2016), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), + [sym_metavariable] = ACTIONS(2016), + [sym_raw_string_literal] = ACTIONS(2016), + [sym_float_literal] = ACTIONS(2016), [sym_block_comment] = ACTIONS(3), }, [489] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_macro_rules_BANG] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_u8] = ACTIONS(2022), + [anon_sym_i8] = ACTIONS(2022), + [anon_sym_u16] = ACTIONS(2022), + [anon_sym_i16] = ACTIONS(2022), + [anon_sym_u32] = ACTIONS(2022), + [anon_sym_i32] = ACTIONS(2022), + [anon_sym_u64] = ACTIONS(2022), + [anon_sym_i64] = ACTIONS(2022), + [anon_sym_u128] = ACTIONS(2022), + [anon_sym_i128] = ACTIONS(2022), + [anon_sym_isize] = ACTIONS(2022), + [anon_sym_usize] = ACTIONS(2022), + [anon_sym_f32] = ACTIONS(2022), + [anon_sym_f64] = ACTIONS(2022), + [anon_sym_bool] = ACTIONS(2022), + [anon_sym_str] = ACTIONS(2022), + [anon_sym_char] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_fn] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_impl] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_mod] = ACTIONS(2022), + [anon_sym_pub] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_struct] = ACTIONS(2022), + [anon_sym_trait] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_union] = ACTIONS(2022), + [anon_sym_unsafe] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_DOT_DOT] = ACTIONS(2020), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_move] = ACTIONS(2022), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_crate] = ACTIONS(2022), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [490] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_macro_rules_BANG] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_u8] = ACTIONS(2026), + [anon_sym_i8] = ACTIONS(2026), + [anon_sym_u16] = ACTIONS(2026), + [anon_sym_i16] = ACTIONS(2026), + [anon_sym_u32] = ACTIONS(2026), + [anon_sym_i32] = ACTIONS(2026), + [anon_sym_u64] = ACTIONS(2026), + [anon_sym_i64] = ACTIONS(2026), + [anon_sym_u128] = ACTIONS(2026), + [anon_sym_i128] = ACTIONS(2026), + [anon_sym_isize] = ACTIONS(2026), + [anon_sym_usize] = ACTIONS(2026), + [anon_sym_f32] = ACTIONS(2026), + [anon_sym_f64] = ACTIONS(2026), + [anon_sym_bool] = ACTIONS(2026), + [anon_sym_str] = ACTIONS(2026), + [anon_sym_char] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [anon_sym_fn] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_impl] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_mod] = ACTIONS(2026), + [anon_sym_pub] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_struct] = ACTIONS(2026), + [anon_sym_trait] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_union] = ACTIONS(2026), + [anon_sym_unsafe] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_DOT_DOT] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_move] = ACTIONS(2026), + [sym_integer_literal] = ACTIONS(2024), + [aux_sym_string_literal_token1] = ACTIONS(2024), + [sym_char_literal] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_crate] = ACTIONS(2026), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2024), + [sym_float_literal] = ACTIONS(2024), [sym_block_comment] = ACTIONS(3), }, [491] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_macro_rules_BANG] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_DOT_DOT] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_yield] = ACTIONS(2030), + [anon_sym_move] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2028), + [aux_sym_string_literal_token1] = ACTIONS(2028), + [sym_char_literal] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2028), + [sym_raw_string_literal] = ACTIONS(2028), + [sym_float_literal] = ACTIONS(2028), [sym_block_comment] = ACTIONS(3), }, [492] = { - [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), - }, - [493] = { - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_macro_rules_BANG] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_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), - [anon_sym_i16] = ACTIONS(2008), - [anon_sym_u32] = ACTIONS(2008), - [anon_sym_i32] = ACTIONS(2008), - [anon_sym_u64] = ACTIONS(2008), - [anon_sym_i64] = ACTIONS(2008), - [anon_sym_u128] = ACTIONS(2008), - [anon_sym_i128] = ACTIONS(2008), - [anon_sym_isize] = ACTIONS(2008), - [anon_sym_usize] = ACTIONS(2008), - [anon_sym_f32] = ACTIONS(2008), - [anon_sym_f64] = ACTIONS(2008), - [anon_sym_bool] = ACTIONS(2008), - [anon_sym_str] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_fn] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_impl] = ACTIONS(2008), - [anon_sym_let] = ACTIONS(2008), - [anon_sym_loop] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_mod] = ACTIONS(2008), - [anon_sym_pub] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_trait] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsafe] = ACTIONS(2008), - [anon_sym_use] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_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(2006), - [sym_raw_string_literal] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), - [sym_block_comment] = ACTIONS(3), - }, - [494] = { - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_macro_rules_BANG] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_u8] = ACTIONS(2012), - [anon_sym_i8] = ACTIONS(2012), - [anon_sym_u16] = ACTIONS(2012), - [anon_sym_i16] = ACTIONS(2012), - [anon_sym_u32] = ACTIONS(2012), - [anon_sym_i32] = ACTIONS(2012), - [anon_sym_u64] = ACTIONS(2012), - [anon_sym_i64] = ACTIONS(2012), - [anon_sym_u128] = ACTIONS(2012), - [anon_sym_i128] = ACTIONS(2012), - [anon_sym_isize] = ACTIONS(2012), - [anon_sym_usize] = ACTIONS(2012), - [anon_sym_f32] = ACTIONS(2012), - [anon_sym_f64] = ACTIONS(2012), - [anon_sym_bool] = ACTIONS(2012), - [anon_sym_str] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_fn] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_impl] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_loop] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_mod] = ACTIONS(2012), - [anon_sym_pub] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_trait] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_unsafe] = ACTIONS(2012), - [anon_sym_use] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [sym_integer_literal] = ACTIONS(2010), - [aux_sym_string_literal_token1] = ACTIONS(2010), - [sym_char_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym_raw_string_literal] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), - [sym_block_comment] = ACTIONS(3), - }, - [495] = { - [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(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), - }, - [496] = { - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_macro_rules_BANG] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2020), - [anon_sym_i8] = ACTIONS(2020), - [anon_sym_u16] = ACTIONS(2020), - [anon_sym_i16] = ACTIONS(2020), - [anon_sym_u32] = ACTIONS(2020), - [anon_sym_i32] = ACTIONS(2020), - [anon_sym_u64] = ACTIONS(2020), - [anon_sym_i64] = ACTIONS(2020), - [anon_sym_u128] = ACTIONS(2020), - [anon_sym_i128] = ACTIONS(2020), - [anon_sym_isize] = ACTIONS(2020), - [anon_sym_usize] = ACTIONS(2020), - [anon_sym_f32] = ACTIONS(2020), - [anon_sym_f64] = ACTIONS(2020), - [anon_sym_bool] = ACTIONS(2020), - [anon_sym_str] = ACTIONS(2020), - [anon_sym_char] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_impl] = ACTIONS(2020), - [anon_sym_let] = ACTIONS(2020), - [anon_sym_loop] = ACTIONS(2020), - [anon_sym_match] = ACTIONS(2020), - [anon_sym_mod] = ACTIONS(2020), - [anon_sym_pub] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2020), - [anon_sym_trait] = ACTIONS(2020), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2020), - [anon_sym_unsafe] = ACTIONS(2020), - [anon_sym_use] = ACTIONS(2020), - [anon_sym_while] = ACTIONS(2020), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2018), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_yield] = ACTIONS(2020), - [anon_sym_move] = ACTIONS(2020), - [sym_integer_literal] = ACTIONS(2018), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2020), - [sym_super] = ACTIONS(2020), - [sym_crate] = ACTIONS(2020), - [sym_metavariable] = ACTIONS(2018), - [sym_raw_string_literal] = ACTIONS(2018), - [sym_float_literal] = ACTIONS(2018), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_macro_rules_BANG] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_u8] = ACTIONS(2024), - [anon_sym_i8] = ACTIONS(2024), - [anon_sym_u16] = ACTIONS(2024), - [anon_sym_i16] = ACTIONS(2024), - [anon_sym_u32] = ACTIONS(2024), - [anon_sym_i32] = ACTIONS(2024), - [anon_sym_u64] = ACTIONS(2024), - [anon_sym_i64] = ACTIONS(2024), - [anon_sym_u128] = ACTIONS(2024), - [anon_sym_i128] = ACTIONS(2024), - [anon_sym_isize] = ACTIONS(2024), - [anon_sym_usize] = ACTIONS(2024), - [anon_sym_f32] = ACTIONS(2024), - [anon_sym_f64] = ACTIONS(2024), - [anon_sym_bool] = ACTIONS(2024), - [anon_sym_str] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_fn] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_impl] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_loop] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_mod] = ACTIONS(2024), - [anon_sym_pub] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_trait] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_unsafe] = ACTIONS(2024), - [anon_sym_use] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_COLON_COLON] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_DOT_DOT] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_move] = ACTIONS(2024), - [sym_integer_literal] = ACTIONS(2022), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2022), - [sym_float_literal] = ACTIONS(2022), - [sym_block_comment] = ACTIONS(3), - }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_macro_rules_BANG] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_yield] = ACTIONS(2028), - [anon_sym_move] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2026), - [aux_sym_string_literal_token1] = ACTIONS(2026), - [sym_char_literal] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2026), - [sym_float_literal] = ACTIONS(2026), - [sym_block_comment] = ACTIONS(3), - }, - [499] = { - [ts_builtin_sym_end] = ACTIONS(2030), + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(492), [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_macro_rules_BANG] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_RPAREN] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2043), + [anon_sym_RBRACK] = ACTIONS(2038), + [anon_sym_DOLLAR] = ACTIONS(2046), [anon_sym_u8] = ACTIONS(2032), [anon_sym_i8] = ACTIONS(2032), [anon_sym_u16] = ACTIONS(2032), @@ -64770,8 +62701,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -64794,475 +62728,844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_COLON_COLON] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_yield] = ACTIONS(2032), - [anon_sym_move] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2030), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2049), + [aux_sym_string_literal_token1] = ACTIONS(2052), + [sym_char_literal] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2032), [sym_super] = ACTIONS(2032), [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2030), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2058), + [sym_raw_string_literal] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2049), [sym_block_comment] = ACTIONS(3), }, - [500] = { - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_macro_rules_BANG] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PIPE] = ACTIONS(2034), - [anon_sym_yield] = ACTIONS(2036), - [anon_sym_move] = ACTIONS(2036), - [sym_integer_literal] = ACTIONS(2034), - [aux_sym_string_literal_token1] = ACTIONS(2034), - [sym_char_literal] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), - [sym_metavariable] = ACTIONS(2034), - [sym_raw_string_literal] = ACTIONS(2034), - [sym_float_literal] = ACTIONS(2034), + [493] = { + [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(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2061), + [anon_sym_i8] = ACTIONS(2061), + [anon_sym_u16] = ACTIONS(2061), + [anon_sym_i16] = ACTIONS(2061), + [anon_sym_u32] = ACTIONS(2061), + [anon_sym_i32] = ACTIONS(2061), + [anon_sym_u64] = ACTIONS(2061), + [anon_sym_i64] = ACTIONS(2061), + [anon_sym_u128] = ACTIONS(2061), + [anon_sym_i128] = ACTIONS(2061), + [anon_sym_isize] = ACTIONS(2061), + [anon_sym_usize] = ACTIONS(2061), + [anon_sym_f32] = ACTIONS(2061), + [anon_sym_f64] = ACTIONS(2061), + [anon_sym_bool] = ACTIONS(2061), + [anon_sym_str] = ACTIONS(2061), + [anon_sym_char] = ACTIONS(2061), + [aux_sym__non_special_token_token1] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_impl] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_mod] = ACTIONS(2061), + [anon_sym_pub] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_union] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_where] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [sym_mutable_specifier] = ACTIONS(2061), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2061), + [sym_super] = ACTIONS(2061), + [sym_crate] = ACTIONS(2061), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_macro_rules_BANG] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_u8] = ACTIONS(2040), - [anon_sym_i8] = ACTIONS(2040), - [anon_sym_u16] = ACTIONS(2040), - [anon_sym_i16] = ACTIONS(2040), - [anon_sym_u32] = ACTIONS(2040), - [anon_sym_i32] = ACTIONS(2040), - [anon_sym_u64] = ACTIONS(2040), - [anon_sym_i64] = ACTIONS(2040), - [anon_sym_u128] = ACTIONS(2040), - [anon_sym_i128] = ACTIONS(2040), - [anon_sym_isize] = ACTIONS(2040), - [anon_sym_usize] = ACTIONS(2040), - [anon_sym_f32] = ACTIONS(2040), - [anon_sym_f64] = ACTIONS(2040), - [anon_sym_bool] = ACTIONS(2040), - [anon_sym_str] = ACTIONS(2040), - [anon_sym_char] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_impl] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_mod] = ACTIONS(2040), - [anon_sym_pub] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_trait] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_unsafe] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_COLON_COLON] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_DOT_DOT] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2038), - [anon_sym_yield] = ACTIONS(2040), - [anon_sym_move] = ACTIONS(2040), - [sym_integer_literal] = ACTIONS(2038), - [aux_sym_string_literal_token1] = ACTIONS(2038), - [sym_char_literal] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2040), - [sym_super] = ACTIONS(2040), - [sym_crate] = ACTIONS(2040), - [sym_metavariable] = ACTIONS(2038), - [sym_raw_string_literal] = ACTIONS(2038), - [sym_float_literal] = ACTIONS(2038), + [494] = { + [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(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [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(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, - [502] = { - [sym__token_pattern] = STATE(262), - [sym_token_tree_pattern] = STATE(262), - [sym_token_binding_pattern] = STATE(262), - [sym_token_repetition_pattern] = STATE(262), - [sym__literal] = STATE(262), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2042), - [anon_sym_i8] = ACTIONS(2042), - [anon_sym_u16] = ACTIONS(2042), - [anon_sym_i16] = ACTIONS(2042), - [anon_sym_u32] = ACTIONS(2042), - [anon_sym_i32] = ACTIONS(2042), - [anon_sym_u64] = ACTIONS(2042), - [anon_sym_i64] = ACTIONS(2042), - [anon_sym_u128] = ACTIONS(2042), - [anon_sym_i128] = ACTIONS(2042), - [anon_sym_isize] = ACTIONS(2042), - [anon_sym_usize] = ACTIONS(2042), - [anon_sym_f32] = ACTIONS(2042), - [anon_sym_f64] = ACTIONS(2042), - [anon_sym_bool] = ACTIONS(2042), - [anon_sym_str] = ACTIONS(2042), - [anon_sym_char] = ACTIONS(2042), - [aux_sym__non_special_token_token1] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_fn] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_impl] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_mod] = ACTIONS(2042), - [anon_sym_pub] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_trait] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_unsafe] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_where] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [sym_mutable_specifier] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [495] = { + [sym__token_pattern] = STATE(501), + [sym_token_tree_pattern] = STATE(501), + [sym_token_binding_pattern] = STATE(501), + [sym_token_repetition_pattern] = STATE(501), + [sym__literal] = STATE(501), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2085), + [anon_sym_i8] = ACTIONS(2085), + [anon_sym_u16] = ACTIONS(2085), + [anon_sym_i16] = ACTIONS(2085), + [anon_sym_u32] = ACTIONS(2085), + [anon_sym_i32] = ACTIONS(2085), + [anon_sym_u64] = ACTIONS(2085), + [anon_sym_i64] = ACTIONS(2085), + [anon_sym_u128] = ACTIONS(2085), + [anon_sym_i128] = ACTIONS(2085), + [anon_sym_isize] = ACTIONS(2085), + [anon_sym_usize] = ACTIONS(2085), + [anon_sym_f32] = ACTIONS(2085), + [anon_sym_f64] = ACTIONS(2085), + [anon_sym_bool] = ACTIONS(2085), + [anon_sym_str] = ACTIONS(2085), + [anon_sym_char] = ACTIONS(2085), + [aux_sym__non_special_token_token1] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [anon_sym_fn] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_impl] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_mod] = ACTIONS(2085), + [anon_sym_pub] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_static] = ACTIONS(2085), + [anon_sym_struct] = ACTIONS(2085), + [anon_sym_trait] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_union] = ACTIONS(2085), + [anon_sym_unsafe] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_where] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [sym_mutable_specifier] = ACTIONS(2085), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_crate] = ACTIONS(2085), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, - [503] = { - [sym__token_pattern] = STATE(520), - [sym_token_tree_pattern] = STATE(520), - [sym_token_binding_pattern] = STATE(520), - [sym_token_repetition_pattern] = STATE(520), - [sym__literal] = STATE(520), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(520), - [sym_identifier] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2062), - [anon_sym_i8] = ACTIONS(2062), - [anon_sym_u16] = ACTIONS(2062), - [anon_sym_i16] = ACTIONS(2062), - [anon_sym_u32] = ACTIONS(2062), - [anon_sym_i32] = ACTIONS(2062), - [anon_sym_u64] = ACTIONS(2062), - [anon_sym_i64] = ACTIONS(2062), - [anon_sym_u128] = ACTIONS(2062), - [anon_sym_i128] = ACTIONS(2062), - [anon_sym_isize] = ACTIONS(2062), - [anon_sym_usize] = ACTIONS(2062), - [anon_sym_f32] = ACTIONS(2062), - [anon_sym_f64] = ACTIONS(2062), - [anon_sym_bool] = ACTIONS(2062), - [anon_sym_str] = ACTIONS(2062), - [anon_sym_char] = ACTIONS(2062), - [aux_sym__non_special_token_token1] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2062), - [anon_sym_as] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_await] = ACTIONS(2062), - [anon_sym_break] = ACTIONS(2062), - [anon_sym_const] = ACTIONS(2062), - [anon_sym_continue] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_fn] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_impl] = ACTIONS(2062), - [anon_sym_let] = ACTIONS(2062), - [anon_sym_loop] = ACTIONS(2062), - [anon_sym_match] = ACTIONS(2062), - [anon_sym_mod] = ACTIONS(2062), - [anon_sym_pub] = ACTIONS(2062), - [anon_sym_return] = ACTIONS(2062), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_struct] = ACTIONS(2062), - [anon_sym_trait] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_union] = ACTIONS(2062), - [anon_sym_unsafe] = ACTIONS(2062), - [anon_sym_use] = ACTIONS(2062), - [anon_sym_where] = ACTIONS(2062), - [anon_sym_while] = ACTIONS(2062), - [sym_mutable_specifier] = ACTIONS(2062), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2062), - [sym_super] = ACTIONS(2062), - [sym_crate] = ACTIONS(2062), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [496] = { + [sym__token_pattern] = STATE(506), + [sym_token_tree_pattern] = STATE(506), + [sym_token_binding_pattern] = STATE(506), + [sym_token_repetition_pattern] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2087), + [anon_sym_i8] = ACTIONS(2087), + [anon_sym_u16] = ACTIONS(2087), + [anon_sym_i16] = ACTIONS(2087), + [anon_sym_u32] = ACTIONS(2087), + [anon_sym_i32] = ACTIONS(2087), + [anon_sym_u64] = ACTIONS(2087), + [anon_sym_i64] = ACTIONS(2087), + [anon_sym_u128] = ACTIONS(2087), + [anon_sym_i128] = ACTIONS(2087), + [anon_sym_isize] = ACTIONS(2087), + [anon_sym_usize] = ACTIONS(2087), + [anon_sym_f32] = ACTIONS(2087), + [anon_sym_f64] = ACTIONS(2087), + [anon_sym_bool] = ACTIONS(2087), + [anon_sym_str] = ACTIONS(2087), + [anon_sym_char] = ACTIONS(2087), + [aux_sym__non_special_token_token1] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2087), + [anon_sym_as] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_await] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2087), + [anon_sym_fn] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_impl] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_mod] = ACTIONS(2087), + [anon_sym_pub] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_static] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2087), + [anon_sym_trait] = ACTIONS(2087), + [anon_sym_type] = ACTIONS(2087), + [anon_sym_union] = ACTIONS(2087), + [anon_sym_unsafe] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_where] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [sym_mutable_specifier] = ACTIONS(2087), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2087), + [sym_super] = ACTIONS(2087), + [sym_crate] = ACTIONS(2087), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, - [504] = { - [sym__token_pattern] = STATE(502), - [sym_token_tree_pattern] = STATE(502), - [sym_token_binding_pattern] = STATE(502), - [sym_token_repetition_pattern] = STATE(502), + [497] = { + [sym__token_pattern] = STATE(505), + [sym_token_tree_pattern] = STATE(505), + [sym_token_binding_pattern] = STATE(505), + [sym_token_repetition_pattern] = STATE(505), + [sym__literal] = STATE(505), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_RBRACK] = ACTIONS(2083), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2089), + [anon_sym_i8] = ACTIONS(2089), + [anon_sym_u16] = ACTIONS(2089), + [anon_sym_i16] = ACTIONS(2089), + [anon_sym_u32] = ACTIONS(2089), + [anon_sym_i32] = ACTIONS(2089), + [anon_sym_u64] = ACTIONS(2089), + [anon_sym_i64] = ACTIONS(2089), + [anon_sym_u128] = ACTIONS(2089), + [anon_sym_i128] = ACTIONS(2089), + [anon_sym_isize] = ACTIONS(2089), + [anon_sym_usize] = ACTIONS(2089), + [anon_sym_f32] = ACTIONS(2089), + [anon_sym_f64] = ACTIONS(2089), + [anon_sym_bool] = ACTIONS(2089), + [anon_sym_str] = ACTIONS(2089), + [anon_sym_char] = ACTIONS(2089), + [aux_sym__non_special_token_token1] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_impl] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_mod] = ACTIONS(2089), + [anon_sym_pub] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_union] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_where] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [sym_mutable_specifier] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_crate] = ACTIONS(2089), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + [sym_block_comment] = ACTIONS(3), + }, + [498] = { + [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(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_RBRACK] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + [sym_block_comment] = ACTIONS(3), + }, + [499] = { + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_match_arm] = STATE(511), + [sym_last_match_arm] = STATE(2426), + [sym_match_pattern] = STATE(2518), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1908), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), + [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(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [500] = { + [sym__token_pattern] = STATE(250), + [sym_token_tree_pattern] = STATE(250), + [sym_token_binding_pattern] = STATE(250), + [sym_token_repetition_pattern] = STATE(250), + [sym__literal] = STATE(250), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [aux_sym__non_special_token_token1] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [sym_mutable_specifier] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + [sym_block_comment] = ACTIONS(3), + }, + [501] = { + [sym__token_pattern] = STATE(250), + [sym_token_tree_pattern] = STATE(250), + [sym_token_binding_pattern] = STATE(250), + [sym_token_repetition_pattern] = STATE(250), + [sym__literal] = STATE(250), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [aux_sym__non_special_token_token1] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [sym_mutable_specifier] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + [sym_block_comment] = ACTIONS(3), + }, + [502] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), [sym__literal] = STATE(502), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [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(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_crate] = ACTIONS(2066), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_RBRACK] = ACTIONS(2103), + [anon_sym_DOLLAR] = ACTIONS(2111), + [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(2114), + [aux_sym_string_literal_token1] = ACTIONS(2117), + [sym_char_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_crate] = ACTIONS(2097), + [sym_raw_string_literal] = ACTIONS(2114), + [sym_float_literal] = ACTIONS(2114), [sym_block_comment] = ACTIONS(3), }, - [505] = { - [sym_attribute_item] = STATE(566), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_match_arm] = STATE(521), - [sym_last_match_arm] = STATE(2464), - [sym_match_pattern] = STATE(2472), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2151), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_enum_variant_list_repeat1] = STATE(566), - [aux_sym_match_block_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [503] = { + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_match_arm] = STATE(511), + [sym_last_match_arm] = STATE(2554), + [sym_match_pattern] = STATE(2518), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1908), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -65270,379 +63573,531 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [504] = { + [sym__token_pattern] = STATE(250), + [sym_token_tree_pattern] = STATE(250), + [sym_token_binding_pattern] = STATE(250), + [sym_token_repetition_pattern] = STATE(250), + [sym__literal] = STATE(250), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_RBRACK] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [aux_sym__non_special_token_token1] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [sym_mutable_specifier] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + [sym_block_comment] = ACTIONS(3), + }, + [505] = { + [sym__token_pattern] = STATE(250), + [sym_token_tree_pattern] = STATE(250), + [sym_token_binding_pattern] = STATE(250), + [sym_token_repetition_pattern] = STATE(250), + [sym__literal] = STATE(250), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_RBRACK] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [aux_sym__non_special_token_token1] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [sym_mutable_specifier] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + [sym_block_comment] = ACTIONS(3), + }, [506] = { - [sym__token_pattern] = STATE(515), - [sym_token_tree_pattern] = STATE(515), - [sym_token_binding_pattern] = STATE(515), - [sym_token_repetition_pattern] = STATE(515), - [sym__literal] = STATE(515), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_RPAREN] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2068), - [anon_sym_i8] = ACTIONS(2068), - [anon_sym_u16] = ACTIONS(2068), - [anon_sym_i16] = ACTIONS(2068), - [anon_sym_u32] = ACTIONS(2068), - [anon_sym_i32] = ACTIONS(2068), - [anon_sym_u64] = ACTIONS(2068), - [anon_sym_i64] = ACTIONS(2068), - [anon_sym_u128] = ACTIONS(2068), - [anon_sym_i128] = ACTIONS(2068), - [anon_sym_isize] = ACTIONS(2068), - [anon_sym_usize] = ACTIONS(2068), - [anon_sym_f32] = ACTIONS(2068), - [anon_sym_f64] = ACTIONS(2068), - [anon_sym_bool] = ACTIONS(2068), - [anon_sym_str] = ACTIONS(2068), - [anon_sym_char] = ACTIONS(2068), - [aux_sym__non_special_token_token1] = ACTIONS(2068), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(2068), - [anon_sym_async] = ACTIONS(2068), - [anon_sym_await] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_default] = ACTIONS(2068), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_fn] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_impl] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_mod] = ACTIONS(2068), - [anon_sym_pub] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2068), - [anon_sym_struct] = ACTIONS(2068), - [anon_sym_trait] = ACTIONS(2068), - [anon_sym_type] = ACTIONS(2068), - [anon_sym_union] = ACTIONS(2068), - [anon_sym_unsafe] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_where] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [sym_mutable_specifier] = ACTIONS(2068), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2068), - [sym_super] = ACTIONS(2068), - [sym_crate] = ACTIONS(2068), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym__token_pattern] = STATE(250), + [sym_token_tree_pattern] = STATE(250), + [sym_token_binding_pattern] = STATE(250), + [sym_token_repetition_pattern] = STATE(250), + [sym__literal] = STATE(250), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [aux_sym__non_special_token_token1] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [sym_mutable_specifier] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [507] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_RBRACK] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_u8] = ACTIONS(2072), - [anon_sym_i8] = ACTIONS(2072), - [anon_sym_u16] = ACTIONS(2072), - [anon_sym_i16] = ACTIONS(2072), - [anon_sym_u32] = ACTIONS(2072), - [anon_sym_i32] = ACTIONS(2072), - [anon_sym_u64] = ACTIONS(2072), - [anon_sym_i64] = ACTIONS(2072), - [anon_sym_u128] = ACTIONS(2072), - [anon_sym_i128] = ACTIONS(2072), - [anon_sym_isize] = ACTIONS(2072), - [anon_sym_usize] = ACTIONS(2072), - [anon_sym_f32] = ACTIONS(2072), - [anon_sym_f64] = ACTIONS(2072), - [anon_sym_bool] = ACTIONS(2072), - [anon_sym_str] = ACTIONS(2072), - [anon_sym_char] = ACTIONS(2072), - [aux_sym__non_special_token_token1] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(2072), - [anon_sym_async] = ACTIONS(2072), - [anon_sym_await] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_default] = ACTIONS(2072), - [anon_sym_enum] = ACTIONS(2072), - [anon_sym_fn] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_impl] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_mod] = ACTIONS(2072), - [anon_sym_pub] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(2072), - [anon_sym_trait] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_union] = ACTIONS(2072), - [anon_sym_unsafe] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_where] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [sym_mutable_specifier] = ACTIONS(2072), - [sym_integer_literal] = ACTIONS(2089), - [aux_sym_string_literal_token1] = ACTIONS(2092), - [sym_char_literal] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2072), - [sym_super] = ACTIONS(2072), - [sym_crate] = ACTIONS(2072), - [sym_metavariable] = ACTIONS(2098), - [sym_raw_string_literal] = ACTIONS(2089), - [sym_float_literal] = ACTIONS(2089), + [sym__token_pattern] = STATE(250), + [sym_token_tree_pattern] = STATE(250), + [sym_token_binding_pattern] = STATE(250), + [sym_token_repetition_pattern] = STATE(250), + [sym__literal] = STATE(250), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [aux_sym__non_special_token_token1] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [sym_mutable_specifier] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [508] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_RBRACK] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(2115), - [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(2118), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2124), - [anon_sym_false] = ACTIONS(2124), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_raw_string_literal] = ACTIONS(2118), - [sym_float_literal] = ACTIONS(2118), + [sym__token_pattern] = STATE(509), + [sym_token_tree_pattern] = STATE(509), + [sym_token_binding_pattern] = STATE(509), + [sym_token_repetition_pattern] = STATE(509), + [sym__literal] = STATE(509), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [509] = { - [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(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(512), - [sym_identifier] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2044), + [sym__token_pattern] = STATE(250), + [sym_token_tree_pattern] = STATE(250), + [sym_token_binding_pattern] = STATE(250), + [sym_token_repetition_pattern] = STATE(250), + [sym__literal] = STATE(250), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_pattern_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2063), [anon_sym_RPAREN] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2127), - [anon_sym_i8] = ACTIONS(2127), - [anon_sym_u16] = ACTIONS(2127), - [anon_sym_i16] = ACTIONS(2127), - [anon_sym_u32] = ACTIONS(2127), - [anon_sym_i32] = ACTIONS(2127), - [anon_sym_u64] = ACTIONS(2127), - [anon_sym_i64] = ACTIONS(2127), - [anon_sym_u128] = ACTIONS(2127), - [anon_sym_i128] = ACTIONS(2127), - [anon_sym_isize] = ACTIONS(2127), - [anon_sym_usize] = ACTIONS(2127), - [anon_sym_f32] = ACTIONS(2127), - [anon_sym_f64] = ACTIONS(2127), - [anon_sym_bool] = ACTIONS(2127), - [anon_sym_str] = ACTIONS(2127), - [anon_sym_char] = ACTIONS(2127), - [aux_sym__non_special_token_token1] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [anon_sym_fn] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_impl] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_loop] = ACTIONS(2127), - [anon_sym_match] = ACTIONS(2127), - [anon_sym_mod] = ACTIONS(2127), - [anon_sym_pub] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2127), - [anon_sym_trait] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2127), - [anon_sym_unsafe] = ACTIONS(2127), - [anon_sym_use] = ACTIONS(2127), - [anon_sym_where] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [sym_mutable_specifier] = ACTIONS(2127), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_crate] = ACTIONS(2127), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [aux_sym__non_special_token_token1] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [sym_mutable_specifier] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [510] = { - [sym_attribute_item] = STATE(566), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_match_arm] = STATE(521), - [sym_last_match_arm] = STATE(2387), - [sym_match_pattern] = STATE(2472), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2151), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_enum_variant_list_repeat1] = STATE(566), - [aux_sym_match_block_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_attribute_item] = STATE(558), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_match_arm] = STATE(511), + [sym_last_match_arm] = STATE(2378), + [sym_match_pattern] = STATE(2518), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1908), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_match_block_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -65650,2268 +64105,1657 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [511] = { - [sym__token_pattern] = STATE(516), - [sym_token_tree_pattern] = STATE(516), - [sym_token_binding_pattern] = STATE(516), - [sym_token_repetition_pattern] = STATE(516), - [sym__literal] = STATE(516), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(516), + [sym_attribute_item] = STATE(556), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_match_arm] = STATE(511), + [sym_match_pattern] = STATE(2577), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1908), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_enum_variant_list_repeat1] = STATE(556), + [aux_sym_match_block_repeat1] = STATE(511), [sym_identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2131), - [anon_sym_i8] = ACTIONS(2131), - [anon_sym_u16] = ACTIONS(2131), - [anon_sym_i16] = ACTIONS(2131), - [anon_sym_u32] = ACTIONS(2131), - [anon_sym_i32] = ACTIONS(2131), - [anon_sym_u64] = ACTIONS(2131), - [anon_sym_i64] = ACTIONS(2131), - [anon_sym_u128] = ACTIONS(2131), - [anon_sym_i128] = ACTIONS(2131), - [anon_sym_isize] = ACTIONS(2131), - [anon_sym_usize] = ACTIONS(2131), - [anon_sym_f32] = ACTIONS(2131), - [anon_sym_f64] = ACTIONS(2131), - [anon_sym_bool] = ACTIONS(2131), - [anon_sym_str] = ACTIONS(2131), - [anon_sym_char] = ACTIONS(2131), - [aux_sym__non_special_token_token1] = ACTIONS(2131), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2131), - [anon_sym_enum] = ACTIONS(2131), - [anon_sym_fn] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_impl] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_mod] = ACTIONS(2131), - [anon_sym_pub] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_static] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2131), - [anon_sym_trait] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2131), - [anon_sym_unsafe] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_where] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [sym_mutable_specifier] = ACTIONS(2131), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2131), - [sym_super] = ACTIONS(2131), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_u8] = ACTIONS(2140), + [anon_sym_i8] = ACTIONS(2140), + [anon_sym_u16] = ACTIONS(2140), + [anon_sym_i16] = ACTIONS(2140), + [anon_sym_u32] = ACTIONS(2140), + [anon_sym_i32] = ACTIONS(2140), + [anon_sym_u64] = ACTIONS(2140), + [anon_sym_i64] = ACTIONS(2140), + [anon_sym_u128] = ACTIONS(2140), + [anon_sym_i128] = ACTIONS(2140), + [anon_sym_isize] = ACTIONS(2140), + [anon_sym_usize] = ACTIONS(2140), + [anon_sym_f32] = ACTIONS(2140), + [anon_sym_f64] = ACTIONS(2140), + [anon_sym_bool] = ACTIONS(2140), + [anon_sym_str] = ACTIONS(2140), + [anon_sym_char] = ACTIONS(2140), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_union] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(2149), + [anon_sym_ref] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym__] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2164), + [sym_mutable_specifier] = ACTIONS(2167), + [anon_sym_DOT_DOT] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2173), + [sym_integer_literal] = ACTIONS(2176), + [aux_sym_string_literal_token1] = ACTIONS(2179), + [sym_char_literal] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2182), + [anon_sym_false] = ACTIONS(2182), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2176), + [sym_float_literal] = ACTIONS(2176), [sym_block_comment] = ACTIONS(3), }, [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(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_RPAREN] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2042), - [anon_sym_i8] = ACTIONS(2042), - [anon_sym_u16] = ACTIONS(2042), - [anon_sym_i16] = ACTIONS(2042), - [anon_sym_u32] = ACTIONS(2042), - [anon_sym_i32] = ACTIONS(2042), - [anon_sym_u64] = ACTIONS(2042), - [anon_sym_i64] = ACTIONS(2042), - [anon_sym_u128] = ACTIONS(2042), - [anon_sym_i128] = ACTIONS(2042), - [anon_sym_isize] = ACTIONS(2042), - [anon_sym_usize] = ACTIONS(2042), - [anon_sym_f32] = ACTIONS(2042), - [anon_sym_f64] = ACTIONS(2042), - [anon_sym_bool] = ACTIONS(2042), - [anon_sym_str] = ACTIONS(2042), - [anon_sym_char] = ACTIONS(2042), - [aux_sym__non_special_token_token1] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_fn] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_impl] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_mod] = ACTIONS(2042), - [anon_sym_pub] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_trait] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_unsafe] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_where] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [sym_mutable_specifier] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_token_tree] = STATE(513), + [sym_token_repetition] = STATE(513), + [sym__literal] = STATE(513), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [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(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_metavariable] = ACTIONS(2203), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [513] = { - [sym__token_pattern] = STATE(518), - [sym_token_tree_pattern] = STATE(518), - [sym_token_binding_pattern] = STATE(518), - [sym_token_repetition_pattern] = STATE(518), - [sym__literal] = STATE(518), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_RBRACK] = ACTIONS(2070), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2135), - [anon_sym_i8] = ACTIONS(2135), - [anon_sym_u16] = ACTIONS(2135), - [anon_sym_i16] = ACTIONS(2135), - [anon_sym_u32] = ACTIONS(2135), - [anon_sym_i32] = ACTIONS(2135), - [anon_sym_u64] = ACTIONS(2135), - [anon_sym_i64] = ACTIONS(2135), - [anon_sym_u128] = ACTIONS(2135), - [anon_sym_i128] = ACTIONS(2135), - [anon_sym_isize] = ACTIONS(2135), - [anon_sym_usize] = ACTIONS(2135), - [anon_sym_f32] = ACTIONS(2135), - [anon_sym_f64] = ACTIONS(2135), - [anon_sym_bool] = ACTIONS(2135), - [anon_sym_str] = ACTIONS(2135), - [anon_sym_char] = ACTIONS(2135), - [aux_sym__non_special_token_token1] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [anon_sym_fn] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_impl] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_loop] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_mod] = ACTIONS(2135), - [anon_sym_pub] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2135), - [anon_sym_trait] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2135), - [anon_sym_unsafe] = ACTIONS(2135), - [anon_sym_use] = ACTIONS(2135), - [anon_sym_where] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [sym_mutable_specifier] = ACTIONS(2135), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_crate] = ACTIONS(2135), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [514] = { - [sym_attribute_item] = STATE(566), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_match_arm] = STATE(521), - [sym_last_match_arm] = STATE(2465), - [sym_match_pattern] = STATE(2472), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2151), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_enum_variant_list_repeat1] = STATE(566), - [aux_sym_match_block_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [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(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(535), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2221), + [anon_sym_u8] = ACTIONS(2211), + [anon_sym_i8] = ACTIONS(2211), + [anon_sym_u16] = ACTIONS(2211), + [anon_sym_i16] = ACTIONS(2211), + [anon_sym_u32] = ACTIONS(2211), + [anon_sym_i32] = ACTIONS(2211), + [anon_sym_u64] = ACTIONS(2211), + [anon_sym_i64] = ACTIONS(2211), + [anon_sym_u128] = ACTIONS(2211), + [anon_sym_i128] = ACTIONS(2211), + [anon_sym_isize] = ACTIONS(2211), + [anon_sym_usize] = ACTIONS(2211), + [anon_sym_f32] = ACTIONS(2211), + [anon_sym_f64] = ACTIONS(2211), + [anon_sym_bool] = ACTIONS(2211), + [anon_sym_str] = ACTIONS(2211), + [anon_sym_char] = ACTIONS(2211), + [aux_sym__non_special_token_token1] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_default] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_impl] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_mod] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_trait] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_where] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [sym_mutable_specifier] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, [515] = { - [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(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2042), - [anon_sym_i8] = ACTIONS(2042), - [anon_sym_u16] = ACTIONS(2042), - [anon_sym_i16] = ACTIONS(2042), - [anon_sym_u32] = ACTIONS(2042), - [anon_sym_i32] = ACTIONS(2042), - [anon_sym_u64] = ACTIONS(2042), - [anon_sym_i64] = ACTIONS(2042), - [anon_sym_u128] = ACTIONS(2042), - [anon_sym_i128] = ACTIONS(2042), - [anon_sym_isize] = ACTIONS(2042), - [anon_sym_usize] = ACTIONS(2042), - [anon_sym_f32] = ACTIONS(2042), - [anon_sym_f64] = ACTIONS(2042), - [anon_sym_bool] = ACTIONS(2042), - [anon_sym_str] = ACTIONS(2042), - [anon_sym_char] = ACTIONS(2042), - [aux_sym__non_special_token_token1] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_fn] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_impl] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_mod] = ACTIONS(2042), - [anon_sym_pub] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_trait] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_unsafe] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_where] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [sym_mutable_specifier] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_token_tree] = STATE(531), + [sym_token_repetition] = STATE(531), + [sym__literal] = STATE(531), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2229), + [anon_sym_i8] = ACTIONS(2229), + [anon_sym_u16] = ACTIONS(2229), + [anon_sym_i16] = ACTIONS(2229), + [anon_sym_u32] = ACTIONS(2229), + [anon_sym_i32] = ACTIONS(2229), + [anon_sym_u64] = ACTIONS(2229), + [anon_sym_i64] = ACTIONS(2229), + [anon_sym_u128] = ACTIONS(2229), + [anon_sym_i128] = ACTIONS(2229), + [anon_sym_isize] = ACTIONS(2229), + [anon_sym_usize] = ACTIONS(2229), + [anon_sym_f32] = ACTIONS(2229), + [anon_sym_f64] = ACTIONS(2229), + [anon_sym_bool] = ACTIONS(2229), + [anon_sym_str] = ACTIONS(2229), + [anon_sym_char] = ACTIONS(2229), + [aux_sym__non_special_token_token1] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_impl] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_mod] = ACTIONS(2229), + [anon_sym_pub] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_union] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_where] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [sym_mutable_specifier] = ACTIONS(2229), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_crate] = ACTIONS(2229), + [sym_metavariable] = ACTIONS(2233), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [516] = { - [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(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2042), - [anon_sym_i8] = ACTIONS(2042), - [anon_sym_u16] = ACTIONS(2042), - [anon_sym_i16] = ACTIONS(2042), - [anon_sym_u32] = ACTIONS(2042), - [anon_sym_i32] = ACTIONS(2042), - [anon_sym_u64] = ACTIONS(2042), - [anon_sym_i64] = ACTIONS(2042), - [anon_sym_u128] = ACTIONS(2042), - [anon_sym_i128] = ACTIONS(2042), - [anon_sym_isize] = ACTIONS(2042), - [anon_sym_usize] = ACTIONS(2042), - [anon_sym_f32] = ACTIONS(2042), - [anon_sym_f64] = ACTIONS(2042), - [anon_sym_bool] = ACTIONS(2042), - [anon_sym_str] = ACTIONS(2042), - [anon_sym_char] = ACTIONS(2042), - [aux_sym__non_special_token_token1] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_fn] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_impl] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_mod] = ACTIONS(2042), - [anon_sym_pub] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_trait] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_unsafe] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_where] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [sym_mutable_specifier] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2235), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [517] = { - [sym__token_pattern] = STATE(519), - [sym_token_tree_pattern] = STATE(519), - [sym_token_binding_pattern] = STATE(519), - [sym_token_repetition_pattern] = STATE(519), - [sym__literal] = STATE(519), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_RBRACK] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2139), - [anon_sym_i8] = ACTIONS(2139), - [anon_sym_u16] = ACTIONS(2139), - [anon_sym_i16] = ACTIONS(2139), - [anon_sym_u32] = ACTIONS(2139), - [anon_sym_i32] = ACTIONS(2139), - [anon_sym_u64] = ACTIONS(2139), - [anon_sym_i64] = ACTIONS(2139), - [anon_sym_u128] = ACTIONS(2139), - [anon_sym_i128] = ACTIONS(2139), - [anon_sym_isize] = ACTIONS(2139), - [anon_sym_usize] = ACTIONS(2139), - [anon_sym_f32] = ACTIONS(2139), - [anon_sym_f64] = ACTIONS(2139), - [anon_sym_bool] = ACTIONS(2139), - [anon_sym_str] = ACTIONS(2139), - [anon_sym_char] = ACTIONS(2139), - [aux_sym__non_special_token_token1] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_impl] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_loop] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_mod] = ACTIONS(2139), - [anon_sym_pub] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_static] = ACTIONS(2139), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_trait] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_use] = ACTIONS(2139), - [anon_sym_where] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [sym_mutable_specifier] = ACTIONS(2139), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_crate] = ACTIONS(2139), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [518] = { - [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(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_RBRACK] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2042), - [anon_sym_i8] = ACTIONS(2042), - [anon_sym_u16] = ACTIONS(2042), - [anon_sym_i16] = ACTIONS(2042), - [anon_sym_u32] = ACTIONS(2042), - [anon_sym_i32] = ACTIONS(2042), - [anon_sym_u64] = ACTIONS(2042), - [anon_sym_i64] = ACTIONS(2042), - [anon_sym_u128] = ACTIONS(2042), - [anon_sym_i128] = ACTIONS(2042), - [anon_sym_isize] = ACTIONS(2042), - [anon_sym_usize] = ACTIONS(2042), - [anon_sym_f32] = ACTIONS(2042), - [anon_sym_f64] = ACTIONS(2042), - [anon_sym_bool] = ACTIONS(2042), - [anon_sym_str] = ACTIONS(2042), - [anon_sym_char] = ACTIONS(2042), - [aux_sym__non_special_token_token1] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_fn] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_impl] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_mod] = ACTIONS(2042), - [anon_sym_pub] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_trait] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_unsafe] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_where] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [sym_mutable_specifier] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, [519] = { - [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(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_RBRACK] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2042), - [anon_sym_i8] = ACTIONS(2042), - [anon_sym_u16] = ACTIONS(2042), - [anon_sym_i16] = ACTIONS(2042), - [anon_sym_u32] = ACTIONS(2042), - [anon_sym_i32] = ACTIONS(2042), - [anon_sym_u64] = ACTIONS(2042), - [anon_sym_i64] = ACTIONS(2042), - [anon_sym_u128] = ACTIONS(2042), - [anon_sym_i128] = ACTIONS(2042), - [anon_sym_isize] = ACTIONS(2042), - [anon_sym_usize] = ACTIONS(2042), - [anon_sym_f32] = ACTIONS(2042), - [anon_sym_f64] = ACTIONS(2042), - [anon_sym_bool] = ACTIONS(2042), - [anon_sym_str] = ACTIONS(2042), - [anon_sym_char] = ACTIONS(2042), - [aux_sym__non_special_token_token1] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_fn] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_impl] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_mod] = ACTIONS(2042), - [anon_sym_pub] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_trait] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_unsafe] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_where] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [sym_mutable_specifier] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [520] = { - [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(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_pattern_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2042), - [anon_sym_i8] = ACTIONS(2042), - [anon_sym_u16] = ACTIONS(2042), - [anon_sym_i16] = ACTIONS(2042), - [anon_sym_u32] = ACTIONS(2042), - [anon_sym_i32] = ACTIONS(2042), - [anon_sym_u64] = ACTIONS(2042), - [anon_sym_i64] = ACTIONS(2042), - [anon_sym_u128] = ACTIONS(2042), - [anon_sym_i128] = ACTIONS(2042), - [anon_sym_isize] = ACTIONS(2042), - [anon_sym_usize] = ACTIONS(2042), - [anon_sym_f32] = ACTIONS(2042), - [anon_sym_f64] = ACTIONS(2042), - [anon_sym_bool] = ACTIONS(2042), - [anon_sym_str] = ACTIONS(2042), - [anon_sym_char] = ACTIONS(2042), - [aux_sym__non_special_token_token1] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(2042), - [anon_sym_async] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_fn] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_impl] = ACTIONS(2042), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_loop] = ACTIONS(2042), - [anon_sym_match] = ACTIONS(2042), - [anon_sym_mod] = ACTIONS(2042), - [anon_sym_pub] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_trait] = ACTIONS(2042), - [anon_sym_type] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_unsafe] = ACTIONS(2042), - [anon_sym_use] = ACTIONS(2042), - [anon_sym_where] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [sym_mutable_specifier] = ACTIONS(2042), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_crate] = ACTIONS(2042), - [sym_metavariable] = ACTIONS(2060), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2243), + [anon_sym_i8] = ACTIONS(2243), + [anon_sym_u16] = ACTIONS(2243), + [anon_sym_i16] = ACTIONS(2243), + [anon_sym_u32] = ACTIONS(2243), + [anon_sym_i32] = ACTIONS(2243), + [anon_sym_u64] = ACTIONS(2243), + [anon_sym_i64] = ACTIONS(2243), + [anon_sym_u128] = ACTIONS(2243), + [anon_sym_i128] = ACTIONS(2243), + [anon_sym_isize] = ACTIONS(2243), + [anon_sym_usize] = ACTIONS(2243), + [anon_sym_f32] = ACTIONS(2243), + [anon_sym_f64] = ACTIONS(2243), + [anon_sym_bool] = ACTIONS(2243), + [anon_sym_str] = ACTIONS(2243), + [anon_sym_char] = ACTIONS(2243), + [aux_sym__non_special_token_token1] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [anon_sym_fn] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_impl] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_mod] = ACTIONS(2243), + [anon_sym_pub] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_static] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2243), + [anon_sym_trait] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_union] = ACTIONS(2243), + [anon_sym_unsafe] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_where] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [sym_mutable_specifier] = ACTIONS(2243), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_crate] = ACTIONS(2243), + [sym_metavariable] = ACTIONS(2247), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [521] = { - [sym_attribute_item] = STATE(567), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_match_arm] = STATE(521), - [sym_match_pattern] = STATE(2499), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2151), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_enum_variant_list_repeat1] = STATE(567), - [aux_sym_match_block_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2150), - [anon_sym_i8] = ACTIONS(2150), - [anon_sym_u16] = ACTIONS(2150), - [anon_sym_i16] = ACTIONS(2150), - [anon_sym_u32] = ACTIONS(2150), - [anon_sym_i32] = ACTIONS(2150), - [anon_sym_u64] = ACTIONS(2150), - [anon_sym_i64] = ACTIONS(2150), - [anon_sym_u128] = ACTIONS(2150), - [anon_sym_i128] = ACTIONS(2150), - [anon_sym_isize] = ACTIONS(2150), - [anon_sym_usize] = ACTIONS(2150), - [anon_sym_f32] = ACTIONS(2150), - [anon_sym_f64] = ACTIONS(2150), - [anon_sym_bool] = ACTIONS(2150), - [anon_sym_str] = ACTIONS(2150), - [anon_sym_char] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_COLON_COLON] = ACTIONS(2168), - [anon_sym__] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2174), - [sym_mutable_specifier] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2183), - [sym_integer_literal] = ACTIONS(2186), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_metavariable] = ACTIONS(2198), - [sym_raw_string_literal] = ACTIONS(2186), - [sym_float_literal] = ACTIONS(2186), + [sym_token_tree] = STATE(543), + [sym_token_repetition] = STATE(543), + [sym__literal] = STATE(543), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(543), + [sym_identifier] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2249), + [anon_sym_i8] = ACTIONS(2249), + [anon_sym_u16] = ACTIONS(2249), + [anon_sym_i16] = ACTIONS(2249), + [anon_sym_u32] = ACTIONS(2249), + [anon_sym_i32] = ACTIONS(2249), + [anon_sym_u64] = ACTIONS(2249), + [anon_sym_i64] = ACTIONS(2249), + [anon_sym_u128] = ACTIONS(2249), + [anon_sym_i128] = ACTIONS(2249), + [anon_sym_isize] = ACTIONS(2249), + [anon_sym_usize] = ACTIONS(2249), + [anon_sym_f32] = ACTIONS(2249), + [anon_sym_f64] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_str] = ACTIONS(2249), + [anon_sym_char] = ACTIONS(2249), + [aux_sym__non_special_token_token1] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_impl] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_mod] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_where] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [sym_mutable_specifier] = ACTIONS(2249), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_metavariable] = ACTIONS(2251), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [522] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = 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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_token_tree] = STATE(517), + [sym_token_repetition] = STATE(517), + [sym__literal] = STATE(517), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(517), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [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(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [523] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2219), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_token_tree] = STATE(541), + [sym_token_repetition] = STATE(541), + [sym__literal] = STATE(541), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(541), + [sym_identifier] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2257), + [anon_sym_i8] = ACTIONS(2257), + [anon_sym_u16] = ACTIONS(2257), + [anon_sym_i16] = ACTIONS(2257), + [anon_sym_u32] = ACTIONS(2257), + [anon_sym_i32] = ACTIONS(2257), + [anon_sym_u64] = ACTIONS(2257), + [anon_sym_i64] = ACTIONS(2257), + [anon_sym_u128] = ACTIONS(2257), + [anon_sym_i128] = ACTIONS(2257), + [anon_sym_isize] = ACTIONS(2257), + [anon_sym_usize] = ACTIONS(2257), + [anon_sym_f32] = ACTIONS(2257), + [anon_sym_f64] = ACTIONS(2257), + [anon_sym_bool] = ACTIONS(2257), + [anon_sym_str] = ACTIONS(2257), + [anon_sym_char] = ACTIONS(2257), + [aux_sym__non_special_token_token1] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_mod] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_where] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [sym_mutable_specifier] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_crate] = ACTIONS(2257), + [sym_metavariable] = ACTIONS(2259), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [524] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2221), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, [525] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_LBRACE] = 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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, [526] = { - [sym_delim_token_tree] = STATE(556), - [sym__delim_tokens] = STATE(556), - [sym__non_delim_token] = STATE(556), - [sym__literal] = STATE(556), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(556), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2225), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, [527] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_LBRACE] = 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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, [528] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2229), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [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(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(553), + [sym_identifier] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [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(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_crate] = ACTIONS(2263), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, [529] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2229), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_token_tree] = STATE(519), + [sym_token_repetition] = STATE(519), + [sym__literal] = STATE(519), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [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(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_metavariable] = ACTIONS(2271), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [530] = { - [sym_delim_token_tree] = STATE(524), - [sym__delim_tokens] = STATE(524), - [sym__non_delim_token] = STATE(524), - [sym__literal] = STATE(524), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(524), - [sym_identifier] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_u8] = ACTIONS(2231), - [anon_sym_i8] = ACTIONS(2231), - [anon_sym_u16] = ACTIONS(2231), - [anon_sym_i16] = ACTIONS(2231), - [anon_sym_u32] = ACTIONS(2231), - [anon_sym_i32] = ACTIONS(2231), - [anon_sym_u64] = ACTIONS(2231), - [anon_sym_i64] = ACTIONS(2231), - [anon_sym_u128] = ACTIONS(2231), - [anon_sym_i128] = ACTIONS(2231), - [anon_sym_isize] = ACTIONS(2231), - [anon_sym_usize] = ACTIONS(2231), - [anon_sym_f32] = ACTIONS(2231), - [anon_sym_f64] = ACTIONS(2231), - [anon_sym_bool] = ACTIONS(2231), - [anon_sym_str] = ACTIONS(2231), - [anon_sym_char] = ACTIONS(2231), - [aux_sym__non_special_token_token1] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2231), - [anon_sym_as] = ACTIONS(2231), - [anon_sym_async] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2231), - [anon_sym_break] = ACTIONS(2231), - [anon_sym_const] = ACTIONS(2231), - [anon_sym_continue] = ACTIONS(2231), - [anon_sym_default] = ACTIONS(2231), - [anon_sym_enum] = ACTIONS(2231), - [anon_sym_fn] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2231), - [anon_sym_impl] = ACTIONS(2231), - [anon_sym_let] = ACTIONS(2231), - [anon_sym_loop] = ACTIONS(2231), - [anon_sym_match] = ACTIONS(2231), - [anon_sym_mod] = ACTIONS(2231), - [anon_sym_pub] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2231), - [anon_sym_static] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2231), - [anon_sym_trait] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2231), - [anon_sym_union] = ACTIONS(2231), - [anon_sym_unsafe] = ACTIONS(2231), - [anon_sym_use] = ACTIONS(2231), - [anon_sym_where] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2231), - [sym_mutable_specifier] = ACTIONS(2231), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2231), - [sym_super] = ACTIONS(2231), - [sym_crate] = ACTIONS(2231), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, [531] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2237), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, [532] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_RBRACK] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, [533] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), - [sym_block_comment] = ACTIONS(3), - }, - [534] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), - [sym_block_comment] = ACTIONS(3), - }, - [535] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_RBRACK] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), - [sym_block_comment] = ACTIONS(3), - }, - [536] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), - [sym_block_comment] = ACTIONS(3), - }, - [537] = { - [sym_token_tree] = STATE(563), - [sym_token_repetition] = STATE(563), - [sym__literal] = STATE(563), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(563), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), - [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(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_crate] = ACTIONS(2255), - [sym_metavariable] = ACTIONS(2259), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), - [sym_block_comment] = ACTIONS(3), - }, - [538] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_u8] = ACTIONS(2261), - [anon_sym_i8] = ACTIONS(2261), - [anon_sym_u16] = ACTIONS(2261), - [anon_sym_i16] = ACTIONS(2261), - [anon_sym_u32] = ACTIONS(2261), - [anon_sym_i32] = ACTIONS(2261), - [anon_sym_u64] = ACTIONS(2261), - [anon_sym_i64] = ACTIONS(2261), - [anon_sym_u128] = ACTIONS(2261), - [anon_sym_i128] = ACTIONS(2261), - [anon_sym_isize] = ACTIONS(2261), - [anon_sym_usize] = ACTIONS(2261), - [anon_sym_f32] = ACTIONS(2261), - [anon_sym_f64] = ACTIONS(2261), - [anon_sym_bool] = ACTIONS(2261), - [anon_sym_str] = ACTIONS(2261), - [anon_sym_char] = ACTIONS(2261), - [aux_sym__non_special_token_token1] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_impl] = ACTIONS(2261), - [anon_sym_let] = ACTIONS(2261), - [anon_sym_loop] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_mod] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_where] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [sym_mutable_specifier] = ACTIONS(2261), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2261), - [sym_super] = ACTIONS(2261), - [sym_crate] = ACTIONS(2261), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [539] = { - [sym_token_tree] = STATE(532), - [sym_token_repetition] = STATE(532), - [sym__literal] = STATE(532), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(532), - [sym_identifier] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_RBRACK] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2267), - [anon_sym_i8] = ACTIONS(2267), - [anon_sym_u16] = ACTIONS(2267), - [anon_sym_i16] = ACTIONS(2267), - [anon_sym_u32] = ACTIONS(2267), - [anon_sym_i32] = ACTIONS(2267), - [anon_sym_u64] = ACTIONS(2267), - [anon_sym_i64] = ACTIONS(2267), - [anon_sym_u128] = ACTIONS(2267), - [anon_sym_i128] = ACTIONS(2267), - [anon_sym_isize] = ACTIONS(2267), - [anon_sym_usize] = ACTIONS(2267), - [anon_sym_f32] = ACTIONS(2267), - [anon_sym_f64] = ACTIONS(2267), - [anon_sym_bool] = ACTIONS(2267), - [anon_sym_str] = ACTIONS(2267), - [anon_sym_char] = ACTIONS(2267), - [aux_sym__non_special_token_token1] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_impl] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_mod] = ACTIONS(2267), - [anon_sym_pub] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_union] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [sym_mutable_specifier] = ACTIONS(2267), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_crate] = ACTIONS(2267), - [sym_metavariable] = ACTIONS(2271), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), - [sym_block_comment] = ACTIONS(3), - }, - [540] = { - [sym_token_tree] = STATE(534), - [sym_token_repetition] = STATE(534), - [sym__literal] = STATE(534), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(534), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), - [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(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2273), - [sym_super] = ACTIONS(2273), - [sym_crate] = ACTIONS(2273), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), - [sym_block_comment] = ACTIONS(3), - }, - [541] = { - [sym_token_tree] = STATE(536), - [sym_token_repetition] = STATE(536), - [sym__literal] = STATE(536), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(536), + [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(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(554), [sym_identifier] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2279), [anon_sym_u8] = ACTIONS(2277), [anon_sym_i8] = ACTIONS(2277), [anon_sym_u16] = ACTIONS(2277), @@ -67959,34 +65803,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2277), [anon_sym_while] = ACTIONS(2277), [sym_mutable_specifier] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2277), [sym_super] = ACTIONS(2277), [sym_crate] = ACTIONS(2277), - [sym_metavariable] = ACTIONS(2279), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [542] = { - [sym_delim_token_tree] = STATE(544), - [sym__delim_tokens] = STATE(544), - [sym__non_delim_token] = STATE(544), - [sym__literal] = STATE(544), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(544), + [534] = { + [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(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(532), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_DOLLAR] = ACTIONS(2285), [anon_sym_u8] = ACTIONS(2281), [anon_sym_i8] = ACTIONS(2281), [anon_sym_u16] = ACTIONS(2281), @@ -68034,181 +65877,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2281), [anon_sym_while] = ACTIONS(2281), [sym_mutable_specifier] = ACTIONS(2281), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2281), [sym_super] = ACTIONS(2281), [sym_crate] = ACTIONS(2281), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [543] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(546), - [sym_identifier] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_u8] = ACTIONS(2285), - [anon_sym_i8] = ACTIONS(2285), - [anon_sym_u16] = ACTIONS(2285), - [anon_sym_i16] = ACTIONS(2285), - [anon_sym_u32] = ACTIONS(2285), - [anon_sym_i32] = ACTIONS(2285), - [anon_sym_u64] = ACTIONS(2285), - [anon_sym_i64] = ACTIONS(2285), - [anon_sym_u128] = ACTIONS(2285), - [anon_sym_i128] = ACTIONS(2285), - [anon_sym_isize] = ACTIONS(2285), - [anon_sym_usize] = ACTIONS(2285), - [anon_sym_f32] = ACTIONS(2285), - [anon_sym_f64] = ACTIONS(2285), - [anon_sym_bool] = ACTIONS(2285), - [anon_sym_str] = ACTIONS(2285), - [anon_sym_char] = ACTIONS(2285), - [aux_sym__non_special_token_token1] = ACTIONS(2285), - [anon_sym_SQUOTE] = ACTIONS(2285), - [anon_sym_as] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_fn] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_impl] = ACTIONS(2285), - [anon_sym_let] = ACTIONS(2285), - [anon_sym_loop] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_mod] = ACTIONS(2285), - [anon_sym_pub] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_trait] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_unsafe] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_where] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [sym_mutable_specifier] = ACTIONS(2285), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_crate] = ACTIONS(2285), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [535] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [544] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2205), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [536] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [545] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(527), + [537] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), + [sym_block_comment] = ACTIONS(3), + }, + [538] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), + [sym_block_comment] = ACTIONS(3), + }, + [539] = { + [sym_delim_token_tree] = STATE(518), + [sym__delim_tokens] = STATE(518), + [sym__non_delim_token] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(518), [sym_identifier] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2291), [anon_sym_u8] = ACTIONS(2289), [anon_sym_i8] = ACTIONS(2289), [anon_sym_u16] = ACTIONS(2289), @@ -68256,328 +66247,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2289), [anon_sym_while] = ACTIONS(2289), [sym_mutable_specifier] = ACTIONS(2289), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2289), [sym_super] = ACTIONS(2289), [sym_crate] = ACTIONS(2289), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [546] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2205), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [547] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2295), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [548] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2295), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [540] = { + [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(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(537), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2219), + [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(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [549] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2295), - [anon_sym_LBRACE] = 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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [541] = { + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), [sym_block_comment] = ACTIONS(3), }, - [550] = { - [sym_delim_token_tree] = STATE(557), - [sym__delim_tokens] = STATE(557), - [sym__non_delim_token] = STATE(557), - [sym__literal] = STATE(557), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(557), + [542] = { + [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(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(526), [sym_identifier] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2299), [anon_sym_DOLLAR] = ACTIONS(2301), [anon_sym_u8] = ACTIONS(2297), [anon_sym_i8] = ACTIONS(2297), @@ -68626,32 +66469,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2297), [anon_sym_while] = ACTIONS(2297), [sym_mutable_specifier] = ACTIONS(2297), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2297), [sym_super] = ACTIONS(2297), [sym_crate] = ACTIONS(2297), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [551] = { - [sym_delim_token_tree] = STATE(523), - [sym__delim_tokens] = STATE(523), - [sym__non_delim_token] = STATE(523), - [sym__literal] = STATE(523), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(523), + [543] = { + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + [sym_block_comment] = ACTIONS(3), + }, + [544] = { + [sym_delim_token_tree] = STATE(550), + [sym__delim_tokens] = STATE(550), + [sym__non_delim_token] = STATE(550), + [sym__literal] = STATE(550), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(550), [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2265), [anon_sym_DOLLAR] = ACTIONS(2305), [anon_sym_u8] = ACTIONS(2303), [anon_sym_i8] = ACTIONS(2303), @@ -68700,32 +66617,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2303), [anon_sym_while] = ACTIONS(2303), [sym_mutable_specifier] = ACTIONS(2303), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2303), [sym_super] = ACTIONS(2303), [sym_crate] = ACTIONS(2303), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [552] = { - [sym_token_tree] = STATE(535), - [sym_token_repetition] = STATE(535), - [sym__literal] = STATE(535), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(535), + [545] = { + [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(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(525), [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_RBRACK] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2309), [anon_sym_u8] = ACTIONS(2307), [anon_sym_i8] = ACTIONS(2307), [anon_sym_u16] = ACTIONS(2307), @@ -68773,181 +66691,180 @@ 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(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2307), [sym_super] = ACTIONS(2307), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(2311), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [553] = { - [sym_token_tree] = STATE(533), - [sym_token_repetition] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(533), - [sym_identifier] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2313), - [anon_sym_i8] = ACTIONS(2313), - [anon_sym_u16] = ACTIONS(2313), - [anon_sym_i16] = ACTIONS(2313), - [anon_sym_u32] = ACTIONS(2313), - [anon_sym_i32] = ACTIONS(2313), - [anon_sym_u64] = ACTIONS(2313), - [anon_sym_i64] = ACTIONS(2313), - [anon_sym_u128] = ACTIONS(2313), - [anon_sym_i128] = ACTIONS(2313), - [anon_sym_isize] = ACTIONS(2313), - [anon_sym_usize] = ACTIONS(2313), - [anon_sym_f32] = ACTIONS(2313), - [anon_sym_f64] = ACTIONS(2313), - [anon_sym_bool] = ACTIONS(2313), - [anon_sym_str] = ACTIONS(2313), - [anon_sym_char] = ACTIONS(2313), - [aux_sym__non_special_token_token1] = ACTIONS(2313), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_fn] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_mod] = ACTIONS(2313), - [anon_sym_pub] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_union] = ACTIONS(2313), - [anon_sym_unsafe] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_where] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [sym_mutable_specifier] = ACTIONS(2313), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2313), - [sym_super] = ACTIONS(2313), - [sym_crate] = ACTIONS(2313), - [sym_metavariable] = ACTIONS(2315), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [546] = { + [sym_delim_token_tree] = STATE(551), + [sym__delim_tokens] = STATE(551), + [sym__non_delim_token] = STATE(551), + [sym__literal] = STATE(551), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(551), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(2311), + [anon_sym_i8] = ACTIONS(2311), + [anon_sym_u16] = ACTIONS(2311), + [anon_sym_i16] = ACTIONS(2311), + [anon_sym_u32] = ACTIONS(2311), + [anon_sym_i32] = ACTIONS(2311), + [anon_sym_u64] = ACTIONS(2311), + [anon_sym_i64] = ACTIONS(2311), + [anon_sym_u128] = ACTIONS(2311), + [anon_sym_i128] = ACTIONS(2311), + [anon_sym_isize] = ACTIONS(2311), + [anon_sym_usize] = ACTIONS(2311), + [anon_sym_f32] = ACTIONS(2311), + [anon_sym_f64] = ACTIONS(2311), + [anon_sym_bool] = ACTIONS(2311), + [anon_sym_str] = ACTIONS(2311), + [anon_sym_char] = ACTIONS(2311), + [aux_sym__non_special_token_token1] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_default] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_impl] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_mod] = ACTIONS(2311), + [anon_sym_pub] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2311), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_trait] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_where] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [sym_mutable_specifier] = ACTIONS(2311), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2311), + [sym_super] = ACTIONS(2311), + [sym_crate] = ACTIONS(2311), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [554] = { - [sym_token_tree] = STATE(561), - [sym_token_repetition] = STATE(561), - [sym__literal] = STATE(561), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(561), - [sym_identifier] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2317), - [anon_sym_i8] = ACTIONS(2317), - [anon_sym_u16] = ACTIONS(2317), - [anon_sym_i16] = ACTIONS(2317), - [anon_sym_u32] = ACTIONS(2317), - [anon_sym_i32] = ACTIONS(2317), - [anon_sym_u64] = ACTIONS(2317), - [anon_sym_i64] = ACTIONS(2317), - [anon_sym_u128] = ACTIONS(2317), - [anon_sym_i128] = ACTIONS(2317), - [anon_sym_isize] = ACTIONS(2317), - [anon_sym_usize] = ACTIONS(2317), - [anon_sym_f32] = ACTIONS(2317), - [anon_sym_f64] = ACTIONS(2317), - [anon_sym_bool] = ACTIONS(2317), - [anon_sym_str] = ACTIONS(2317), - [anon_sym_char] = ACTIONS(2317), - [aux_sym__non_special_token_token1] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_as] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_fn] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_impl] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2317), - [anon_sym_pub] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_struct] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_union] = ACTIONS(2317), - [anon_sym_unsafe] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_where] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [sym_mutable_specifier] = ACTIONS(2317), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2317), - [sym_super] = ACTIONS(2317), - [sym_crate] = ACTIONS(2317), - [sym_metavariable] = ACTIONS(2319), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [547] = { + [sym_delim_token_tree] = STATE(538), + [sym__delim_tokens] = STATE(538), + [sym__non_delim_token] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2319), + [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(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2315), + [sym_super] = ACTIONS(2315), + [sym_crate] = ACTIONS(2315), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [555] = { - [sym_delim_token_tree] = STATE(558), - [sym__delim_tokens] = STATE(558), - [sym__non_delim_token] = STATE(558), - [sym__literal] = STATE(558), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(558), + [548] = { + [sym_delim_token_tree] = STATE(530), + [sym__delim_tokens] = STATE(530), + [sym__non_delim_token] = STATE(530), + [sym__literal] = STATE(530), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(530), [sym_identifier] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2219), [anon_sym_DOLLAR] = ACTIONS(2323), [anon_sym_u8] = ACTIONS(2321), [anon_sym_i8] = ACTIONS(2321), @@ -68996,255 +66913,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2321), [anon_sym_while] = ACTIONS(2321), [sym_mutable_specifier] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2321), [sym_super] = ACTIONS(2321), [sym_crate] = ACTIONS(2321), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [556] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2221), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [557] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_LBRACE] = 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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [558] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2219), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [559] = { - [sym_delim_token_tree] = STATE(547), - [sym__delim_tokens] = STATE(547), - [sym__non_delim_token] = STATE(547), - [sym__literal] = STATE(547), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(547), + [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(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(536), [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2327), [anon_sym_u8] = ACTIONS(2325), [anon_sym_i8] = ACTIONS(2325), [anon_sym_u16] = ACTIONS(2325), @@ -69292,32 +66987,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2325), [anon_sym_while] = ACTIONS(2325), [sym_mutable_specifier] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2325), [sym_super] = ACTIONS(2325), [sym_crate] = ACTIONS(2325), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [560] = { - [sym_delim_token_tree] = STATE(548), - [sym__delim_tokens] = STATE(548), - [sym__non_delim_token] = STATE(548), - [sym__literal] = STATE(548), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(548), + [550] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2329), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), + [sym_block_comment] = ACTIONS(3), + }, + [551] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), + [sym_block_comment] = ACTIONS(3), + }, + [552] = { + [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(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(527), [sym_identifier] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), [anon_sym_DOLLAR] = ACTIONS(2333), [anon_sym_u8] = ACTIONS(2331), [anon_sym_i8] = ACTIONS(2331), @@ -69366,106 +67209,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2331), [anon_sym_while] = ACTIONS(2331), [sym_mutable_specifier] = ACTIONS(2331), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2331), [sym_super] = ACTIONS(2331), [sym_crate] = ACTIONS(2331), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [561] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), + [553] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [562] = { - [sym_delim_token_tree] = STATE(549), - [sym__delim_tokens] = STATE(549), - [sym__non_delim_token] = STATE(549), - [sym__literal] = STATE(549), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(549), + [554] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), + [sym_block_comment] = ACTIONS(3), + }, + [555] = { + [sym_delim_token_tree] = STATE(524), + [sym__delim_tokens] = STATE(524), + [sym__non_delim_token] = STATE(524), + [sym__literal] = STATE(524), + [sym_string_literal] = STATE(636), + [sym_boolean_literal] = STATE(636), + [aux_sym_delim_token_tree_repeat1] = STATE(524), [sym_identifier] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), [anon_sym_DOLLAR] = ACTIONS(2337), [anon_sym_u8] = ACTIONS(2335), [anon_sym_i8] = ACTIONS(2335), @@ -69514,372 +67431,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2335), [anon_sym_while] = ACTIONS(2335), [sym_mutable_specifier] = ACTIONS(2335), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2335), [sym_super] = ACTIONS(2335), [sym_crate] = ACTIONS(2335), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [563] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(2054), - [aux_sym_string_literal_token1] = ACTIONS(2056), - [sym_char_literal] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2058), - [anon_sym_false] = ACTIONS(2058), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2054), - [sym_float_literal] = ACTIONS(2054), - [sym_block_comment] = ACTIONS(3), - }, - [564] = { - [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(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(529), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2343), - [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(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2341), - [sym_super] = ACTIONS(2341), - [sym_crate] = ACTIONS(2341), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [565] = { - [sym_delim_token_tree] = STATE(528), - [sym__delim_tokens] = STATE(528), - [sym__non_delim_token] = STATE(528), - [sym__literal] = STATE(528), - [sym_string_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [aux_sym_delim_token_tree_repeat1] = STATE(528), - [sym_identifier] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_u8] = ACTIONS(2345), - [anon_sym_i8] = ACTIONS(2345), - [anon_sym_u16] = ACTIONS(2345), - [anon_sym_i16] = ACTIONS(2345), - [anon_sym_u32] = ACTIONS(2345), - [anon_sym_i32] = ACTIONS(2345), - [anon_sym_u64] = ACTIONS(2345), - [anon_sym_i64] = ACTIONS(2345), - [anon_sym_u128] = ACTIONS(2345), - [anon_sym_i128] = ACTIONS(2345), - [anon_sym_isize] = ACTIONS(2345), - [anon_sym_usize] = ACTIONS(2345), - [anon_sym_f32] = ACTIONS(2345), - [anon_sym_f64] = ACTIONS(2345), - [anon_sym_bool] = ACTIONS(2345), - [anon_sym_str] = ACTIONS(2345), - [anon_sym_char] = ACTIONS(2345), - [aux_sym__non_special_token_token1] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_fn] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_impl] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_mod] = ACTIONS(2345), - [anon_sym_pub] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_unsafe] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_where] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [sym_mutable_specifier] = ACTIONS(2345), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2345), - [sym_super] = ACTIONS(2345), - [sym_crate] = ACTIONS(2345), - [sym_raw_string_literal] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), - [sym_block_comment] = ACTIONS(3), - }, - [566] = { - [sym_attribute_item] = STATE(648), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_match_pattern] = STATE(2467), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2151), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_enum_variant_list_repeat1] = STATE(648), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), [sym_block_comment] = ACTIONS(3), }, - [567] = { - [sym_attribute_item] = STATE(648), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_match_pattern] = STATE(2565), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2151), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [aux_sym_enum_variant_list_repeat1] = STATE(648), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [556] = { + [sym_attribute_item] = STATE(642), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_match_pattern] = STATE(2589), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1908), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_enum_variant_list_repeat1] = STATE(642), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -69887,717 +67509,719 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [568] = { - [sym_attribute_item] = STATE(580), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(687), - [sym__type] = STATE(1846), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(580), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(894), + [557] = { + [sym_attribute_item] = STATE(569), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(681), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(569), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(2359), + [anon_sym_COMMA] = ACTIONS(2349), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [569] = { - [sym_attribute_item] = STATE(579), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(763), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(579), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(894), + [558] = { + [sym_attribute_item] = STATE(642), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_match_pattern] = STATE(2552), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1908), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [aux_sym_enum_variant_list_repeat1] = STATE(642), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), + [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(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [559] = { + [sym_attribute_item] = STATE(567), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(725), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [570] = { - [sym_attribute_item] = STATE(579), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(763), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(579), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(894), + [560] = { + [sym_attribute_item] = STATE(567), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(725), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [571] = { - [sym_attribute_item] = STATE(579), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(763), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(579), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2367), - [anon_sym_LBRACK] = ACTIONS(894), + [561] = { + [sym_attribute_item] = STATE(567), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(725), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [572] = { - [sym_attribute_item] = STATE(579), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(763), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(579), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(894), + [562] = { + [sym_attribute_item] = STATE(567), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(725), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [573] = { - [sym_attribute_item] = STATE(579), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(763), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(579), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(894), + [563] = { + [sym_attribute_item] = STATE(567), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(725), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [574] = { - [sym_attribute_item] = STATE(579), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(763), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(579), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(894), + [564] = { + [sym_attribute_item] = STATE(567), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(725), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), - [sym_block_comment] = ACTIONS(3), - }, - [575] = { - [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_COLON] = ACTIONS(2379), - [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(1004), - [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_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [576] = { - [sym_parameter] = STATE(2120), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1881), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [565] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(808), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2383), [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(2385), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [577] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1902), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(812), + [566] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1837), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(2369), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70605,283 +68229,354 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [578] = { - [sym_attribute_item] = STATE(579), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(763), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(579), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [567] = { + [sym_attribute_item] = STATE(1170), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(675), + [sym__type] = STATE(1957), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(1170), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [579] = { - [sym_attribute_item] = STATE(1178), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(712), - [sym__type] = STATE(1937), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(1178), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [568] = { + [sym_parameter] = STATE(1906), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2371), + [anon_sym_DOT_DOT] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(2373), + [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(2375), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [569] = { + [sym_attribute_item] = STATE(1170), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(732), + [sym__type] = STATE(1862), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(1170), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [580] = { - [sym_attribute_item] = STATE(1178), - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym_visibility_modifier] = STATE(761), - [sym__type] = STATE(1847), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(1178), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [570] = { + [sym_attribute_item] = STATE(567), + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym_visibility_modifier] = STATE(725), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_enum_variant_list_repeat1] = STATE(567), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2347), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [581] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1904), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(834), + [571] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1814), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(822), + [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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(830), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70889,70 +68584,350 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [582] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1872), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(2391), + [572] = { + [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_COLON] = ACTIONS(2381), + [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(942), + [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), + }, + [573] = { + [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(942), + [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), + }, + [574] = { + [sym_function_modifiers] = STATE(2435), + [sym_const_parameter] = STATE(2110), + [sym_constrained_type_parameter] = STATE(1832), + [sym_optional_type_parameter] = STATE(2110), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1913), + [sym_bracketed_type] = STATE(2388), + [sym_qualified_type] = STATE(2365), + [sym_lifetime] = STATE(1730), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(888), + [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(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(2391), + [sym_block_comment] = ACTIONS(3), + }, + [575] = { + [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(942), + [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), + }, + [576] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1882), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2397), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -70960,69 +68935,69 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [583] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1893), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [577] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1882), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -71030,225 +69005,155 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [584] = { - [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(1004), - [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), - }, - [585] = { - [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(1004), - [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), + [578] = { + [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(942), + [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), }, - [586] = { - [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), + [579] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1882), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), [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(1004), - [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), + [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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), + [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(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [587] = { + [580] = { [sym_identifier] = ACTIONS(2407), [anon_sym_LPAREN] = ACTIONS(2409), [anon_sym_RPAREN] = ACTIONS(2409), @@ -71309,7 +69214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2409), [anon_sym_true] = ACTIONS(2407), [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2407), [sym_super] = ACTIONS(2407), [sym_crate] = ACTIONS(2407), @@ -71318,7 +69223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2409), [sym_block_comment] = ACTIONS(3), }, - [588] = { + [581] = { [sym_identifier] = ACTIONS(2411), [anon_sym_LPAREN] = ACTIONS(2413), [anon_sym_RPAREN] = ACTIONS(2413), @@ -71379,7 +69284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2413), [anon_sym_true] = ACTIONS(2411), [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2411), [sym_super] = ACTIONS(2411), [sym_crate] = ACTIONS(2411), @@ -71388,7 +69293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2413), [sym_block_comment] = ACTIONS(3), }, - [589] = { + [582] = { [sym_identifier] = ACTIONS(2415), [anon_sym_LPAREN] = ACTIONS(2417), [anon_sym_RPAREN] = ACTIONS(2417), @@ -71449,156 +69354,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2417), [anon_sym_true] = ACTIONS(2415), [anon_sym_false] = ACTIONS(2415), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(942), [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), - }, - [590] = { - [sym_function_modifiers] = STATE(2369), - [sym_const_parameter] = STATE(2147), - [sym_constrained_type_parameter] = STATE(1817), - [sym_optional_type_parameter] = STATE(2147), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2152), - [sym_bracketed_type] = STATE(2416), - [sym_qualified_type] = STATE(2471), - [sym_lifetime] = STATE(1687), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), - [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(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(2423), - [sym_block_comment] = ACTIONS(3), - }, - [591] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1893), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(2425), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [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), }, - [592] = { + [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(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(942), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym_raw_string_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), + [sym_block_comment] = ACTIONS(3), + }, + [584] = { + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_RPAREN] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_RBRACK] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(2423), + [anon_sym_i8] = ACTIONS(2423), + [anon_sym_u16] = ACTIONS(2423), + [anon_sym_i16] = ACTIONS(2423), + [anon_sym_u32] = ACTIONS(2423), + [anon_sym_i32] = ACTIONS(2423), + [anon_sym_u64] = ACTIONS(2423), + [anon_sym_i64] = ACTIONS(2423), + [anon_sym_u128] = ACTIONS(2423), + [anon_sym_i128] = ACTIONS(2423), + [anon_sym_isize] = ACTIONS(2423), + [anon_sym_usize] = ACTIONS(2423), + [anon_sym_f32] = ACTIONS(2423), + [anon_sym_f64] = ACTIONS(2423), + [anon_sym_bool] = ACTIONS(2423), + [anon_sym_str] = ACTIONS(2423), + [anon_sym_char] = ACTIONS(2423), + [aux_sym__non_special_token_token1] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_async] = ACTIONS(2423), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_default] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2423), + [anon_sym_fn] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_impl] = ACTIONS(2423), + [anon_sym_let] = ACTIONS(2423), + [anon_sym_loop] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_mod] = ACTIONS(2423), + [anon_sym_pub] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_static] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_trait] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), + [anon_sym_unsafe] = ACTIONS(2423), + [anon_sym_use] = ACTIONS(2423), + [anon_sym_where] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [sym_mutable_specifier] = ACTIONS(2423), + [sym_integer_literal] = ACTIONS(2425), + [aux_sym_string_literal_token1] = ACTIONS(2425), + [sym_char_literal] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2423), + [sym_super] = ACTIONS(2423), + [sym_crate] = ACTIONS(2423), + [sym_metavariable] = ACTIONS(2425), + [sym_raw_string_literal] = ACTIONS(2425), + [sym_float_literal] = ACTIONS(2425), + [sym_block_comment] = ACTIONS(3), + }, + [585] = { [sym_identifier] = ACTIONS(2427), [anon_sym_LPAREN] = ACTIONS(2429), [anon_sym_RPAREN] = ACTIONS(2429), @@ -71659,7 +69564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2429), [anon_sym_true] = ACTIONS(2427), [anon_sym_false] = ACTIONS(2427), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2427), [sym_super] = ACTIONS(2427), [sym_crate] = ACTIONS(2427), @@ -71668,481 +69573,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2429), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1893), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [586] = { + [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(942), + [sym_self] = ACTIONS(2431), + [sym_super] = ACTIONS(2431), + [sym_crate] = ACTIONS(2431), + [sym_metavariable] = ACTIONS(2433), + [sym_raw_string_literal] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2433), [sym_block_comment] = ACTIONS(3), }, - [594] = { - [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(1004), - [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), + [587] = { + [sym_identifier] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(2435), + [anon_sym_i8] = ACTIONS(2435), + [anon_sym_u16] = ACTIONS(2435), + [anon_sym_i16] = ACTIONS(2435), + [anon_sym_u32] = ACTIONS(2435), + [anon_sym_i32] = ACTIONS(2435), + [anon_sym_u64] = ACTIONS(2435), + [anon_sym_i64] = ACTIONS(2435), + [anon_sym_u128] = ACTIONS(2435), + [anon_sym_i128] = ACTIONS(2435), + [anon_sym_isize] = ACTIONS(2435), + [anon_sym_usize] = ACTIONS(2435), + [anon_sym_f32] = ACTIONS(2435), + [anon_sym_f64] = ACTIONS(2435), + [anon_sym_bool] = ACTIONS(2435), + [anon_sym_str] = ACTIONS(2435), + [anon_sym_char] = ACTIONS(2435), + [aux_sym__non_special_token_token1] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_const] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(2435), + [anon_sym_enum] = ACTIONS(2435), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_impl] = ACTIONS(2435), + [anon_sym_let] = ACTIONS(2435), + [anon_sym_loop] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_mod] = ACTIONS(2435), + [anon_sym_pub] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_static] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_trait] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2435), + [anon_sym_union] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_use] = ACTIONS(2435), + [anon_sym_where] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2435), + [sym_mutable_specifier] = ACTIONS(2435), + [sym_integer_literal] = ACTIONS(2437), + [aux_sym_string_literal_token1] = ACTIONS(2437), + [sym_char_literal] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2435), + [anon_sym_false] = ACTIONS(2435), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2435), + [sym_super] = ACTIONS(2435), + [sym_crate] = ACTIONS(2435), + [sym_metavariable] = ACTIONS(2437), + [sym_raw_string_literal] = ACTIONS(2437), + [sym_float_literal] = ACTIONS(2437), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [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(1004), - [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), + [588] = { + [sym_identifier] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_RBRACK] = ACTIONS(2441), + [anon_sym_DOLLAR] = ACTIONS(2439), + [anon_sym_u8] = ACTIONS(2439), + [anon_sym_i8] = ACTIONS(2439), + [anon_sym_u16] = ACTIONS(2439), + [anon_sym_i16] = ACTIONS(2439), + [anon_sym_u32] = ACTIONS(2439), + [anon_sym_i32] = ACTIONS(2439), + [anon_sym_u64] = ACTIONS(2439), + [anon_sym_i64] = ACTIONS(2439), + [anon_sym_u128] = ACTIONS(2439), + [anon_sym_i128] = ACTIONS(2439), + [anon_sym_isize] = ACTIONS(2439), + [anon_sym_usize] = ACTIONS(2439), + [anon_sym_f32] = ACTIONS(2439), + [anon_sym_f64] = ACTIONS(2439), + [anon_sym_bool] = ACTIONS(2439), + [anon_sym_str] = ACTIONS(2439), + [anon_sym_char] = ACTIONS(2439), + [aux_sym__non_special_token_token1] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_as] = ACTIONS(2439), + [anon_sym_async] = ACTIONS(2439), + [anon_sym_await] = ACTIONS(2439), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_const] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2439), + [anon_sym_default] = ACTIONS(2439), + [anon_sym_enum] = ACTIONS(2439), + [anon_sym_fn] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_impl] = ACTIONS(2439), + [anon_sym_let] = ACTIONS(2439), + [anon_sym_loop] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_mod] = ACTIONS(2439), + [anon_sym_pub] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_static] = ACTIONS(2439), + [anon_sym_struct] = ACTIONS(2439), + [anon_sym_trait] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2439), + [anon_sym_union] = ACTIONS(2439), + [anon_sym_unsafe] = ACTIONS(2439), + [anon_sym_use] = ACTIONS(2439), + [anon_sym_where] = ACTIONS(2439), + [anon_sym_while] = ACTIONS(2439), + [sym_mutable_specifier] = ACTIONS(2439), + [sym_integer_literal] = ACTIONS(2441), + [aux_sym_string_literal_token1] = ACTIONS(2441), + [sym_char_literal] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2439), + [anon_sym_false] = ACTIONS(2439), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2439), + [sym_super] = ACTIONS(2439), + [sym_crate] = ACTIONS(2439), + [sym_metavariable] = ACTIONS(2441), + [sym_raw_string_literal] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2441), [sym_block_comment] = ACTIONS(3), }, - [596] = { - [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(1004), - [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), + [589] = { + [sym_identifier] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_DOLLAR] = ACTIONS(2443), + [anon_sym_u8] = ACTIONS(2443), + [anon_sym_i8] = ACTIONS(2443), + [anon_sym_u16] = ACTIONS(2443), + [anon_sym_i16] = ACTIONS(2443), + [anon_sym_u32] = ACTIONS(2443), + [anon_sym_i32] = ACTIONS(2443), + [anon_sym_u64] = ACTIONS(2443), + [anon_sym_i64] = ACTIONS(2443), + [anon_sym_u128] = ACTIONS(2443), + [anon_sym_i128] = ACTIONS(2443), + [anon_sym_isize] = ACTIONS(2443), + [anon_sym_usize] = ACTIONS(2443), + [anon_sym_f32] = ACTIONS(2443), + [anon_sym_f64] = ACTIONS(2443), + [anon_sym_bool] = ACTIONS(2443), + [anon_sym_str] = ACTIONS(2443), + [anon_sym_char] = ACTIONS(2443), + [aux_sym__non_special_token_token1] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), + [anon_sym_async] = ACTIONS(2443), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2443), + [anon_sym_fn] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_impl] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2443), + [anon_sym_loop] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_mod] = ACTIONS(2443), + [anon_sym_pub] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_static] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(2443), + [anon_sym_trait] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2443), + [anon_sym_union] = ACTIONS(2443), + [anon_sym_unsafe] = ACTIONS(2443), + [anon_sym_use] = ACTIONS(2443), + [anon_sym_where] = ACTIONS(2443), + [anon_sym_while] = ACTIONS(2443), + [sym_mutable_specifier] = ACTIONS(2443), + [sym_integer_literal] = ACTIONS(2445), + [aux_sym_string_literal_token1] = ACTIONS(2445), + [sym_char_literal] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(2443), + [anon_sym_false] = ACTIONS(2443), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2443), + [sym_super] = ACTIONS(2443), + [sym_crate] = ACTIONS(2443), + [sym_metavariable] = ACTIONS(2445), + [sym_raw_string_literal] = ACTIONS(2445), + [sym_float_literal] = ACTIONS(2445), [sym_block_comment] = ACTIONS(3), }, - [597] = { - [sym_identifier] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2445), - [anon_sym_u8] = ACTIONS(2445), - [anon_sym_i8] = ACTIONS(2445), - [anon_sym_u16] = ACTIONS(2445), - [anon_sym_i16] = ACTIONS(2445), - [anon_sym_u32] = ACTIONS(2445), - [anon_sym_i32] = ACTIONS(2445), - [anon_sym_u64] = ACTIONS(2445), - [anon_sym_i64] = ACTIONS(2445), - [anon_sym_u128] = ACTIONS(2445), - [anon_sym_i128] = ACTIONS(2445), - [anon_sym_isize] = ACTIONS(2445), - [anon_sym_usize] = ACTIONS(2445), - [anon_sym_f32] = ACTIONS(2445), - [anon_sym_f64] = ACTIONS(2445), - [anon_sym_bool] = ACTIONS(2445), - [anon_sym_str] = ACTIONS(2445), - [anon_sym_char] = ACTIONS(2445), - [aux_sym__non_special_token_token1] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_as] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_fn] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_impl] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_loop] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), - [anon_sym_mod] = ACTIONS(2445), - [anon_sym_pub] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_union] = ACTIONS(2445), - [anon_sym_unsafe] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_where] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [sym_mutable_specifier] = ACTIONS(2445), - [sym_integer_literal] = ACTIONS(2447), - [aux_sym_string_literal_token1] = ACTIONS(2447), - [sym_char_literal] = ACTIONS(2447), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2445), - [sym_super] = ACTIONS(2445), - [sym_crate] = ACTIONS(2445), - [sym_metavariable] = ACTIONS(2447), - [sym_raw_string_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), + [590] = { + [sym_identifier] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(2449), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_DOLLAR] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(2447), + [anon_sym_i8] = ACTIONS(2447), + [anon_sym_u16] = ACTIONS(2447), + [anon_sym_i16] = ACTIONS(2447), + [anon_sym_u32] = ACTIONS(2447), + [anon_sym_i32] = ACTIONS(2447), + [anon_sym_u64] = ACTIONS(2447), + [anon_sym_i64] = ACTIONS(2447), + [anon_sym_u128] = ACTIONS(2447), + [anon_sym_i128] = ACTIONS(2447), + [anon_sym_isize] = ACTIONS(2447), + [anon_sym_usize] = ACTIONS(2447), + [anon_sym_f32] = ACTIONS(2447), + [anon_sym_f64] = ACTIONS(2447), + [anon_sym_bool] = ACTIONS(2447), + [anon_sym_str] = ACTIONS(2447), + [anon_sym_char] = ACTIONS(2447), + [aux_sym__non_special_token_token1] = ACTIONS(2447), + [anon_sym_SQUOTE] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2447), + [anon_sym_async] = ACTIONS(2447), + [anon_sym_await] = ACTIONS(2447), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_const] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_default] = ACTIONS(2447), + [anon_sym_enum] = ACTIONS(2447), + [anon_sym_fn] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_impl] = ACTIONS(2447), + [anon_sym_let] = ACTIONS(2447), + [anon_sym_loop] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_mod] = ACTIONS(2447), + [anon_sym_pub] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2447), + [anon_sym_static] = ACTIONS(2447), + [anon_sym_struct] = ACTIONS(2447), + [anon_sym_trait] = ACTIONS(2447), + [anon_sym_type] = ACTIONS(2447), + [anon_sym_union] = ACTIONS(2447), + [anon_sym_unsafe] = ACTIONS(2447), + [anon_sym_use] = ACTIONS(2447), + [anon_sym_where] = ACTIONS(2447), + [anon_sym_while] = ACTIONS(2447), + [sym_mutable_specifier] = ACTIONS(2447), + [sym_integer_literal] = ACTIONS(2449), + [aux_sym_string_literal_token1] = ACTIONS(2449), + [sym_char_literal] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2447), + [anon_sym_false] = ACTIONS(2447), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2447), + [sym_super] = ACTIONS(2447), + [sym_crate] = ACTIONS(2447), + [sym_metavariable] = ACTIONS(2449), + [sym_raw_string_literal] = ACTIONS(2449), + [sym_float_literal] = ACTIONS(2449), [sym_block_comment] = ACTIONS(3), }, - [598] = { - [sym_identifier] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), + [591] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1882), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), [anon_sym_RPAREN] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_RBRACK] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_u8] = ACTIONS(2449), - [anon_sym_i8] = ACTIONS(2449), - [anon_sym_u16] = ACTIONS(2449), - [anon_sym_i16] = ACTIONS(2449), - [anon_sym_u32] = ACTIONS(2449), - [anon_sym_i32] = ACTIONS(2449), - [anon_sym_u64] = ACTIONS(2449), - [anon_sym_i64] = ACTIONS(2449), - [anon_sym_u128] = ACTIONS(2449), - [anon_sym_i128] = ACTIONS(2449), - [anon_sym_isize] = ACTIONS(2449), - [anon_sym_usize] = ACTIONS(2449), - [anon_sym_f32] = ACTIONS(2449), - [anon_sym_f64] = ACTIONS(2449), - [anon_sym_bool] = ACTIONS(2449), - [anon_sym_str] = ACTIONS(2449), - [anon_sym_char] = ACTIONS(2449), - [aux_sym__non_special_token_token1] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_default] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_fn] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_impl] = ACTIONS(2449), - [anon_sym_let] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_mod] = ACTIONS(2449), - [anon_sym_pub] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2449), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_union] = ACTIONS(2449), - [anon_sym_unsafe] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_where] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [sym_mutable_specifier] = ACTIONS(2449), - [sym_integer_literal] = ACTIONS(2451), - [aux_sym_string_literal_token1] = ACTIONS(2451), - [sym_char_literal] = ACTIONS(2451), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2449), - [sym_super] = ACTIONS(2449), - [sym_crate] = ACTIONS(2449), - [sym_metavariable] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_block_comment] = ACTIONS(3), - }, - [599] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1893), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72150,209 +69985,139 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [600] = { - [sym_identifier] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_RPAREN] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2457), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_u8] = ACTIONS(2455), - [anon_sym_i8] = ACTIONS(2455), - [anon_sym_u16] = ACTIONS(2455), - [anon_sym_i16] = ACTIONS(2455), - [anon_sym_u32] = ACTIONS(2455), - [anon_sym_i32] = ACTIONS(2455), - [anon_sym_u64] = ACTIONS(2455), - [anon_sym_i64] = ACTIONS(2455), - [anon_sym_u128] = ACTIONS(2455), - [anon_sym_i128] = ACTIONS(2455), - [anon_sym_isize] = ACTIONS(2455), - [anon_sym_usize] = ACTIONS(2455), - [anon_sym_f32] = ACTIONS(2455), - [anon_sym_f64] = ACTIONS(2455), - [anon_sym_bool] = ACTIONS(2455), - [anon_sym_str] = ACTIONS(2455), - [anon_sym_char] = ACTIONS(2455), - [aux_sym__non_special_token_token1] = ACTIONS(2455), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_as] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_fn] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_impl] = ACTIONS(2455), - [anon_sym_let] = ACTIONS(2455), - [anon_sym_loop] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_mod] = ACTIONS(2455), - [anon_sym_pub] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_trait] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_use] = ACTIONS(2455), - [anon_sym_where] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [sym_mutable_specifier] = ACTIONS(2455), - [sym_integer_literal] = ACTIONS(2457), - [aux_sym_string_literal_token1] = ACTIONS(2457), - [sym_char_literal] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2455), - [sym_super] = ACTIONS(2455), - [sym_crate] = ACTIONS(2455), - [sym_metavariable] = ACTIONS(2457), - [sym_raw_string_literal] = ACTIONS(2457), - [sym_float_literal] = ACTIONS(2457), - [sym_block_comment] = ACTIONS(3), - }, - [601] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_RPAREN] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_RBRACK] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2459), - [anon_sym_u8] = ACTIONS(2459), - [anon_sym_i8] = ACTIONS(2459), - [anon_sym_u16] = ACTIONS(2459), - [anon_sym_i16] = ACTIONS(2459), - [anon_sym_u32] = ACTIONS(2459), - [anon_sym_i32] = ACTIONS(2459), - [anon_sym_u64] = ACTIONS(2459), - [anon_sym_i64] = ACTIONS(2459), - [anon_sym_u128] = ACTIONS(2459), - [anon_sym_i128] = ACTIONS(2459), - [anon_sym_isize] = ACTIONS(2459), - [anon_sym_usize] = ACTIONS(2459), - [anon_sym_f32] = ACTIONS(2459), - [anon_sym_f64] = ACTIONS(2459), - [anon_sym_bool] = ACTIONS(2459), - [anon_sym_str] = ACTIONS(2459), - [anon_sym_char] = ACTIONS(2459), - [aux_sym__non_special_token_token1] = ACTIONS(2459), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_async] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_fn] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_impl] = ACTIONS(2459), - [anon_sym_let] = ACTIONS(2459), - [anon_sym_loop] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_mod] = ACTIONS(2459), - [anon_sym_pub] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_trait] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_unsafe] = ACTIONS(2459), - [anon_sym_use] = ACTIONS(2459), - [anon_sym_where] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [sym_mutable_specifier] = ACTIONS(2459), - [sym_integer_literal] = ACTIONS(2461), - [aux_sym_string_literal_token1] = ACTIONS(2461), - [sym_char_literal] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2459), - [anon_sym_false] = ACTIONS(2459), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2459), - [sym_super] = ACTIONS(2459), - [sym_crate] = ACTIONS(2459), - [sym_metavariable] = ACTIONS(2461), - [sym_raw_string_literal] = ACTIONS(2461), - [sym_float_literal] = ACTIONS(2461), + [592] = { + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_RBRACK] = ACTIONS(2455), + [anon_sym_DOLLAR] = ACTIONS(2453), + [anon_sym_u8] = ACTIONS(2453), + [anon_sym_i8] = ACTIONS(2453), + [anon_sym_u16] = ACTIONS(2453), + [anon_sym_i16] = ACTIONS(2453), + [anon_sym_u32] = ACTIONS(2453), + [anon_sym_i32] = ACTIONS(2453), + [anon_sym_u64] = ACTIONS(2453), + [anon_sym_i64] = ACTIONS(2453), + [anon_sym_u128] = ACTIONS(2453), + [anon_sym_i128] = ACTIONS(2453), + [anon_sym_isize] = ACTIONS(2453), + [anon_sym_usize] = ACTIONS(2453), + [anon_sym_f32] = ACTIONS(2453), + [anon_sym_f64] = ACTIONS(2453), + [anon_sym_bool] = ACTIONS(2453), + [anon_sym_str] = ACTIONS(2453), + [anon_sym_char] = ACTIONS(2453), + [aux_sym__non_special_token_token1] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_await] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_impl] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_mod] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_trait] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_where] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [sym_mutable_specifier] = ACTIONS(2453), + [sym_integer_literal] = ACTIONS(2455), + [aux_sym_string_literal_token1] = ACTIONS(2455), + [sym_char_literal] = ACTIONS(2455), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2453), + [sym_super] = ACTIONS(2453), + [sym_crate] = ACTIONS(2453), + [sym_metavariable] = ACTIONS(2455), + [sym_raw_string_literal] = ACTIONS(2455), + [sym_float_literal] = ACTIONS(2455), [sym_block_comment] = ACTIONS(3), }, - [602] = { - [sym_parameter] = STATE(2251), - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2031), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [593] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1882), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(2457), + [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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72360,69 +70125,69 @@ 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(2385), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [603] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1893), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(2463), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [594] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1882), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2459), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72430,69 +70195,69 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [604] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1893), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [595] = { + [sym_parameter] = STATE(2255), + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1994), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2371), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72500,346 +70265,276 @@ 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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(2375), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [605] = { - [sym_identifier] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_RPAREN] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_RBRACK] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2467), - [anon_sym_u8] = ACTIONS(2467), - [anon_sym_i8] = ACTIONS(2467), - [anon_sym_u16] = ACTIONS(2467), - [anon_sym_i16] = ACTIONS(2467), - [anon_sym_u32] = ACTIONS(2467), - [anon_sym_i32] = ACTIONS(2467), - [anon_sym_u64] = ACTIONS(2467), - [anon_sym_i64] = ACTIONS(2467), - [anon_sym_u128] = ACTIONS(2467), - [anon_sym_i128] = ACTIONS(2467), - [anon_sym_isize] = ACTIONS(2467), - [anon_sym_usize] = ACTIONS(2467), - [anon_sym_f32] = ACTIONS(2467), - [anon_sym_f64] = ACTIONS(2467), - [anon_sym_bool] = ACTIONS(2467), - [anon_sym_str] = ACTIONS(2467), - [anon_sym_char] = ACTIONS(2467), - [aux_sym__non_special_token_token1] = ACTIONS(2467), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_as] = ACTIONS(2467), - [anon_sym_async] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_default] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_impl] = ACTIONS(2467), - [anon_sym_let] = ACTIONS(2467), - [anon_sym_loop] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_mod] = ACTIONS(2467), - [anon_sym_pub] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_static] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_trait] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(2467), - [anon_sym_use] = ACTIONS(2467), - [anon_sym_where] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [sym_mutable_specifier] = ACTIONS(2467), - [sym_integer_literal] = ACTIONS(2469), - [aux_sym_string_literal_token1] = ACTIONS(2469), - [sym_char_literal] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2467), - [anon_sym_false] = ACTIONS(2467), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2467), - [sym_super] = ACTIONS(2467), - [sym_crate] = ACTIONS(2467), - [sym_metavariable] = ACTIONS(2469), - [sym_raw_string_literal] = ACTIONS(2469), - [sym_float_literal] = ACTIONS(2469), + [596] = { + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2461), + [anon_sym_u8] = ACTIONS(2461), + [anon_sym_i8] = ACTIONS(2461), + [anon_sym_u16] = ACTIONS(2461), + [anon_sym_i16] = ACTIONS(2461), + [anon_sym_u32] = ACTIONS(2461), + [anon_sym_i32] = ACTIONS(2461), + [anon_sym_u64] = ACTIONS(2461), + [anon_sym_i64] = ACTIONS(2461), + [anon_sym_u128] = ACTIONS(2461), + [anon_sym_i128] = ACTIONS(2461), + [anon_sym_isize] = ACTIONS(2461), + [anon_sym_usize] = ACTIONS(2461), + [anon_sym_f32] = ACTIONS(2461), + [anon_sym_f64] = ACTIONS(2461), + [anon_sym_bool] = ACTIONS(2461), + [anon_sym_str] = ACTIONS(2461), + [anon_sym_char] = ACTIONS(2461), + [aux_sym__non_special_token_token1] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_default] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_fn] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_impl] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_mod] = ACTIONS(2461), + [anon_sym_pub] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_union] = ACTIONS(2461), + [anon_sym_unsafe] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_where] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [sym_mutable_specifier] = ACTIONS(2461), + [sym_integer_literal] = ACTIONS(2463), + [aux_sym_string_literal_token1] = ACTIONS(2463), + [sym_char_literal] = ACTIONS(2463), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2461), + [sym_super] = ACTIONS(2461), + [sym_crate] = ACTIONS(2461), + [sym_metavariable] = ACTIONS(2463), + [sym_raw_string_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [sym_identifier] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2471), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2471), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_as] = ACTIONS(2471), - [anon_sym_async] = ACTIONS(2471), - [anon_sym_await] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_fn] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_impl] = ACTIONS(2471), - [anon_sym_let] = ACTIONS(2471), - [anon_sym_loop] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_mod] = ACTIONS(2471), - [anon_sym_pub] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_trait] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(2471), - [anon_sym_use] = ACTIONS(2471), - [anon_sym_where] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [sym_mutable_specifier] = ACTIONS(2471), - [sym_integer_literal] = ACTIONS(2473), - [aux_sym_string_literal_token1] = ACTIONS(2473), - [sym_char_literal] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2471), - [anon_sym_false] = ACTIONS(2471), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2471), - [sym_super] = ACTIONS(2471), - [sym_crate] = ACTIONS(2471), - [sym_metavariable] = ACTIONS(2473), - [sym_raw_string_literal] = ACTIONS(2473), - [sym_float_literal] = ACTIONS(2473), + [597] = { + [sym_identifier] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(2435), + [anon_sym_i8] = ACTIONS(2435), + [anon_sym_u16] = ACTIONS(2435), + [anon_sym_i16] = ACTIONS(2435), + [anon_sym_u32] = ACTIONS(2435), + [anon_sym_i32] = ACTIONS(2435), + [anon_sym_u64] = ACTIONS(2435), + [anon_sym_i64] = ACTIONS(2435), + [anon_sym_u128] = ACTIONS(2435), + [anon_sym_i128] = ACTIONS(2435), + [anon_sym_isize] = ACTIONS(2435), + [anon_sym_usize] = ACTIONS(2435), + [anon_sym_f32] = ACTIONS(2435), + [anon_sym_f64] = ACTIONS(2435), + [anon_sym_bool] = ACTIONS(2435), + [anon_sym_str] = ACTIONS(2435), + [anon_sym_char] = ACTIONS(2435), + [aux_sym__non_special_token_token1] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_async] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_const] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(2435), + [anon_sym_enum] = ACTIONS(2435), + [anon_sym_fn] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_impl] = ACTIONS(2435), + [anon_sym_let] = ACTIONS(2435), + [anon_sym_loop] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_mod] = ACTIONS(2435), + [anon_sym_pub] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_static] = ACTIONS(2435), + [anon_sym_struct] = ACTIONS(2435), + [anon_sym_trait] = ACTIONS(2435), + [anon_sym_type] = ACTIONS(2435), + [anon_sym_union] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2435), + [anon_sym_use] = ACTIONS(2435), + [anon_sym_where] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2435), + [sym_mutable_specifier] = ACTIONS(2435), + [sym_integer_literal] = ACTIONS(2437), + [aux_sym_string_literal_token1] = ACTIONS(2437), + [sym_char_literal] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(2435), + [anon_sym_false] = ACTIONS(2435), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2435), + [sym_super] = ACTIONS(2435), + [sym_crate] = ACTIONS(2435), + [sym_raw_string_literal] = ACTIONS(2437), + [sym_float_literal] = ACTIONS(2437), [sym_block_comment] = ACTIONS(3), }, - [607] = { - [sym_function_modifiers] = STATE(2369), - [sym_higher_ranked_trait_bound] = STATE(1584), - [sym_removed_trait_bound] = STATE(1584), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1585), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(1590), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2475), - [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_SQUOTE] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [598] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1463), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), + [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(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_block_comment] = ACTIONS(3), - }, - [608] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_RBRACK] = ACTIONS(632), - [anon_sym_DOLLAR] = 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), - [aux_sym__non_special_token_token1] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_as] = ACTIONS(634), - [anon_sym_async] = ACTIONS(634), - [anon_sym_await] = ACTIONS(634), - [anon_sym_break] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(634), - [anon_sym_fn] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_impl] = ACTIONS(634), - [anon_sym_let] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(634), - [anon_sym_match] = ACTIONS(634), - [anon_sym_mod] = ACTIONS(634), - [anon_sym_pub] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_static] = ACTIONS(634), - [anon_sym_struct] = ACTIONS(634), - [anon_sym_trait] = ACTIONS(634), - [anon_sym_type] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_unsafe] = ACTIONS(634), - [anon_sym_use] = ACTIONS(634), - [anon_sym_where] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [sym_mutable_specifier] = ACTIONS(634), - [sym_integer_literal] = ACTIONS(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(1004), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [609] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1960), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [599] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1742), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2465), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72847,137 +70542,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [610] = { - [sym_identifier] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_u8] = ACTIONS(2433), - [anon_sym_i8] = ACTIONS(2433), - [anon_sym_u16] = ACTIONS(2433), - [anon_sym_i16] = ACTIONS(2433), - [anon_sym_u32] = ACTIONS(2433), - [anon_sym_i32] = ACTIONS(2433), - [anon_sym_u64] = ACTIONS(2433), - [anon_sym_i64] = ACTIONS(2433), - [anon_sym_u128] = ACTIONS(2433), - [anon_sym_i128] = ACTIONS(2433), - [anon_sym_isize] = ACTIONS(2433), - [anon_sym_usize] = ACTIONS(2433), - [anon_sym_f32] = ACTIONS(2433), - [anon_sym_f64] = ACTIONS(2433), - [anon_sym_bool] = ACTIONS(2433), - [anon_sym_str] = ACTIONS(2433), - [anon_sym_char] = ACTIONS(2433), - [aux_sym__non_special_token_token1] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_impl] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_mod] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_where] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [sym_mutable_specifier] = ACTIONS(2433), - [sym_integer_literal] = ACTIONS(2435), - [aux_sym_string_literal_token1] = ACTIONS(2435), - [sym_char_literal] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2433), - [sym_super] = ACTIONS(2433), - [sym_crate] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2435), - [sym_float_literal] = ACTIONS(2435), - [sym_block_comment] = ACTIONS(3), - }, - [611] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2144), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [600] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2190), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -72985,68 +70611,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [612] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2350), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [601] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2467), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73054,68 +70680,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2278), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [602] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2137), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73123,68 +70749,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [614] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1478), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [603] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2178), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73192,68 +70818,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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [615] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1469), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [604] = { + [sym_identifier] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_RPAREN] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(632), + [anon_sym_RBRACK] = ACTIONS(632), + [anon_sym_DOLLAR] = 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), + [aux_sym__non_special_token_token1] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_async] = ACTIONS(634), + [anon_sym_await] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_default] = ACTIONS(634), + [anon_sym_enum] = ACTIONS(634), + [anon_sym_fn] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_impl] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(634), + [anon_sym_match] = ACTIONS(634), + [anon_sym_mod] = ACTIONS(634), + [anon_sym_pub] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_static] = ACTIONS(634), + [anon_sym_struct] = ACTIONS(634), + [anon_sym_trait] = ACTIONS(634), + [anon_sym_type] = ACTIONS(634), + [anon_sym_union] = ACTIONS(634), + [anon_sym_unsafe] = ACTIONS(634), + [anon_sym_use] = ACTIONS(634), + [anon_sym_where] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [sym_mutable_specifier] = ACTIONS(634), + [sym_integer_literal] = ACTIONS(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(942), + [sym_self] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_crate] = ACTIONS(634), + [sym_raw_string_literal] = ACTIONS(632), + [sym_float_literal] = ACTIONS(632), + [sym_block_comment] = ACTIONS(3), + }, + [605] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2260), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73261,68 +70956,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1472), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [606] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1755), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2479), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73330,68 +71025,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [617] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [607] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2331), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73399,68 +71094,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [618] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2352), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [608] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2247), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73468,68 +71163,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [619] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1952), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [609] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2228), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73537,68 +71232,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [620] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1779), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [610] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2183), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73606,68 +71301,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [621] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1854), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [611] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2269), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73675,206 +71370,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2481), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [622] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2349), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [612] = { + [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(2395), + [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(942), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), [sym_block_comment] = ACTIONS(3), }, - [623] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2315), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_ref] = ACTIONS(716), + [613] = { + [sym_function_modifiers] = STATE(2435), + [sym_higher_ranked_trait_bound] = STATE(1615), + [sym_removed_trait_bound] = STATE(1615), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1618), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1623), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(888), + [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(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [624] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1803), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [614] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1769), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2483), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73882,68 +71577,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [625] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2365), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [615] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2175), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -73951,206 +71646,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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [626] = { - [sym_function_modifiers] = STATE(2369), - [sym_higher_ranked_trait_bound] = STATE(1650), - [sym_removed_trait_bound] = STATE(1650), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1646), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(1627), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2475), - [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_SQUOTE] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), - [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(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_block_comment] = ACTIONS(3), - }, - [627] = { - [sym_function_modifiers] = STATE(2369), - [sym_higher_ranked_trait_bound] = STATE(1650), - [sym_removed_trait_bound] = STATE(1650), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1620), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(1628), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [616] = { + [sym_function_modifiers] = STATE(2435), + [sym_higher_ranked_trait_bound] = STATE(1615), + [sym_removed_trait_bound] = STATE(1615), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1618), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1633), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2475), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2471), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [628] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2348), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [617] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2185), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -74158,137 +71784,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [629] = { - [sym_function_modifiers] = STATE(2369), - [sym_higher_ranked_trait_bound] = STATE(1650), - [sym_removed_trait_bound] = STATE(1650), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1620), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(1627), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2475), - [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_SQUOTE] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), - [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(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), - [sym_block_comment] = ACTIONS(3), - }, - [630] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1798), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [618] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1900), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -74296,68 +71853,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [631] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1893), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [619] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2188), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -74365,68 +71922,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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [632] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2353), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [620] = { + [sym_function_modifiers] = STATE(2435), + [sym_higher_ranked_trait_bound] = STATE(1615), + [sym_removed_trait_bound] = STATE(1615), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1603), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1623), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(888), + [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(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym_block_comment] = ACTIONS(3), + }, + [621] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1879), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -74434,137 +72060,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [633] = { - [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(2401), - [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(1004), - [sym_self] = ACTIONS(2399), - [sym_super] = ACTIONS(2399), - [sym_crate] = ACTIONS(2399), - [sym_raw_string_literal] = ACTIONS(2401), - [sym_float_literal] = ACTIONS(2401), - [sym_block_comment] = ACTIONS(3), - }, - [634] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1474), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [622] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2290), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -74572,137 +72129,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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [635] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1784), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_ref] = ACTIONS(716), + [623] = { + [sym_function_modifiers] = STATE(2435), + [sym_higher_ranked_trait_bound] = STATE(1559), + [sym_removed_trait_bound] = STATE(1559), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1589), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1593), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(888), + [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(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [636] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2345), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [624] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2332), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -74710,68 +72267,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [637] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2356), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [625] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1466), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -74779,137 +72336,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [638] = { - [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(1004), - [sym_self] = ACTIONS(2403), - [sym_super] = ACTIONS(2403), - [sym_crate] = ACTIONS(2403), - [sym_raw_string_literal] = ACTIONS(2405), - [sym_float_literal] = ACTIONS(2405), - [sym_block_comment] = ACTIONS(3), - }, - [639] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1854), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [626] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1989), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -74917,68 +72405,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2487), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [640] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(1494), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [627] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1464), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2475), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -74986,15 +72474,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [641] = { + [628] = { [sym_identifier] = ACTIONS(2407), [anon_sym_LPAREN] = ACTIONS(2409), [anon_sym_RPAREN] = ACTIONS(2409), @@ -75055,7 +72543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2409), [anon_sym_true] = ACTIONS(2407), [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(942), [sym_self] = ACTIONS(2407), [sym_super] = ACTIONS(2407), [sym_crate] = ACTIONS(2407), @@ -75063,129 +72551,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2409), [sym_block_comment] = ACTIONS(3), }, - [642] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_RBRACK] = ACTIONS(664), - [anon_sym_DOLLAR] = 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), - [aux_sym__non_special_token_token1] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(666), - [anon_sym_as] = ACTIONS(666), - [anon_sym_async] = ACTIONS(666), - [anon_sym_await] = ACTIONS(666), - [anon_sym_break] = ACTIONS(666), - [anon_sym_const] = ACTIONS(666), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_enum] = ACTIONS(666), - [anon_sym_fn] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_impl] = ACTIONS(666), - [anon_sym_let] = ACTIONS(666), - [anon_sym_loop] = ACTIONS(666), - [anon_sym_match] = ACTIONS(666), - [anon_sym_mod] = ACTIONS(666), - [anon_sym_pub] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_static] = ACTIONS(666), - [anon_sym_struct] = ACTIONS(666), - [anon_sym_trait] = ACTIONS(666), - [anon_sym_type] = ACTIONS(666), - [anon_sym_union] = ACTIONS(666), - [anon_sym_unsafe] = ACTIONS(666), - [anon_sym_use] = ACTIONS(666), - [anon_sym_where] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [sym_mutable_specifier] = 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(1004), - [sym_self] = ACTIONS(666), - [sym_super] = ACTIONS(666), - [sym_crate] = ACTIONS(666), - [sym_raw_string_literal] = ACTIONS(664), - [sym_float_literal] = ACTIONS(664), + [629] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2150), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), + [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(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [643] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2295), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [630] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1879), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -75193,68 +72681,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(2477), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [644] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2259), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [631] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1456), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -75262,68 +72750,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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [645] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2280), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [632] = { + [sym_identifier] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_RBRACK] = ACTIONS(668), + [anon_sym_DOLLAR] = 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), + [aux_sym__non_special_token_token1] = ACTIONS(670), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = 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(942), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym_raw_string_literal] = ACTIONS(668), + [sym_float_literal] = ACTIONS(668), + [sym_block_comment] = ACTIONS(3), + }, + [633] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1882), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -75331,68 +72888,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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [646] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2335), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [634] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1490), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), + [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(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [635] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -75400,68 +73026,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(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [647] = { - [sym_bracketed_type] = STATE(2444), - [sym_generic_type] = STATE(2441), - [sym_generic_type_with_turbofish] = STATE(2431), - [sym_macro_invocation] = STATE(1466), - [sym_scoped_identifier] = STATE(1382), - [sym_scoped_type_identifier] = STATE(1973), - [sym_const_block] = STATE(1466), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1466), - [sym_slice_pattern] = STATE(1466), - [sym_tuple_struct_pattern] = STATE(1466), - [sym_struct_pattern] = STATE(1466), - [sym_remaining_field_pattern] = STATE(1466), - [sym_mut_pattern] = STATE(1466), - [sym_range_pattern] = STATE(1466), - [sym_ref_pattern] = STATE(1466), - [sym_captured_pattern] = STATE(1466), - [sym_reference_pattern] = STATE(1466), - [sym_or_pattern] = STATE(1466), - [sym__literal_pattern] = STATE(1425), - [sym_negative_literal] = STATE(1446), - [sym_string_literal] = STATE(1446), - [sym_boolean_literal] = STATE(1446), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [636] = { + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2463), + [anon_sym_u8] = ACTIONS(2461), + [anon_sym_i8] = ACTIONS(2461), + [anon_sym_u16] = ACTIONS(2461), + [anon_sym_i16] = ACTIONS(2461), + [anon_sym_u32] = ACTIONS(2461), + [anon_sym_i32] = ACTIONS(2461), + [anon_sym_u64] = ACTIONS(2461), + [anon_sym_i64] = ACTIONS(2461), + [anon_sym_u128] = ACTIONS(2461), + [anon_sym_i128] = ACTIONS(2461), + [anon_sym_isize] = ACTIONS(2461), + [anon_sym_usize] = ACTIONS(2461), + [anon_sym_f32] = ACTIONS(2461), + [anon_sym_f64] = ACTIONS(2461), + [anon_sym_bool] = ACTIONS(2461), + [anon_sym_str] = ACTIONS(2461), + [anon_sym_char] = ACTIONS(2461), + [aux_sym__non_special_token_token1] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_async] = ACTIONS(2461), + [anon_sym_await] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_default] = ACTIONS(2461), + [anon_sym_enum] = ACTIONS(2461), + [anon_sym_fn] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_impl] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_mod] = ACTIONS(2461), + [anon_sym_pub] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2461), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2461), + [anon_sym_union] = ACTIONS(2461), + [anon_sym_unsafe] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_where] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [sym_mutable_specifier] = ACTIONS(2461), + [sym_integer_literal] = ACTIONS(2463), + [aux_sym_string_literal_token1] = ACTIONS(2463), + [sym_char_literal] = ACTIONS(2463), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [sym_line_comment] = ACTIONS(942), + [sym_self] = ACTIONS(2461), + [sym_super] = ACTIONS(2461), + [sym_crate] = ACTIONS(2461), + [sym_raw_string_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), + [sym_block_comment] = ACTIONS(3), + }, + [637] = { + [sym_bracketed_type] = STATE(2462), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2458), + [sym_macro_invocation] = STATE(1476), + [sym_scoped_identifier] = STATE(1371), + [sym_scoped_type_identifier] = STATE(2018), + [sym_const_block] = STATE(1476), + [sym__pattern] = STATE(2142), + [sym_tuple_pattern] = STATE(1476), + [sym_slice_pattern] = STATE(1476), + [sym_tuple_struct_pattern] = STATE(1476), + [sym_struct_pattern] = STATE(1476), + [sym_remaining_field_pattern] = STATE(1476), + [sym_mut_pattern] = STATE(1476), + [sym_range_pattern] = STATE(1476), + [sym_ref_pattern] = STATE(1476), + [sym_captured_pattern] = STATE(1476), + [sym_reference_pattern] = STATE(1476), + [sym_or_pattern] = STATE(1476), + [sym__literal_pattern] = STATE(1420), + [sym_negative_literal] = STATE(1418), + [sym_string_literal] = STATE(1418), + [sym_boolean_literal] = STATE(1418), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = 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_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(814), + [anon_sym_DOT_DOT] = ACTIONS(816), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -75469,23 +73164,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [648] = { - [sym_attribute_item] = STATE(648), - [aux_sym_enum_variant_list_repeat1] = STATE(648), - [sym_identifier] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_RBRACK] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2491), + [638] = { + [sym_function_modifiers] = STATE(2395), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1019), + [sym_bracketed_type] = STATE(2503), + [sym_lifetime] = STATE(2470), + [sym_array_type] = STATE(1059), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1059), + [sym_tuple_type] = STATE(1059), + [sym_unit_type] = STATE(1059), + [sym_generic_type] = STATE(812), + [sym_generic_type_with_turbofish] = STATE(2504), + [sym_bounded_type] = STATE(1059), + [sym_reference_type] = STATE(1059), + [sym_pointer_type] = STATE(1059), + [sym_empty_type] = STATE(1059), + [sym_abstract_type] = STATE(1059), + [sym_dynamic_type] = STATE(1059), + [sym_macro_invocation] = STATE(1059), + [sym_scoped_identifier] = STATE(2251), + [sym_scoped_type_identifier] = STATE(778), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2487), [anon_sym_u8] = ACTIONS(2489), [anon_sym_i8] = ACTIONS(2489), [anon_sym_u16] = ACTIONS(2489), @@ -75503,1256 +73217,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2489), [anon_sym_str] = ACTIONS(2489), [anon_sym_char] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_default] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_union] = ACTIONS(2489), - [anon_sym_unsafe] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2491), - [anon_sym_COMMA] = ACTIONS(2491), - [anon_sym_ref] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2491), - [anon_sym__] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2491), - [sym_mutable_specifier] = ACTIONS(2489), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(2491), - [anon_sym_yield] = ACTIONS(2489), - [anon_sym_move] = ACTIONS(2489), - [sym_integer_literal] = ACTIONS(2491), - [aux_sym_string_literal_token1] = ACTIONS(2491), - [sym_char_literal] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2489), - [sym_super] = ACTIONS(2489), - [sym_crate] = ACTIONS(2489), - [sym_metavariable] = ACTIONS(2491), - [sym_raw_string_literal] = ACTIONS(2491), - [sym_float_literal] = ACTIONS(2491), - [sym_block_comment] = ACTIONS(3), - }, - [649] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2308), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(700), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2493), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_impl] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2497), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(2499), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2498), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_dyn] = ACTIONS(2505), + [sym_mutable_specifier] = ACTIONS(2507), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_crate] = ACTIONS(2509), + [sym_metavariable] = ACTIONS(2511), [sym_block_comment] = ACTIONS(3), }, - [650] = { - [sym_function_modifiers] = STATE(2423), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1029), - [sym_bracketed_type] = STATE(2531), - [sym_lifetime] = STATE(2526), - [sym_array_type] = STATE(1108), - [sym_for_lifetimes] = STATE(1232), - [sym_function_type] = STATE(1108), - [sym_tuple_type] = STATE(1108), - [sym_unit_type] = STATE(1108), - [sym_generic_type] = STATE(822), - [sym_generic_type_with_turbofish] = STATE(2532), - [sym_bounded_type] = STATE(1108), - [sym_reference_type] = STATE(1108), - [sym_pointer_type] = STATE(1108), - [sym_empty_type] = STATE(1108), - [sym_abstract_type] = STATE(1108), - [sym_dynamic_type] = STATE(1108), - [sym_macro_invocation] = STATE(1108), - [sym_scoped_identifier] = STATE(2272), - [sym_scoped_type_identifier] = STATE(785), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_u8] = ACTIONS(2510), - [anon_sym_i8] = ACTIONS(2510), - [anon_sym_u16] = ACTIONS(2510), - [anon_sym_i16] = ACTIONS(2510), - [anon_sym_u32] = ACTIONS(2510), - [anon_sym_i32] = ACTIONS(2510), - [anon_sym_u64] = ACTIONS(2510), - [anon_sym_i64] = ACTIONS(2510), - [anon_sym_u128] = ACTIONS(2510), - [anon_sym_i128] = ACTIONS(2510), - [anon_sym_isize] = ACTIONS(2510), - [anon_sym_usize] = ACTIONS(2510), - [anon_sym_f32] = ACTIONS(2510), - [anon_sym_f64] = ACTIONS(2510), - [anon_sym_bool] = ACTIONS(2510), - [anon_sym_str] = ACTIONS(2510), - [anon_sym_char] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2353), + [639] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2333), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2512), - [anon_sym_fn] = ACTIONS(2514), + [anon_sym_default] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2516), - [anon_sym_union] = ACTIONS(2518), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2524), - [anon_sym_dyn] = ACTIONS(2526), - [sym_mutable_specifier] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2515), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_crate] = ACTIONS(2530), - [sym_metavariable] = ACTIONS(2532), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [651] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1439), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(2496), + [640] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1426), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(2513), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2534), + [sym_mutable_specifier] = ACTIONS(2517), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2536), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [652] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1439), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(2496), + [641] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1426), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(2513), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2538), + [sym_mutable_specifier] = ACTIONS(2519), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(2521), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [653] = { - [sym_function_modifiers] = STATE(2369), - [sym_type_parameters] = STATE(744), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1679), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1678), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1566), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [642] = { + [sym_attribute_item] = STATE(642), + [aux_sym_enum_variant_list_repeat1] = STATE(642), + [sym_identifier] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_RBRACK] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_u8] = ACTIONS(2523), + [anon_sym_i8] = ACTIONS(2523), + [anon_sym_u16] = ACTIONS(2523), + [anon_sym_i16] = ACTIONS(2523), + [anon_sym_u32] = ACTIONS(2523), + [anon_sym_i32] = ACTIONS(2523), + [anon_sym_u64] = ACTIONS(2523), + [anon_sym_i64] = ACTIONS(2523), + [anon_sym_u128] = ACTIONS(2523), + [anon_sym_i128] = ACTIONS(2523), + [anon_sym_isize] = ACTIONS(2523), + [anon_sym_usize] = ACTIONS(2523), + [anon_sym_f32] = ACTIONS(2523), + [anon_sym_f64] = ACTIONS(2523), + [anon_sym_bool] = ACTIONS(2523), + [anon_sym_str] = ACTIONS(2523), + [anon_sym_char] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_async] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_default] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_loop] = ACTIONS(2523), + [anon_sym_match] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_unsafe] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_POUND] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_COMMA] = ACTIONS(2525), + [anon_sym_ref] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym__] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [sym_mutable_specifier] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2523), + [anon_sym_move] = ACTIONS(2523), + [sym_integer_literal] = ACTIONS(2525), + [aux_sym_string_literal_token1] = ACTIONS(2525), + [sym_char_literal] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2523), + [anon_sym_false] = ACTIONS(2523), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2523), + [sym_super] = ACTIONS(2523), + [sym_crate] = ACTIONS(2523), + [sym_metavariable] = ACTIONS(2525), + [sym_raw_string_literal] = ACTIONS(2525), + [sym_float_literal] = ACTIONS(2525), + [sym_block_comment] = ACTIONS(3), + }, + [643] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(2296), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(639), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2530), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2532), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [654] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1857), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [644] = { + [sym_function_modifiers] = STATE(2395), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1135), + [sym_bracketed_type] = STATE(2503), + [sym_lifetime] = STATE(638), + [sym_array_type] = STATE(1059), + [sym_for_lifetimes] = STATE(1217), + [sym_function_type] = STATE(1059), + [sym_tuple_type] = STATE(1059), + [sym_unit_type] = STATE(1059), + [sym_generic_type] = STATE(812), + [sym_generic_type_with_turbofish] = STATE(2504), + [sym_bounded_type] = STATE(1059), + [sym_reference_type] = STATE(1059), + [sym_pointer_type] = STATE(1059), + [sym_empty_type] = STATE(1059), + [sym_abstract_type] = STATE(1059), + [sym_dynamic_type] = STATE(1059), + [sym_macro_invocation] = STATE(1059), + [sym_scoped_identifier] = STATE(2251), + [sym_scoped_type_identifier] = STATE(778), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_u8] = ACTIONS(2489), + [anon_sym_i8] = ACTIONS(2489), + [anon_sym_u16] = ACTIONS(2489), + [anon_sym_i16] = ACTIONS(2489), + [anon_sym_u32] = ACTIONS(2489), + [anon_sym_i32] = ACTIONS(2489), + [anon_sym_u64] = ACTIONS(2489), + [anon_sym_i64] = ACTIONS(2489), + [anon_sym_u128] = ACTIONS(2489), + [anon_sym_i128] = ACTIONS(2489), + [anon_sym_isize] = ACTIONS(2489), + [anon_sym_usize] = ACTIONS(2489), + [anon_sym_f32] = ACTIONS(2489), + [anon_sym_f64] = ACTIONS(2489), + [anon_sym_bool] = ACTIONS(2489), + [anon_sym_str] = ACTIONS(2489), + [anon_sym_char] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2530), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(700), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2493), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_impl] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2497), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(2499), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_dyn] = ACTIONS(2505), + [sym_mutable_specifier] = ACTIONS(2534), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_crate] = ACTIONS(2509), + [sym_metavariable] = ACTIONS(2511), [sym_block_comment] = ACTIONS(3), }, - [655] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2320), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(649), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [645] = { + [sym_function_modifiers] = STATE(2435), + [sym_type_parameters] = STATE(740), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1713), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1724), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2546), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2548), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [656] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(894), + [646] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1913), + [sym_bracketed_type] = STATE(2388), + [sym_qualified_type] = STATE(2365), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [657] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(894), + [647] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(640), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2530), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2540), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [658] = { - [sym_function_modifiers] = STATE(2369), - [sym_type_parameters] = STATE(678), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1660), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1529), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [648] = { + [sym_function_modifiers] = STATE(2435), + [sym_type_parameters] = STATE(687), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1669), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1720), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1541), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [659] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1435), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(652), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [649] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1860), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2546), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2556), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [660] = { - [sym_function_modifiers] = STATE(2369), - [sym_type_parameters] = STATE(760), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1744), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1725), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1536), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [650] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [661] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1813), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(894), + [651] = { + [sym_function_modifiers] = STATE(2435), + [sym_type_parameters] = STATE(757), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1658), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1738), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1523), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [662] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(894), + [652] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [663] = { - [sym_function_modifiers] = STATE(2369), - [sym_type_parameters] = STATE(765), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1740), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1700), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1534), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [653] = { + [sym_function_modifiers] = STATE(2435), + [sym_type_parameters] = STATE(664), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1678), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1654), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1535), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [664] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(2416), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(894), + [654] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1825), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, - [665] = { - [sym_function_modifiers] = STATE(2423), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(1070), - [sym_bracketed_type] = STATE(2531), - [sym_lifetime] = STATE(650), - [sym_array_type] = STATE(1108), - [sym_for_lifetimes] = STATE(1232), - [sym_function_type] = STATE(1108), - [sym_tuple_type] = STATE(1108), - [sym_unit_type] = STATE(1108), - [sym_generic_type] = STATE(822), - [sym_generic_type_with_turbofish] = STATE(2532), - [sym_bounded_type] = STATE(1108), - [sym_reference_type] = STATE(1108), - [sym_pointer_type] = STATE(1108), - [sym_empty_type] = STATE(1108), - [sym_abstract_type] = STATE(1108), - [sym_dynamic_type] = STATE(1108), - [sym_macro_invocation] = STATE(1108), - [sym_scoped_identifier] = STATE(2272), - [sym_scoped_type_identifier] = STATE(785), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2508), - [anon_sym_u8] = ACTIONS(2510), - [anon_sym_i8] = ACTIONS(2510), - [anon_sym_u16] = ACTIONS(2510), - [anon_sym_i16] = ACTIONS(2510), - [anon_sym_u32] = ACTIONS(2510), - [anon_sym_i32] = ACTIONS(2510), - [anon_sym_u64] = ACTIONS(2510), - [anon_sym_i64] = ACTIONS(2510), - [anon_sym_u128] = ACTIONS(2510), - [anon_sym_i128] = ACTIONS(2510), - [anon_sym_isize] = ACTIONS(2510), - [anon_sym_usize] = ACTIONS(2510), - [anon_sym_f32] = ACTIONS(2510), - [anon_sym_f64] = ACTIONS(2510), - [anon_sym_bool] = ACTIONS(2510), - [anon_sym_str] = ACTIONS(2510), - [anon_sym_char] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(2546), + [655] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2512), - [anon_sym_fn] = ACTIONS(2514), + [anon_sym_default] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2516), - [anon_sym_union] = ACTIONS(2518), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(888), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2524), - [anon_sym_dyn] = ACTIONS(2526), - [sym_mutable_specifier] = ACTIONS(2568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_crate] = ACTIONS(2530), - [sym_metavariable] = ACTIONS(2532), - [sym_block_comment] = ACTIONS(3), - }, - [666] = { - [sym_function_modifiers] = STATE(2369), - [sym_extern_modifier] = STATE(1583), - [sym__type] = STATE(2152), - [sym_bracketed_type] = STATE(2416), - [sym_qualified_type] = STATE(2471), - [sym_lifetime] = STATE(2453), - [sym_array_type] = STATE(1422), - [sym_for_lifetimes] = STATE(1230), - [sym_function_type] = STATE(1422), - [sym_tuple_type] = STATE(1422), - [sym_unit_type] = STATE(1422), - [sym_generic_type] = STATE(1413), - [sym_generic_type_with_turbofish] = STATE(2417), - [sym_bounded_type] = STATE(1422), - [sym_reference_type] = STATE(1422), - [sym_pointer_type] = STATE(1422), - [sym_empty_type] = STATE(1422), - [sym_abstract_type] = STATE(1422), - [sym_dynamic_type] = STATE(1422), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(2354), - [sym_scoped_type_identifier] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1583), - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_dyn] = ACTIONS(726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), + [sym_block_comment] = ACTIONS(3), + }, + [656] = { + [sym_function_modifiers] = STATE(2435), + [sym_extern_modifier] = STATE(1569), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2430), + [sym_array_type] = STATE(1425), + [sym_for_lifetimes] = STATE(1218), + [sym_function_type] = STATE(1425), + [sym_tuple_type] = STATE(1425), + [sym_unit_type] = STATE(1425), + [sym_generic_type] = STATE(1408), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1425), + [sym_reference_type] = STATE(1425), + [sym_pointer_type] = STATE(1425), + [sym_empty_type] = STATE(1425), + [sym_abstract_type] = STATE(1425), + [sym_dynamic_type] = STATE(1425), + [sym_macro_invocation] = STATE(1425), + [sym_scoped_identifier] = STATE(2146), + [sym_scoped_type_identifier] = STATE(1363), + [aux_sym_function_modifiers_repeat1] = STATE(1569), + [sym_identifier] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(882), [anon_sym_STAR] = ACTIONS(688), - [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_SQUOTE] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(2343), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(898), + [anon_sym_default] = ACTIONS(886), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(900), + [anon_sym_union] = ACTIONS(888), [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(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(894), [anon_sym_dyn] = ACTIONS(726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(912), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(900), [sym_block_comment] = ACTIONS(3), }, }; @@ -76775,57 +74470,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1690), 1, + STATE(1979), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76837,7 +74532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76872,57 +74567,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2226), 1, + STATE(2067), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76934,7 +74629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76969,348 +74664,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, - anon_sym_AMP, - ACTIONS(912), 1, - sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, - sym_scoped_type_identifier, - STATE(1413), 1, - sym_generic_type, - STATE(2207), 1, - sym__type, - STATE(2354), 1, - sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(1422), 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(896), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [387] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(890), 1, - anon_sym_LPAREN, ACTIONS(894), 1, - anon_sym_LBRACK, - ACTIONS(898), 1, - anon_sym_default, - ACTIONS(900), 1, - anon_sym_union, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(906), 1, anon_sym_AMP, - ACTIONS(912), 1, - sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, - sym_scoped_type_identifier, - STATE(1413), 1, - sym_generic_type, - STATE(1820), 1, - sym__type, - STATE(2354), 1, - sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(1422), 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(896), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [516] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(890), 1, - anon_sym_LPAREN, - ACTIONS(894), 1, - anon_sym_LBRACK, - ACTIONS(898), 1, - anon_sym_default, ACTIONS(900), 1, - anon_sym_union, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(906), 1, - anon_sym_AMP, - ACTIONS(912), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1813), 1, - sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(1422), 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(896), 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(890), 1, - anon_sym_LPAREN, - ACTIONS(894), 1, - anon_sym_LBRACK, - ACTIONS(898), 1, - anon_sym_default, - ACTIONS(900), 1, - anon_sym_union, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(906), 1, - anon_sym_AMP, - ACTIONS(912), 1, - sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, - sym_scoped_type_identifier, - STATE(1413), 1, - sym_generic_type, - STATE(1714), 1, + STATE(2156), 1, sym__type, - STATE(2354), 1, - sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77322,7 +74726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77340,74 +74744,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [774] = 32, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2479), 1, sym_identifier, - ACTIONS(2502), 1, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, + ACTIONS(2487), 1, anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(2514), 1, + ACTIONS(2493), 1, anon_sym_fn, - ACTIONS(2516), 1, + ACTIONS(2495), 1, anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(2520), 1, + ACTIONS(2499), 1, anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(2505), 1, anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(2511), 1, sym_metavariable, - STATE(785), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(812), 1, sym_generic_type, - STATE(959), 1, + STATE(1114), 1, sym__type, - STATE(1232), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(2272), 1, + STATE(2251), 1, sym_scoped_identifier, - STATE(2423), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2526), 1, + STATE(2470), 1, sym_lifetime, - STATE(2531), 1, + STATE(2503), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77419,7 +74823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77437,7 +74841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [903] = 32, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77454,57 +74858,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1958), 1, + STATE(2116), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77516,7 +74920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77534,7 +74938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, + [645] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77551,57 +74955,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1708), 1, + STATE(1649), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77613,7 +75017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77631,7 +75035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1161] = 32, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77648,57 +75052,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1439), 1, + STATE(1831), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77710,7 +75114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77728,75 +75132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1686), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1688), 42, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1361] = 32, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77813,57 +75149,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2560), 1, sym_identifier, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1567), 1, + STATE(1517), 1, sym_scoped_type_identifier, - STATE(1658), 1, - sym__type, - STATE(1718), 1, + STATE(1684), 1, sym_generic_type, - STATE(2354), 1, + STATE(1715), 1, + sym__type, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77875,7 +75211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77893,7 +75229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1490] = 32, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77910,155 +75246,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1712), 1, + STATE(1911), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(1422), 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(896), 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, - [1619] = 33, - 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(890), 1, - anon_sym_LPAREN, - ACTIONS(894), 1, - anon_sym_LBRACK, - ACTIONS(898), 1, - anon_sym_default, - ACTIONS(900), 1, - anon_sym_union, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(906), 1, - anon_sym_AMP, - ACTIONS(912), 1, - sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2572), 1, + ACTIONS(898), 3, sym_self, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, - sym_scoped_type_identifier, - STATE(1413), 1, - sym_generic_type, - STATE(1431), 1, - sym__type, - STATE(2354), 1, - sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(910), 2, sym_super, sym_crate, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78070,7 +75308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78088,74 +75326,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1750] = 32, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2479), 1, sym_identifier, - ACTIONS(2502), 1, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, + ACTIONS(2487), 1, anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(2514), 1, + ACTIONS(2493), 1, anon_sym_fn, - ACTIONS(2516), 1, + ACTIONS(2495), 1, anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(2520), 1, + ACTIONS(2499), 1, anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(2505), 1, anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(2511), 1, sym_metavariable, - STATE(785), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(812), 1, sym_generic_type, - STATE(890), 1, + STATE(1082), 1, sym__type, - STATE(1232), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(2272), 1, + STATE(2251), 1, sym_scoped_identifier, - STATE(2423), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2526), 1, + STATE(2470), 1, sym_lifetime, - STATE(2531), 1, + STATE(2503), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78167,7 +75405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78185,74 +75423,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1879] = 32, + [1290] = 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(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - sym_identifier, - ACTIONS(2502), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(2514), 1, - anon_sym_fn, - ACTIONS(2516), 1, - anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(2520), 1, - anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(900), 1, sym_metavariable, - STATE(785), 1, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(1408), 1, sym_generic_type, - STATE(885), 1, + STATE(1433), 1, sym__type, - STATE(1232), 1, - sym_for_lifetimes, - STATE(2272), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2423), 1, - sym_function_modifiers, - STATE(2526), 1, - sym_lifetime, - STATE(2531), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78264,7 +75502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78282,7 +75520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2008] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78299,57 +75537,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2080), 1, + STATE(1656), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78361,7 +75599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78379,7 +75617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2137] = 32, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78396,57 +75634,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1917), 1, + STATE(1426), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78458,7 +75696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78476,74 +75714,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2266] = 32, + [1677] = 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(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - sym_identifier, - ACTIONS(2502), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(2514), 1, - anon_sym_fn, - ACTIONS(2516), 1, - anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(2520), 1, - anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(900), 1, sym_metavariable, - STATE(785), 1, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(1408), 1, sym_generic_type, - STATE(884), 1, + STATE(1653), 1, sym__type, - STATE(1232), 1, - sym_for_lifetimes, - STATE(2272), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2423), 1, - sym_function_modifiers, - STATE(2526), 1, - sym_lifetime, - STATE(2531), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78555,7 +75793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78573,74 +75811,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2395] = 32, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(2479), 1, + sym_identifier, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(2487), 1, + anon_sym_STAR, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(2493), 1, + anon_sym_fn, + ACTIONS(2495), 1, + anon_sym_impl, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(2499), 1, + anon_sym_BANG, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(2505), 1, + anon_sym_dyn, + ACTIONS(2511), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(812), 1, sym_generic_type, - STATE(2057), 1, + STATE(1131), 1, sym__type, - STATE(2354), 1, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2251), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2416), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2503), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78652,7 +75890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78670,7 +75908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2524] = 32, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78687,57 +75925,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1847), 1, + STATE(1605), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78749,7 +75987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78767,7 +76005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2653] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78784,57 +76022,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1730), 1, + STATE(1411), 1, sym__type, - STATE(2354), 1, + STATE(1414), 1, + sym_lifetime, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78846,7 +76084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78864,7 +76102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2782] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78881,57 +76119,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1732), 1, + STATE(1411), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78943,7 +76181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78961,7 +76199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2911] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78978,57 +76216,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1717), 1, + STATE(1896), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79040,7 +76278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79058,7 +76296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3040] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79075,57 +76313,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1440), 1, + STATE(1992), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79137,7 +76375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79155,74 +76393,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3169] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - sym_identifier, - ACTIONS(2502), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(2514), 1, - anon_sym_fn, - ACTIONS(2516), 1, - anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(2520), 1, - anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(900), 1, sym_metavariable, - STATE(785), 1, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(1408), 1, sym_generic_type, - STATE(1073), 1, - sym__type, - STATE(1232), 1, - sym_for_lifetimes, - STATE(2272), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2423), 1, - sym_function_modifiers, - STATE(2526), 1, - sym_lifetime, - STATE(2531), 1, + STATE(2326), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79234,7 +76472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79252,7 +76490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3298] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79269,57 +76507,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1702), 1, + STATE(1721), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79331,7 +76569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79349,7 +76587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3427] = 32, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79366,57 +76604,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1947), 1, + STATE(1799), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79428,7 +76666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79446,7 +76684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3556] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79463,57 +76701,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1727), 1, + STATE(1965), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79525,7 +76763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79543,7 +76781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3685] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79560,57 +76798,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2264), 1, + STATE(1862), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79622,7 +76860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79640,7 +76878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3814] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79657,57 +76895,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1670), 1, + STATE(1736), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79719,7 +76957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79737,7 +76975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3943] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79754,57 +76992,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1878), 1, + STATE(1735), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79816,7 +77054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79834,7 +77072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4072] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79851,57 +77089,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1611), 1, + STATE(1657), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79913,7 +77151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79931,7 +77169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4201] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -79948,57 +77186,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2279), 1, - sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2242), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80010,7 +77248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80028,7 +77266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4330] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80045,57 +77283,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2006), 1, - sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2333), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80107,7 +77345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80125,7 +77363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4459] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80142,57 +77380,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + ACTIONS(2562), 1, + sym_identifier, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1549), 1, sym_scoped_type_identifier, - STATE(1413), 1, - sym_generic_type, - STATE(1752), 1, + STATE(1703), 1, sym__type, - STATE(2354), 1, + STATE(1704), 1, + sym_generic_type, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80204,7 +77442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80222,74 +77460,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4588] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2479), 1, sym_identifier, - ACTIONS(2502), 1, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, + ACTIONS(2487), 1, anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(2514), 1, + ACTIONS(2493), 1, anon_sym_fn, - ACTIONS(2516), 1, + ACTIONS(2495), 1, anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(2520), 1, + ACTIONS(2499), 1, anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(2505), 1, anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(2511), 1, sym_metavariable, - STATE(785), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(812), 1, sym_generic_type, - STATE(964), 1, + STATE(884), 1, sym__type, - STATE(1232), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(2272), 1, + STATE(2251), 1, sym_scoped_identifier, - STATE(2423), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2526), 1, + STATE(2470), 1, sym_lifetime, - STATE(2531), 1, + STATE(2503), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80301,7 +77539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80319,74 +77557,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4717] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - sym_identifier, - ACTIONS(2502), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(2514), 1, + ACTIONS(888), 1, + anon_sym_union, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(894), 1, + anon_sym_AMP, + ACTIONS(900), 1, + sym_metavariable, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, + sym_scoped_type_identifier, + STATE(1408), 1, + sym_generic_type, + STATE(2146), 1, + sym_scoped_identifier, + STATE(2253), 1, + sym__type, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + STATE(1425), 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(884), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [4257] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, anon_sym_fn, - ACTIONS(2516), 1, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, anon_sym_impl, - ACTIONS(2518), 1, - anon_sym_union, - ACTIONS(2520), 1, + ACTIONS(710), 1, anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(878), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_default, + ACTIONS(888), 1, + anon_sym_union, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(900), 1, sym_metavariable, - STATE(785), 1, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(1408), 1, sym_generic_type, - STATE(967), 1, + STATE(2146), 1, + sym_scoped_identifier, + STATE(2335), 1, sym__type, - STATE(1232), 1, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + STATE(1425), 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(884), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [4386] = 32, + ACTIONS(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(878), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_default, + ACTIONS(888), 1, + anon_sym_union, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(894), 1, + anon_sym_AMP, + ACTIONS(900), 1, + sym_metavariable, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, sym_for_lifetimes, - STATE(2272), 1, + STATE(1363), 1, + sym_scoped_type_identifier, + STATE(1408), 1, + sym_generic_type, + STATE(1705), 1, + sym__type, + STATE(2146), 1, sym_scoped_identifier, - STATE(2423), 1, - sym_function_modifiers, - STATE(2526), 1, - sym_lifetime, - STATE(2531), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80398,7 +77830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80416,7 +77848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4846] = 32, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80433,57 +77865,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1698), 1, + STATE(1864), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80495,7 +77927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80513,74 +77945,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4975] = 32, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2479), 1, sym_identifier, - ACTIONS(2502), 1, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, + ACTIONS(2487), 1, anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(2514), 1, + ACTIONS(2493), 1, anon_sym_fn, - ACTIONS(2516), 1, + ACTIONS(2495), 1, anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(2520), 1, + ACTIONS(2499), 1, anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(2526), 1, + ACTIONS(2505), 1, anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(2511), 1, sym_metavariable, - STATE(785), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(812), 1, sym_generic_type, - STATE(968), 1, + STATE(889), 1, sym__type, - STATE(1232), 1, + STATE(1217), 1, sym_for_lifetimes, - STATE(2272), 1, + STATE(2251), 1, sym_scoped_identifier, - STATE(2423), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2526), 1, + STATE(2470), 1, sym_lifetime, - STATE(2531), 1, + STATE(2503), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80592,7 +78024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80610,7 +78042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5104] = 32, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80627,57 +78059,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2141), 1, + STATE(1981), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80689,7 +78121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80707,171 +78139,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5233] = 32, + [4902] = 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(890), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(2479), 1, + sym_identifier, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(898), 1, - anon_sym_default, - ACTIONS(900), 1, - anon_sym_union, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(906), 1, - anon_sym_AMP, - ACTIONS(912), 1, - sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, - sym_scoped_type_identifier, - STATE(1413), 1, - sym_generic_type, - STATE(1747), 1, - sym__type, - STATE(2354), 1, - sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(1422), 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(896), 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, - [5362] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(2487), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(2491), 1, + anon_sym_default, + ACTIONS(2493), 1, anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, + ACTIONS(2495), 1, anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(890), 1, - anon_sym_LPAREN, - ACTIONS(894), 1, - anon_sym_LBRACK, - ACTIONS(898), 1, - anon_sym_default, - ACTIONS(900), 1, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(2499), 1, + anon_sym_BANG, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(2505), 1, + anon_sym_dyn, + ACTIONS(2511), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(812), 1, sym_generic_type, - STATE(2262), 1, + STATE(1136), 1, sym__type, - STATE(2354), 1, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2251), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2416), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2503), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80883,7 +78218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80901,7 +78236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5491] = 32, + [5031] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -80918,57 +78253,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2016), 1, - sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2182), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80980,7 +78315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80998,7 +78333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5620] = 32, + [5160] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81015,57 +78350,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1715), 1, + STATE(1620), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81077,7 +78412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81095,7 +78430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5749] = 32, + [5289] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81112,57 +78447,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1971), 1, + STATE(1650), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81174,7 +78509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81192,7 +78527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5878] = 32, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81209,57 +78544,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2325), 1, + STATE(1728), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81271,7 +78606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81289,7 +78624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6007] = 32, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81306,57 +78641,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1931), 1, + STATE(1648), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81368,7 +78703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81386,7 +78721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6136] = 32, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81403,57 +78738,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1444), 1, - sym__type, - STATE(1445), 1, - sym_lifetime, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2212), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81465,7 +78800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81483,7 +78818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6265] = 32, + [5805] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81500,57 +78835,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1731), 1, + STATE(1417), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81562,7 +78897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81580,7 +78915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6394] = 32, + [5934] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81597,57 +78932,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2113), 1, + STATE(1926), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81659,7 +78994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81677,7 +79012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6523] = 32, + [6063] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81694,57 +79029,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1689), 1, + STATE(2134), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81756,7 +79091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81774,7 +79109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6652] = 32, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -81791,57 +79126,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1444), 1, + STATE(2052), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81853,7 +79188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81871,74 +79206,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6781] = 32, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(688), 1, + anon_sym_STAR, + ACTIONS(700), 1, + anon_sym_fn, ACTIONS(702), 1, anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, + anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - sym_identifier, - ACTIONS(2502), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(2514), 1, - anon_sym_fn, - ACTIONS(2516), 1, - anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(2520), 1, - anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(900), 1, sym_metavariable, - STATE(785), 1, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(1408), 1, sym_generic_type, - STATE(1025), 1, - sym__type, - STATE(1232), 1, - sym_for_lifetimes, - STATE(2272), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2423), 1, - sym_function_modifiers, - STATE(2526), 1, - sym_lifetime, - STATE(2531), 1, + STATE(2171), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81950,7 +79285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81968,74 +79303,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6910] = 32, + [6450] = 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(890), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(2479), 1, + sym_identifier, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(2487), 1, + anon_sym_STAR, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(2493), 1, + anon_sym_fn, + ACTIONS(2495), 1, + anon_sym_impl, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(2499), 1, + anon_sym_BANG, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(2505), 1, + anon_sym_dyn, + ACTIONS(2511), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(812), 1, sym_generic_type, - STATE(1909), 1, + STATE(890), 1, sym__type, - STATE(2354), 1, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2251), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2416), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2503), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82047,7 +79382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82065,7 +79400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7039] = 32, + [6579] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82082,154 +79417,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1734), 1, + STATE(1655), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(1422), 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(896), 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, - [7168] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - sym_identifier, - ACTIONS(2502), 1, - anon_sym_LPAREN, - ACTIONS(2504), 1, - anon_sym_LBRACK, - ACTIONS(2508), 1, - anon_sym_STAR, - ACTIONS(2512), 1, - anon_sym_default, - ACTIONS(2514), 1, - anon_sym_fn, - ACTIONS(2516), 1, - anon_sym_impl, - ACTIONS(2518), 1, - anon_sym_union, - ACTIONS(2520), 1, - anon_sym_BANG, - ACTIONS(2522), 1, - anon_sym_COLON_COLON, - ACTIONS(2524), 1, - anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_dyn, - ACTIONS(2532), 1, - sym_metavariable, - STATE(785), 1, - sym_scoped_type_identifier, - STATE(822), 1, - sym_generic_type, - STATE(1089), 1, - sym__type, - STATE(1232), 1, - sym_for_lifetimes, - STATE(2272), 1, - sym_scoped_identifier, - STATE(2423), 1, + STATE(2435), 1, sym_function_modifiers, - STATE(2526), 1, - sym_lifetime, - STATE(2531), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82241,7 +79479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82259,7 +79497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7297] = 32, + [6708] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82276,57 +79514,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1437), 1, + STATE(1416), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82338,7 +79576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82356,7 +79594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7426] = 32, + [6837] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82373,57 +79611,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1751), 1, + STATE(2109), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82435,7 +79673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82453,7 +79691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7555] = 32, + [6966] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82470,57 +79708,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1684), 1, - sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2244), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82532,7 +79770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82550,7 +79788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7684] = 32, + [7095] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82567,57 +79805,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1450), 1, + STATE(1868), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82629,7 +79867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82647,7 +79885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7813] = 32, + [7224] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82664,57 +79902,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1432), 1, + STATE(1413), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82726,7 +79964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82744,74 +79982,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7942] = 32, + [7353] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(2479), 1, + sym_identifier, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(2487), 1, + anon_sym_STAR, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(2493), 1, + anon_sym_fn, + ACTIONS(2495), 1, + anon_sym_impl, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(2499), 1, + anon_sym_BANG, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(2505), 1, + anon_sym_dyn, + ACTIONS(2511), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(812), 1, sym_generic_type, - STATE(2309), 1, + STATE(876), 1, sym__type, - STATE(2354), 1, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2251), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2416), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2503), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82823,7 +80061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82841,7 +80079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8071] = 32, + [7482] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82858,57 +80096,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2308), 1, + STATE(1843), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82920,7 +80158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82938,7 +80176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8200] = 32, + [7611] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -82955,57 +80193,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2081), 1, + STATE(1670), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83017,7 +80255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83035,7 +80273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8329] = 32, + [7740] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83052,57 +80290,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1431), 1, + STATE(1904), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83114,7 +80352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83132,7 +80370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8458] = 32, + [7869] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83149,57 +80387,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1434), 1, + STATE(1667), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83211,7 +80449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83229,7 +80467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8587] = 32, + [7998] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83246,57 +80484,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1675), 1, + STATE(1432), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83308,7 +80546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83326,7 +80564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8716] = 32, + [8127] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83343,57 +80581,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2300), 1, + STATE(1668), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83405,7 +80643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83423,7 +80661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8845] = 32, + [8256] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83440,57 +80678,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1676), 1, + STATE(1991), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83502,7 +80740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83520,7 +80758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8974] = 32, + [8385] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83537,57 +80775,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1661), 1, + STATE(1983), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83599,7 +80837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83617,7 +80855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9103] = 32, + [8514] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83634,57 +80872,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, + ACTIONS(888), 1, + anon_sym_union, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(894), 1, + anon_sym_AMP, ACTIONS(900), 1, + sym_metavariable, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, + sym_scoped_type_identifier, + STATE(1408), 1, + sym_generic_type, + STATE(1431), 1, + sym__type, + STATE(2146), 1, + sym_scoped_identifier, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + STATE(1425), 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(884), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [8643] = 32, + ACTIONS(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(878), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_default, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1610), 1, + STATE(1672), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, sym_function_modifiers, - STATE(2416), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + STATE(1425), 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(884), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [8772] = 32, + ACTIONS(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(878), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_default, + ACTIONS(888), 1, + anon_sym_union, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(894), 1, + anon_sym_AMP, + ACTIONS(900), 1, + sym_metavariable, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, + sym_scoped_type_identifier, + STATE(1408), 1, + sym_generic_type, + STATE(1957), 1, + sym__type, + STATE(2146), 1, + sym_scoped_identifier, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83696,7 +81128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83714,7 +81146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9232] = 32, + [8901] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83731,57 +81163,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1664), 1, + STATE(1438), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83793,7 +81225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83811,7 +81243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9361] = 32, + [9030] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83828,57 +81260,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1710), 1, - sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2198), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83890,7 +81322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83908,7 +81340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9490] = 32, + [9159] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -83925,57 +81357,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2065), 1, + STATE(1707), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83987,7 +81419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84005,7 +81437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9619] = 32, + [9288] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -84022,57 +81454,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2210), 1, + STATE(1675), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84084,7 +81516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84102,7 +81534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9748] = 32, + [9417] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -84119,57 +81551,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1443), 1, + STATE(2081), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84181,7 +81613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84199,86 +81631,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9877] = 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(890), 1, + [9546] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1296), 20, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(894), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(898), 1, - anon_sym_default, - ACTIONS(900), 1, - anon_sym_union, - ACTIONS(904), 1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(906), 1, anon_sym_AMP, - ACTIONS(912), 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(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2574), 1, - sym_identifier, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1561), 1, - sym_scoped_type_identifier, - STATE(1659), 1, - sym__type, - STATE(1726), 1, - sym_generic_type, - STATE(2354), 1, - sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(1422), 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(896), 17, + ACTIONS(1298), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84296,7 +81674,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10006] = 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, + [9617] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -84313,57 +81716,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1824), 1, + STATE(1827), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84375,7 +81778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84393,74 +81796,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10135] = 32, + [9746] = 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(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - sym_identifier, - ACTIONS(2502), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(2514), 1, - anon_sym_fn, - ACTIONS(2516), 1, - anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(2520), 1, - anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(900), 1, sym_metavariable, - STATE(785), 1, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(1408), 1, sym_generic_type, - STATE(1029), 1, + STATE(2064), 1, sym__type, - STATE(1232), 1, - sym_for_lifetimes, - STATE(2272), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2423), 1, - sym_function_modifiers, - STATE(2526), 1, - sym_lifetime, - STATE(2531), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84472,7 +81875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84490,7 +81893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10264] = 32, + [9875] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -84507,57 +81910,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2312), 1, + STATE(1439), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84569,7 +81972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84587,74 +81990,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [10004] = 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(890), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(2479), 1, + sym_identifier, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(2487), 1, + anon_sym_STAR, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(2493), 1, + anon_sym_fn, + ACTIONS(2495), 1, + anon_sym_impl, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(2499), 1, + anon_sym_BANG, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(2505), 1, + anon_sym_dyn, + ACTIONS(2511), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(812), 1, sym_generic_type, - STATE(1442), 1, + STATE(1023), 1, sym__type, - STATE(2354), 1, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2251), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2416), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2503), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84666,7 +82069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84684,7 +82087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [10133] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -84701,57 +82104,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2043), 1, + STATE(1680), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84763,7 +82166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84781,7 +82184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [10262] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -84798,57 +82201,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1906), 1, + STATE(1709), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84860,7 +82263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84878,7 +82281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [10391] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -84895,57 +82298,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2109), 1, + STATE(1732), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84957,7 +82360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84975,7 +82378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [10520] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -84992,57 +82395,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2095), 1, + STATE(1708), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85054,7 +82457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85072,7 +82475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [10649] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -85089,57 +82492,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + ACTIONS(2564), 1, + sym_identifier, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1543), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1723), 1, sym_generic_type, - STATE(1426), 1, + STATE(1727), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85151,7 +82554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85169,7 +82572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [10778] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -85186,57 +82589,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1880), 1, + STATE(1710), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85248,7 +82651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85266,7 +82669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [10907] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -85283,57 +82686,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1709), 1, + STATE(1711), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85345,7 +82748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85363,7 +82766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11425] = 32, + [11036] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -85380,57 +82783,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1736), 1, + STATE(2086), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85442,7 +82845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85460,74 +82863,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11554] = 32, + [11165] = 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(890), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(2479), 1, + sym_identifier, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(2487), 1, + anon_sym_STAR, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(2493), 1, + anon_sym_fn, + ACTIONS(2495), 1, + anon_sym_impl, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(2499), 1, + anon_sym_BANG, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(2505), 1, + anon_sym_dyn, + ACTIONS(2511), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(812), 1, sym_generic_type, - STATE(2053), 1, + STATE(1019), 1, sym__type, - STATE(2354), 1, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2251), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2416), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2503), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85539,7 +82942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85557,7 +82960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11683] = 32, + [11294] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -85574,57 +82977,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1874), 1, + STATE(1962), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85636,7 +83039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85654,74 +83057,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11812] = 32, + [11423] = 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(890), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(2479), 1, + sym_identifier, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(2487), 1, + anon_sym_STAR, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(2493), 1, + anon_sym_fn, + ACTIONS(2495), 1, + anon_sym_impl, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(2499), 1, + anon_sym_BANG, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(2505), 1, + anon_sym_dyn, + ACTIONS(2511), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(812), 1, sym_generic_type, - STATE(2060), 1, + STATE(1064), 1, sym__type, - STATE(2354), 1, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2251), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2416), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2503), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85733,7 +83136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85751,7 +83154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11941] = 32, + [11552] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -85768,57 +83171,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2339), 1, sym_identifier, - STATE(1230), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, sym_for_lifetimes, - STATE(1535), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1707), 1, + STATE(1408), 1, sym_generic_type, - STATE(1735), 1, + STATE(1415), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85830,7 +83233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85848,74 +83251,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12070] = 32, + [11681] = 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(890), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(2479), 1, + sym_identifier, + ACTIONS(2481), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(2487), 1, + anon_sym_STAR, + ACTIONS(2491), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(2493), 1, + anon_sym_fn, + ACTIONS(2495), 1, + anon_sym_impl, + ACTIONS(2497), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(2499), 1, + anon_sym_BANG, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(2503), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(2505), 1, + anon_sym_dyn, + ACTIONS(2511), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1375), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(812), 1, sym_generic_type, - STATE(1852), 1, + STATE(1006), 1, sym__type, - STATE(2354), 1, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2251), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2395), 1, sym_function_modifiers, - STATE(2416), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2503), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2504), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(2509), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1059), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -85927,7 +83330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(2489), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85945,7 +83348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [11810] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -85962,57 +83365,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1663), 1, + STATE(1854), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86024,7 +83427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86042,7 +83445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [11939] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -86059,57 +83462,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1937), 1, + STATE(2112), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86121,7 +83524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86139,74 +83542,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [12068] = 33, 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(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - sym_identifier, - ACTIONS(2502), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(2508), 1, - anon_sym_STAR, - ACTIONS(2512), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(2514), 1, - anon_sym_fn, - ACTIONS(2516), 1, - anon_sym_impl, - ACTIONS(2518), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(2520), 1, - anon_sym_BANG, - ACTIONS(2522), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(2524), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(2526), 1, - anon_sym_dyn, - ACTIONS(2532), 1, + ACTIONS(900), 1, sym_metavariable, - STATE(785), 1, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(2566), 1, + sym_self, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(822), 1, + STATE(1408), 1, sym_generic_type, - STATE(1030), 1, + STATE(1413), 1, sym__type, - STATE(1232), 1, - sym_for_lifetimes, - STATE(2272), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2423), 1, - sym_function_modifiers, - STATE(2526), 1, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2430), 1, sym_lifetime, - STATE(2531), 1, + STATE(2435), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(898), 2, + sym_super, + sym_crate, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + STATE(1425), 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(884), 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, + [12199] = 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(878), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_default, + ACTIONS(888), 1, + anon_sym_union, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(894), 1, + anon_sym_AMP, + ACTIONS(900), 1, + sym_metavariable, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, + sym_scoped_type_identifier, + STATE(1408), 1, + sym_generic_type, + STATE(2146), 1, + sym_scoped_identifier, + STATE(2226), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2532), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2530), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1108), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86218,7 +83719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2510), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86236,7 +83737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [12328] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -86253,57 +83754,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(2578), 1, + ACTIONS(2339), 1, sym_identifier, - STATE(1230), 1, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, sym_for_lifetimes, - STATE(1532), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1686), 1, - sym__type, - STATE(1692), 1, + STATE(1408), 1, sym_generic_type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2236), 1, + sym__type, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86315,7 +83816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86333,7 +83834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, + [12457] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -86350,57 +83851,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2082), 1, + STATE(1688), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86412,7 +83913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86430,7 +83931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + [12586] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -86447,57 +83948,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2100), 1, + STATE(2025), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86509,7 +84010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86527,7 +84028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12973] = 32, + [12715] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -86544,57 +84045,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2177), 1, + STATE(1729), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86606,7 +84107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86624,7 +84125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13102] = 32, + [12844] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -86641,57 +84142,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, - sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + ACTIONS(2568), 1, + sym_identifier, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1550), 1, sym_scoped_type_identifier, - STATE(1413), 1, - sym_generic_type, - STATE(1688), 1, + STATE(1673), 1, sym__type, - STATE(2354), 1, + STATE(1701), 1, + sym_generic_type, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86703,7 +84204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86721,7 +84222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13231] = 32, + [12973] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -86738,57 +84239,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1929), 1, + STATE(1692), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86800,7 +84301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86818,7 +84319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13360] = 32, + [13102] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -86835,57 +84336,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1911), 1, + STATE(1694), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86897,7 +84398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86915,7 +84416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13489] = 32, + [13231] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -86932,57 +84433,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(1822), 1, + STATE(2054), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -86994,7 +84495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87012,7 +84513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13618] = 32, + [13360] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -87029,57 +84530,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, - ACTIONS(900), 1, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2310), 1, + STATE(2041), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -87091,7 +84592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87109,7 +84610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13747] = 32, + [13489] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -87126,57 +84627,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(726), 1, anon_sym_dyn, - ACTIONS(890), 1, + ACTIONS(878), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(898), 1, + ACTIONS(886), 1, anon_sym_default, + ACTIONS(888), 1, + anon_sym_union, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(894), 1, + anon_sym_AMP, ACTIONS(900), 1, + sym_metavariable, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, + sym_scoped_type_identifier, + STATE(1408), 1, + sym_generic_type, + STATE(1825), 1, + sym__type, + STATE(2146), 1, + sym_scoped_identifier, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + STATE(1425), 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(884), 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, + [13618] = 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(878), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_default, + ACTIONS(888), 1, anon_sym_union, - ACTIONS(904), 1, + ACTIONS(892), 1, anon_sym_COLON_COLON, - ACTIONS(906), 1, + ACTIONS(894), 1, anon_sym_AMP, - ACTIONS(912), 1, + ACTIONS(900), 1, sym_metavariable, - ACTIONS(2349), 1, + ACTIONS(2339), 1, sym_identifier, - ACTIONS(2353), 1, + ACTIONS(2343), 1, anon_sym_SQUOTE, - STATE(1230), 1, + STATE(1218), 1, sym_for_lifetimes, - STATE(1375), 1, + STATE(1363), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1408), 1, sym_generic_type, - STATE(2129), 1, + STATE(1971), 1, sym__type, - STATE(2354), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2369), 1, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2430), 1, + sym_lifetime, + STATE(2435), 1, sym_function_modifiers, - STATE(2416), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + STATE(1425), 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(884), 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, + [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(878), 1, + anon_sym_LPAREN, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, + anon_sym_default, + ACTIONS(888), 1, + anon_sym_union, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(894), 1, + anon_sym_AMP, + ACTIONS(900), 1, + sym_metavariable, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1363), 1, + sym_scoped_type_identifier, + STATE(1408), 1, + sym_generic_type, + STATE(2072), 1, + sym__type, + STATE(2146), 1, + sym_scoped_identifier, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2430), 1, sym_lifetime, + STATE(2435), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, + STATE(1569), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - STATE(1422), 11, + STATE(1425), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -87188,7 +84883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(896), 17, + ACTIONS(884), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87210,26 +84905,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 18, + ACTIONS(2572), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2580), 39, + ACTIONS(2570), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87261,6 +84955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -87273,7 +84968,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(872), 17, + ACTIONS(2576), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -87291,7 +84986,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(870), 40, + ACTIONS(2574), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87336,7 +85031,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 17, + ACTIONS(872), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -87354,7 +85049,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2582), 40, + ACTIONS(870), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87399,25 +85094,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 17, + ACTIONS(408), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2586), 40, + ACTIONS(2578), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87449,7 +85145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -87462,7 +85157,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1686), 15, + ACTIONS(1296), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -87478,7 +85173,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(1298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87518,22 +85213,22 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [14202] = 9, - ACTIONS(2592), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2596), 1, + ACTIONS(2586), 1, anon_sym_BANG, - ACTIONS(2598), 1, + ACTIONS(2588), 1, anon_sym_COLON_COLON, - ACTIONS(2600), 1, + ACTIONS(2590), 1, anon_sym_LT2, - STATE(804), 1, + STATE(800), 1, sym_type_arguments, - STATE(829), 1, + STATE(819), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 17, + ACTIONS(2584), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87551,7 +85246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2590), 27, + ACTIONS(2580), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -87580,20 +85275,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14273] = 8, - ACTIONS(2592), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2598), 1, + ACTIONS(2588), 1, anon_sym_COLON_COLON, - ACTIONS(2600), 1, + ACTIONS(2590), 1, anon_sym_LT2, - STATE(804), 1, + STATE(800), 1, sym_type_arguments, - STATE(829), 1, + STATE(819), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 17, + ACTIONS(2594), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87611,7 +85306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2602), 27, + ACTIONS(2592), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -87640,20 +85335,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14341] = 8, - ACTIONS(2592), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2598), 1, + ACTIONS(2588), 1, anon_sym_COLON_COLON, - ACTIONS(2600), 1, + ACTIONS(2590), 1, anon_sym_LT2, - STATE(804), 1, + STATE(800), 1, sym_type_arguments, - STATE(829), 1, + STATE(819), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 17, + ACTIONS(2598), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87671,7 +85366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2606), 27, + ACTIONS(2596), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -87700,18 +85395,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14409] = 7, - ACTIONS(2592), 1, + ACTIONS(2582), 1, anon_sym_LPAREN, - ACTIONS(2600), 1, + ACTIONS(2590), 1, anon_sym_LT2, - STATE(803), 1, + STATE(799), 1, sym_type_arguments, - STATE(825), 1, + STATE(801), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 17, + ACTIONS(2602), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87729,7 +85424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2610), 27, + ACTIONS(2600), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -87758,14 +85453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14474] = 5, - ACTIONS(2618), 1, + ACTIONS(2608), 1, anon_sym_BANG, - ACTIONS(2620), 1, + ACTIONS(2610), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 17, + ACTIONS(2606), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87783,7 +85478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(2604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87814,18 +85509,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14535] = 7, - ACTIONS(2592), 1, + ACTIONS(2586), 1, + anon_sym_BANG, + ACTIONS(2612), 1, + anon_sym_LBRACE, + ACTIONS(2614), 1, + anon_sym_COLON_COLON, + STATE(1020), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(566), 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(568), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2600), 1, - anon_sym_LT2, - STATE(803), 1, - sym_type_arguments, - STATE(825), 1, - sym_parameters, + 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14600] = 5, + ACTIONS(2620), 1, + anon_sym_BANG, + ACTIONS(2622), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 17, + ACTIONS(2618), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87843,8 +85592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2622), 27, + ACTIONS(2616), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87856,6 +85606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87871,15 +85622,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14600] = 5, - ACTIONS(2630), 1, - anon_sym_BANG, - ACTIONS(2632), 1, - anon_sym_COLON_COLON, + [14661] = 7, + ACTIONS(2582), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LT2, + STATE(799), 1, + sym_type_arguments, + STATE(801), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 17, + ACTIONS(2626), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87897,9 +85652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2624), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87911,7 +85665,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87927,19 +85680,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14661] = 7, - ACTIONS(2596), 1, - anon_sym_BANG, - ACTIONS(2634), 1, - anon_sym_LBRACE, - ACTIONS(2636), 1, - anon_sym_COLON_COLON, - STATE(1050), 1, - sym_field_initializer_list, + [14726] = 7, + ACTIONS(2582), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LT2, + STATE(799), 1, + sym_type_arguments, + STATE(801), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(2630), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87950,15 +85703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(584), 29, + ACTIONS(2628), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -87973,7 +85728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -87983,17 +85737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14726] = 5, - ACTIONS(2642), 1, + [14791] = 5, + ACTIONS(2636), 1, anon_sym_BANG, - ACTIONS(2644), 1, + ACTIONS(2638), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 17, + ACTIONS(2634), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88011,7 +85764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2638), 29, + ACTIONS(2632), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88041,19 +85794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14787] = 7, - ACTIONS(2592), 1, - anon_sym_LPAREN, - ACTIONS(2600), 1, - anon_sym_LT2, - STATE(803), 1, - sym_type_arguments, - STATE(825), 1, - sym_parameters, + [14852] = 5, + ACTIONS(2644), 1, + anon_sym_BANG, + ACTIONS(2646), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 17, + ACTIONS(2642), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88071,8 +85820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2646), 27, + ACTIONS(2640), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -88084,6 +85834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88099,15 +85850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14852] = 5, - ACTIONS(2654), 1, - anon_sym_BANG, - ACTIONS(2656), 1, - anon_sym_COLON_COLON, + [14913] = 5, + ACTIONS(2652), 1, + anon_sym_SQUOTE, + STATE(1073), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 17, + ACTIONS(2650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88118,14 +85869,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(2650), 29, + ACTIONS(2648), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88139,12 +85888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -88154,17 +85903,27 @@ 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, - [14913] = 4, - ACTIONS(2658), 1, - anon_sym_LBRACE, + [14973] = 6, + ACTIONS(2660), 1, + anon_sym_BANG, + ACTIONS(2662), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 16, + ACTIONS(2658), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2656), 16, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88178,19 +85937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2644), 30, + ACTIONS(2654), 23, 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_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -88209,64 +85961,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14971] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1582), 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(1584), 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, - [15027] = 3, + [15035] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 9, + ACTIONS(1574), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88276,7 +85975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1304), 38, + ACTIONS(1576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88315,17 +86014,16 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15083] = 5, + [15091] = 4, ACTIONS(2664), 1, - anon_sym_SQUOTE, - STATE(939), 1, - sym_loop_label, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2662), 15, + ACTIONS(2608), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -88339,11 +86037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2660), 30, + ACTIONS(2610), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -88352,6 +86049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -88370,123 +86068,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15143] = 4, - ACTIONS(2666), 1, - anon_sym_LBRACE, + [15149] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 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(2632), 30, + ACTIONS(1436), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - 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, - [15201] = 6, - ACTIONS(2674), 1, - anon_sym_BANG, - ACTIONS(2676), 1, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2672), 6, + sym_metavariable, + ACTIONS(1438), 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, - ACTIONS(2670), 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(2668), 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, - [15263] = 4, - ACTIONS(2678), 1, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15205] = 4, + ACTIONS(2666), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 16, + ACTIONS(2620), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -88503,7 +86144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2656), 30, + ACTIONS(2622), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88534,11 +86175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15321] = 3, + [15263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 16, + ACTIONS(2608), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -88555,7 +86196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2644), 31, + ACTIONS(2610), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88587,11 +86228,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [15319] = 4, + ACTIONS(2668), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2636), 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(2638), 30, + 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_else, + 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, [15377] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1714), 9, + ACTIONS(1094), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88601,7 +86296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(1096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88644,7 +86339,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 9, + ACTIONS(1142), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88654,7 +86349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88693,13 +86388,66 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15489] = 4, - ACTIONS(2680), 1, + [15489] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1996), 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(1998), 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, + [15545] = 4, + ACTIONS(2670), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 16, + ACTIONS(2644), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -88716,7 +86464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 30, + ACTIONS(2646), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88747,64 +86495,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15547] = 3, + [15603] = 4, + ACTIONS(2676), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1910), 9, + ACTIONS(2674), 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(2672), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 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(2604), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15715] = 4, + ACTIONS(2678), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1912), 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, - [15603] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88820,7 +86622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2682), 31, + ACTIONS(2624), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88833,7 +86635,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -88852,11 +86653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15658] = 3, + [15772] = 4, + ACTIONS(2678), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(2602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88872,7 +86675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2686), 31, + ACTIONS(2600), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88885,7 +86688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -88904,13 +86706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15713] = 4, - ACTIONS(2694), 1, + [15829] = 4, + ACTIONS(2684), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, + ACTIONS(2682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88926,7 +86728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2690), 30, + ACTIONS(2680), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88957,11 +86759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15770] = 3, + [15886] = 5, + ACTIONS(2686), 1, + anon_sym_else, + STATE(1030), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(806), 15, + ACTIONS(394), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88977,7 +86783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(808), 31, + ACTIONS(392), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88986,11 +86792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89009,13 +86813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15825] = 4, - ACTIONS(2696), 1, - anon_sym_COLON_COLON, + [15945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89031,7 +86833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 30, + ACTIONS(2688), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89044,6 +86846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89062,13 +86865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15882] = 4, - ACTIONS(2698), 1, - anon_sym_COLON_COLON, + [16000] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89084,7 +86885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 30, + ACTIONS(2692), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89097,6 +86898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89115,11 +86917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15939] = 3, + [16055] = 4, + ACTIONS(2700), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 15, + ACTIONS(2698), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89135,7 +86939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2700), 31, + ACTIONS(2696), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89147,7 +86951,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -89167,10 +86970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15994] = 3, + [16112] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2704), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, ACTIONS(2706), 15, anon_sym_PLUS, anon_sym_STAR, @@ -89187,11 +86993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2704), 31, + 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, @@ -89199,7 +87004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -89219,15 +87023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16049] = 5, - ACTIONS(2710), 1, - anon_sym_LPAREN, - STATE(936), 1, - sym_arguments, + [16169] = 5, + ACTIONS(2662), 1, + anon_sym_COLON_COLON, + ACTIONS(2708), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89243,10 +87047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2708), 29, + ACTIONS(2654), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -89273,11 +87077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16108] = 3, + [16228] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + ACTIONS(2712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89293,7 +87097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2714), 31, + ACTIONS(2710), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89325,65 +87129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16163] = 5, - ACTIONS(2596), 1, - anon_sym_BANG, - ACTIONS(2718), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(586), 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(584), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16222] = 3, + [16283] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89399,7 +87149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2720), 31, + ACTIONS(2714), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89411,8 +87161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89431,13 +87181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16277] = 4, - ACTIONS(2724), 1, + [16338] = 4, + ACTIONS(2718), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89453,7 +87203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 30, + ACTIONS(568), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89484,15 +87234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16334] = 5, - ACTIONS(2726), 1, - anon_sym_else, - STATE(1064), 1, - sym_else_clause, + [16395] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(396), 15, + ACTIONS(2722), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89508,7 +87254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(394), 29, + ACTIONS(2720), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89520,6 +87266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89538,11 +87286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16393] = 3, + [16450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89558,7 +87306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2728), 31, + ACTIONS(2724), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89570,8 +87318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89590,11 +87338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16448] = 3, + [16505] = 5, + ACTIONS(2730), 1, + anon_sym_LPAREN, + STATE(865), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(2732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89610,9 +87362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 31, + ACTIONS(2728), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -89622,7 +87373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -89642,13 +87392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16503] = 4, - ACTIONS(2736), 1, - anon_sym_COLON_COLON, + [16564] = 4, + ACTIONS(2738), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(2736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89664,7 +87414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(584), 30, + ACTIONS(2734), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89695,11 +87445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16560] = 3, + [16621] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 17, + ACTIONS(2742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89710,14 +87460,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(2638), 29, + ACTIONS(2740), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89730,58 +87478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_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, - [16615] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2740), 2, - anon_sym_LBRACE, anon_sym_COLON_COLON, - 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(2738), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -89800,13 +87497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16672] = 4, - ACTIONS(2724), 1, + [16676] = 4, + ACTIONS(2678), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89822,7 +87519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 30, + ACTIONS(2628), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89853,7 +87550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16729] = 4, + [16733] = 4, ACTIONS(2748), 1, anon_sym_DASH_GT, ACTIONS(3), 2, @@ -89906,63 +87603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16786] = 5, - ACTIONS(2726), 1, - anon_sym_else, - STATE(1034), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(502), 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(500), 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, - [16845] = 4, - ACTIONS(2754), 1, - anon_sym_DASH_GT, + [16790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -89982,7 +87623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2750), 30, + ACTIONS(2750), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89994,6 +87635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -90013,63 +87655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16902] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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), 31, - 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_else, + [16845] = 5, + ACTIONS(2586), 1, + anon_sym_BANG, + ACTIONS(2754), 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, - [16957] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 15, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90085,11 +87679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2760), 31, + ACTIONS(568), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -90098,7 +87691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -90117,11 +87709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17012] = 3, + [16904] = 4, + ACTIONS(2756), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(2630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90137,7 +87731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 31, + ACTIONS(2628), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90150,7 +87744,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -90169,13 +87762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17067] = 4, - ACTIONS(2772), 1, - anon_sym_DASH_GT, + [16961] = 4, + ACTIONS(2758), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90191,7 +87784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 30, + ACTIONS(2628), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90222,15 +87815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17124] = 5, - ACTIONS(2676), 1, - anon_sym_COLON_COLON, - ACTIONS(2774), 1, - anon_sym_BANG, + [17018] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(2760), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2706), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90246,7 +87838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 29, + ACTIONS(2702), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90276,14 +87868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17183] = 4, + [17075] = 4, + ACTIONS(2766), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2742), 15, + ACTIONS(2764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90299,10 +87890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2738), 29, + ACTIONS(2762), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -90329,11 +87921,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17240] = 3, + [17132] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2780), 15, + ACTIONS(842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90349,7 +87941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2778), 31, + ACTIONS(844), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90358,10 +87950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -90381,13 +87973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17295] = 4, - ACTIONS(2724), 1, - anon_sym_COLON_COLON, + [17187] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 15, + ACTIONS(2770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90403,7 +87993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2610), 30, + ACTIONS(2768), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90416,6 +88006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -90434,13 +88025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17352] = 4, - ACTIONS(2786), 1, - anon_sym_DASH_GT, + [17242] = 5, + ACTIONS(2686), 1, + anon_sym_else, + STATE(830), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 15, + ACTIONS(502), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90456,7 +88049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2782), 30, + ACTIONS(500), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90468,7 +88061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -90487,13 +88079,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17409] = 4, - ACTIONS(2792), 1, + [17301] = 4, + ACTIONS(2776), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 15, + ACTIONS(2774), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90509,7 +88101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2788), 30, + ACTIONS(2772), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90540,13 +88132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17466] = 4, - ACTIONS(2798), 1, - anon_sym_DASH_GT, + [17358] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2796), 15, + ACTIONS(2780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90562,7 +88152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2794), 30, + ACTIONS(2778), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90574,6 +88164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -90593,62 +88184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17523] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1686), 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(1688), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17577] = 3, + [17413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2407), 15, + ACTIONS(2784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90664,7 +88204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2409), 30, + ACTIONS(2782), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90676,6 +88216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -90695,13 +88236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17631] = 4, - ACTIONS(2676), 1, - anon_sym_COLON_COLON, + [17468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(2788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90717,10 +88256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 29, + ACTIONS(2786), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -90729,6 +88269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -90747,164 +88288,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17687] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1120), 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(1122), 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, - [17741] = 3, + [17523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1108), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2792), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1110), 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, - [17795] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1104), 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(2790), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1106), 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, - [17849] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17577] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(1508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90912,7 +88351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1510), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90951,11 +88390,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17903] = 3, + [17631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2002), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90963,7 +88402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2004), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91002,11 +88441,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17957] = 3, + [17685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91022,7 +88461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2800), 30, + ACTIONS(636), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91053,11 +88492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18011] = 3, + [17739] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91065,7 +88504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91104,11 +88543,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18065] = 3, + [17793] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(632), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91116,7 +88555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(634), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91155,11 +88594,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18119] = 3, + [17847] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1990), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91167,7 +88606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91206,317 +88645,267 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18173] = 3, + [17901] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2796), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1988), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18227] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1982), 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(2794), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1984), 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, - [18281] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17955] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, + ACTIONS(2800), 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(2798), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1964), 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, - [18335] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18009] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1914), 7, + ACTIONS(2804), 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(2802), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1916), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18389] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18063] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1906), 7, + ACTIONS(2808), 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(2806), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18117] = 4, + ACTIONS(2662), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1908), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18443] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1902), 7, + ACTIONS(2656), 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(2654), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1904), 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, - [18497] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18173] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 15, + ACTIONS(2812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91532,7 +88921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2804), 30, + ACTIONS(2810), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91563,11 +88952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18551] = 3, + [18227] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(1348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91575,7 +88964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(1350), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91614,11 +89003,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18605] = 3, + [18281] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(1344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91626,7 +89015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(1346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91665,11 +89054,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18659] = 3, + [18335] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(1336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91677,7 +89066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(1338), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91716,11 +89105,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18713] = 3, + [18389] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1754), 7, + ACTIONS(1328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91728,7 +89117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(1330), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91767,11 +89156,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18767] = 3, + [18443] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1746), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91779,7 +89168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91818,11 +89207,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18821] = 3, + [18497] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1742), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91830,7 +89219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91869,11 +89258,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18875] = 3, + [18551] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1096), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91881,7 +89270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1098), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91920,62 +89309,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18929] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(630), 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(628), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18983] = 3, + [18605] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1100), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91983,7 +89321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1102), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92022,11 +89360,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19037] = 3, + [18659] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1698), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92034,7 +89372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92073,11 +89411,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19091] = 3, + [18713] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1650), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92085,7 +89423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1652), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92124,11 +89462,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19145] = 3, + [18767] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1646), 7, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92136,7 +89474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1648), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92175,11 +89513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19199] = 3, + [18821] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1642), 7, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92187,7 +89525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1644), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92226,11 +89564,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19253] = 3, + [18875] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92238,7 +89576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1718), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92277,11 +89615,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19307] = 3, + [18929] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92289,7 +89627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92328,11 +89666,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19361] = 3, + [18983] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(1720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92340,7 +89678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92379,11 +89717,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19415] = 3, + [19037] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92391,7 +89729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92430,113 +89768,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19469] = 3, + [19091] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2816), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1570), 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, - [19523] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1552), 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(2814), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1554), 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, - [19577] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19145] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92544,7 +89831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1546), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92583,11 +89870,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19631] = 3, + [19199] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92595,7 +89882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92634,62 +89921,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19685] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(658), 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(656), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19739] = 3, + [19253] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1462), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92697,7 +89933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1464), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92736,11 +89972,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19793] = 3, + [19307] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(540), 7, + ACTIONS(1612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92748,7 +89984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(542), 38, + ACTIONS(1614), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92787,11 +90023,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19847] = 3, + [19361] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1458), 7, + ACTIONS(1320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92799,7 +90035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1460), 38, + ACTIONS(1322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92838,11 +90074,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19901] = 3, + [19415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1450), 7, + ACTIONS(1586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92850,7 +90086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1452), 38, + ACTIONS(1588), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92889,11 +90125,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19955] = 3, + [19469] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1446), 7, + ACTIONS(1578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92901,7 +90137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1448), 38, + ACTIONS(1580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92940,11 +90176,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20009] = 3, + [19523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1442), 7, + ACTIONS(1566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92952,7 +90188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1444), 38, + ACTIONS(1568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92991,11 +90227,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20063] = 3, + [19577] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 15, + ACTIONS(2820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93011,7 +90247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2808), 30, + ACTIONS(2818), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93042,11 +90278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20117] = 3, + [19631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2814), 15, + ACTIONS(2824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93062,7 +90298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2812), 30, + ACTIONS(2822), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93093,11 +90329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20171] = 3, + [19685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 7, + ACTIONS(1312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93105,7 +90341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1428), 38, + ACTIONS(1314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93144,11 +90380,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20225] = 3, + [19739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(622), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(620), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19793] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93156,7 +90443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93195,11 +90482,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20279] = 3, + [19847] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 7, + ACTIONS(1562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93207,7 +90494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1412), 38, + ACTIONS(1564), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93246,11 +90533,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20333] = 3, + [19901] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93258,7 +90545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1290), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93297,62 +90584,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20387] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2818), 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(2816), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20441] = 3, + [19955] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(1284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93360,7 +90596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93399,11 +90635,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20495] = 3, + [20009] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(1554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93411,7 +90647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(1556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93450,266 +90686,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20549] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2822), 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(2820), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20603] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2826), 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(2824), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20657] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2830), 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(2828), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20711] = 3, + [20063] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 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(2832), 30, + ACTIONS(1550), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20765] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2838), 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(2836), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20819] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1552), 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, + [20117] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93717,7 +90749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93756,11 +90788,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20873] = 3, + [20171] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2399), 15, + ACTIONS(2828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93776,7 +90808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2401), 30, + ACTIONS(2826), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93807,11 +90839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20927] = 3, + [20225] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(516), 7, + ACTIONS(1546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93819,7 +90851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(518), 38, + ACTIONS(1548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93858,62 +90890,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20981] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2842), 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(2840), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21035] = 3, + [20279] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(1264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93921,7 +90902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1352), 38, + ACTIONS(1266), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93960,11 +90941,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21089] = 3, + [20333] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93972,7 +90953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94011,63 +90992,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21143] = 4, - ACTIONS(2844), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(586), 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(584), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21199] = 3, + [20387] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94075,7 +91004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94114,11 +91043,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21253] = 3, + [20441] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94126,7 +91055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1540), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94165,11 +91094,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21307] = 3, + [20495] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(594), 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(592), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20549] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94177,7 +91157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1528), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94216,11 +91196,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21361] = 3, + [20603] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(2832), 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(2830), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20657] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94228,7 +91259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94267,11 +91298,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21415] = 3, + [20711] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(536), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94279,7 +91310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(538), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94318,62 +91349,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21469] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21523] = 3, + [20765] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1196), 7, + ACTIONS(1520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94381,7 +91361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1198), 38, + ACTIONS(1522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94420,11 +91400,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21577] = 3, + [20819] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1184), 7, + ACTIONS(1516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94432,7 +91412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1186), 38, + ACTIONS(1518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94471,11 +91451,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21631] = 3, + [20873] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2848), 15, + ACTIONS(2836), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94491,7 +91471,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2846), 30, + ACTIONS(2834), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20927] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2840), 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(2838), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94522,11 +91553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21685] = 3, + [20981] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1160), 7, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94534,7 +91565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1162), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94573,11 +91604,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21739] = 3, + [21035] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(1780), 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(1782), 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, + [21089] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94593,7 +91675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2708), 30, + ACTIONS(2842), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94624,11 +91706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21793] = 3, + [21143] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2852), 15, + ACTIONS(626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94644,7 +91726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2850), 30, + ACTIONS(624), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94675,11 +91757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21847] = 3, + [21197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1152), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94687,7 +91769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1154), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94726,11 +91808,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21901] = 3, + [21251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1148), 7, + ACTIONS(630), 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(628), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21305] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94738,7 +91871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1150), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94777,11 +91910,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21955] = 3, + [21359] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1116), 7, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94789,7 +91922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1118), 38, + ACTIONS(1842), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94828,113 +91961,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22009] = 3, + [21413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2856), 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(2854), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22063] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2860), 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(2858), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22117] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1140), 7, + ACTIONS(1504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94942,7 +91973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1142), 38, + ACTIONS(1506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94981,11 +92012,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22171] = 3, + [21467] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1144), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94993,7 +92024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1146), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95032,62 +92063,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22225] = 3, + [21521] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2433), 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(2435), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22279] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1168), 7, + ACTIONS(1492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95095,7 +92075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1170), 38, + ACTIONS(1494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95134,11 +92114,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22333] = 3, + [21575] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1172), 7, + ACTIONS(1740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95146,7 +92126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1174), 38, + ACTIONS(1742), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95185,11 +92165,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22387] = 3, + [21629] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1180), 7, + ACTIONS(1484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95197,7 +92177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1182), 38, + ACTIONS(1486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95236,11 +92216,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22441] = 3, + [21683] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95248,7 +92228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95287,11 +92267,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22495] = 3, + [21737] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95299,7 +92279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95338,11 +92318,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22549] = 3, + [21791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95350,7 +92330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1746), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95389,62 +92369,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22603] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2864), 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(2862), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22657] = 3, + [21845] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 7, + ACTIONS(1748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95452,7 +92381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1336), 38, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95491,11 +92420,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22711] = 3, + [21899] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95503,7 +92432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95542,62 +92471,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22765] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2868), 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(2866), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22819] = 3, + [21953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95605,7 +92483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95644,62 +92522,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22873] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2872), 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(2870), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22927] = 3, + [22007] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95707,7 +92534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95746,62 +92573,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22981] = 3, + [22061] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 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(2874), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23035] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2880), 15, + ACTIONS(2848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95817,7 +92593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2878), 30, + ACTIONS(2846), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95848,11 +92624,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23089] = 3, + [22115] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 7, + 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), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22169] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95860,7 +92687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95899,11 +92726,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23143] = 3, + [22223] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1454), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95911,7 +92738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1456), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95950,11 +92777,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23197] = 3, + [22277] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1474), 7, + ACTIONS(1668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95962,7 +92789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1476), 38, + ACTIONS(1670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96001,11 +92828,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23251] = 3, + [22331] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96013,7 +92840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1754), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96052,11 +92879,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23305] = 3, + [22385] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1658), 7, + ACTIONS(1416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96064,7 +92891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1660), 38, + ACTIONS(1418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96103,11 +92930,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23359] = 3, + [22439] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1662), 7, + ACTIONS(1220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96115,7 +92942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(1222), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96154,11 +92981,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23413] = 3, + [22493] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1678), 7, + ACTIONS(1352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96166,7 +92993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1680), 38, + ACTIONS(1354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96205,11 +93032,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23467] = 3, + [22547] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2884), 15, + ACTIONS(560), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96225,7 +93052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2882), 30, + ACTIONS(558), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96256,113 +93083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23521] = 3, + [22601] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1682), 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(1684), 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, - [23575] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1690), 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(1692), 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, - [23629] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1706), 7, + ACTIONS(1216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96370,7 +93095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(1218), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96409,11 +93134,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23683] = 3, + [22655] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1710), 7, + ACTIONS(1208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96421,7 +93146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(1210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96460,11 +93185,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23737] = 3, + [22709] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1734), 7, + ACTIONS(1400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96472,7 +93197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(1402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96511,11 +93236,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23791] = 3, + [22763] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 7, + ACTIONS(1364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96523,7 +93248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(622), 38, + ACTIONS(1366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96562,11 +93287,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23845] = 3, + [22817] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(640), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96574,7 +93299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(642), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96613,62 +93338,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23899] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(626), 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(624), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23953] = 3, + [22871] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96676,7 +93350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1882), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96715,11 +93389,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24007] = 3, + [22925] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96727,7 +93401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1194), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96766,11 +93440,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24061] = 3, + [22979] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1922), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96778,7 +93452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1924), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96810,69 +93484,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [24115] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2888), 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(2886), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24169] = 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23033] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(1396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96880,7 +93503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96919,11 +93542,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24223] = 3, + [23087] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(1384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96931,7 +93554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96970,11 +93593,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24277] = 3, + [23141] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96982,7 +93605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97021,11 +93644,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24331] = 3, + [23195] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97033,7 +93656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97072,62 +93695,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24385] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2892), 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(2890), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24439] = 3, + [23249] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1540), 7, + ACTIONS(1368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97135,7 +93707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1542), 38, + ACTIONS(1370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97174,11 +93746,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24493] = 3, + [23303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97186,7 +93758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97225,317 +93797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24547] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2896), 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(2894), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24601] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2900), 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(2898), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24655] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2904), 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(2902), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24709] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2908), 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(2906), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24763] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(602), 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(600), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24817] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(594), 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(592), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24871] = 3, + [23357] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97543,7 +93809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97582,11 +93848,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24925] = 3, + [23411] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 7, + ACTIONS(1360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97594,7 +93860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(1362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97633,11 +93899,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24979] = 3, + [23465] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97645,7 +93911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1774), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97684,11 +93950,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25033] = 3, + [23519] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97696,7 +93962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1358), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97735,62 +94001,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25087] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2912), 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(2910), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25141] = 3, + [23573] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97798,7 +94013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97837,62 +94052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25195] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2916), 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(2914), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25249] = 3, + [23627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97900,7 +94064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97939,62 +94103,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25303] = 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(2738), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25357] = 3, + [23681] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1112), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98002,7 +94115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1114), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98041,62 +94154,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25411] = 3, + [23735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25465] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1216), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98104,7 +94166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98143,11 +94205,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25519] = 3, + [23789] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1718), 7, + ACTIONS(1316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98155,7 +94217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1720), 38, + ACTIONS(1318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98194,11 +94256,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25573] = 3, + [23843] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + ACTIONS(1300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98206,7 +94268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(1302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98245,11 +94307,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25627] = 3, + [23897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98257,7 +94319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98296,62 +94358,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25681] = 3, + [23951] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 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(588), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25735] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1722), 7, + ACTIONS(554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98359,7 +94370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1724), 38, + ACTIONS(556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98398,11 +94409,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25789] = 3, + [24005] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1560), 7, + ACTIONS(532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98410,7 +94421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1562), 38, + ACTIONS(534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98449,11 +94460,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25843] = 3, + [24059] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98461,7 +94472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98500,11 +94511,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25897] = 3, + [24113] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 7, + ACTIONS(1380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98512,7 +94523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(1382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98551,11 +94562,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25951] = 3, + [24167] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1926), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98563,7 +94574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1928), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98602,62 +94613,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26005] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2920), 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(2918), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26059] = 3, + [24221] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98665,7 +94625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98704,11 +94664,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26113] = 3, + [24275] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 7, + ACTIONS(1292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98716,7 +94676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(1294), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98755,11 +94715,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26167] = 3, + [24329] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + ACTIONS(1280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98767,7 +94727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(1282), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98806,11 +94766,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26221] = 3, + [24383] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1670), 7, + ACTIONS(1260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98818,7 +94778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(1262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98857,11 +94817,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26275] = 3, + [24437] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1694), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98869,7 +94829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98908,11 +94868,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26329] = 3, + [24491] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98920,7 +94880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1254), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98959,11 +94919,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26383] = 3, + [24545] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98971,7 +94931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99010,7 +94970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26437] = 3, + [24599] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -99061,62 +95021,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26491] = 3, + [24653] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 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(2922), 30, + ACTIONS(1792), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26545] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1794), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24707] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1200), 7, + ACTIONS(1248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99124,7 +95084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1202), 38, + ACTIONS(1250), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99163,11 +95123,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26599] = 3, + [24761] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1192), 7, + ACTIONS(1244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99175,7 +95135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1194), 38, + ACTIONS(1246), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99214,11 +95174,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26653] = 3, + [24815] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1128), 7, + ACTIONS(1236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99226,7 +95186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1130), 38, + ACTIONS(1238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99265,11 +95225,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26707] = 3, + [24869] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1124), 7, + ACTIONS(1228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99277,7 +95237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1126), 38, + ACTIONS(1230), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99316,11 +95276,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26761] = 3, + [24923] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1702), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99328,7 +95288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99367,11 +95327,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26815] = 3, + [24977] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1136), 7, + ACTIONS(1232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99379,7 +95339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1138), 38, + ACTIONS(1234), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99418,11 +95378,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26869] = 3, + [25031] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1156), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99430,7 +95390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1158), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99469,11 +95429,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26923] = 3, + [25085] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1164), 7, + ACTIONS(1240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99481,7 +95441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1166), 38, + ACTIONS(1242), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99520,11 +95480,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26977] = 3, + [25139] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1176), 7, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99532,7 +95492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1178), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99571,11 +95531,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27031] = 3, + [25193] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99583,7 +95543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99622,11 +95582,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27085] = 3, + [25247] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + ACTIONS(1268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99634,7 +95594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1270), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99673,11 +95633,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27139] = 3, + [25301] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99685,7 +95645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1246), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99724,11 +95684,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27193] = 3, + [25355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(2852), 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(2850), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25409] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99736,7 +95747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1276), 38, + ACTIONS(1278), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99775,11 +95786,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27247] = 3, + [25463] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1726), 7, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99787,7 +95798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99826,62 +95837,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27301] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(678), 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(676), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27355] = 3, + [25517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(1332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99889,7 +95849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(1334), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99928,62 +95888,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27409] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2928), 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(2926), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27463] = 3, + [25571] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(1340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99991,7 +95900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1404), 38, + ACTIONS(1342), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100030,62 +95939,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27517] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2932), 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(2930), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27571] = 3, + [25625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100093,7 +95951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1408), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100132,62 +95990,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27625] = 3, + [25679] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2936), 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(2934), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27679] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2936), 15, + ACTIONS(618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100203,7 +96010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2934), 30, + ACTIONS(616), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100234,11 +96041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27733] = 3, + [25733] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100246,7 +96053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1436), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100285,11 +96092,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27787] = 3, + [25787] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1438), 7, + ACTIONS(1428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100297,7 +96104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1440), 38, + ACTIONS(1430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100336,11 +96143,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27841] = 3, + [25841] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100348,7 +96155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(1434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100387,113 +96194,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27895] = 3, + [25895] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2940), 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(2938), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27949] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2944), 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(2942), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28003] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2948), 15, + ACTIONS(2856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100509,7 +96214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2946), 30, + ACTIONS(2854), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100540,11 +96245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28057] = 3, + [25949] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1730), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100552,7 +96257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100591,113 +96296,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28111] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2952), 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(2950), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28165] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(650), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(648), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28219] = 3, + [26003] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100705,7 +96308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100744,11 +96347,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28273] = 3, + [26057] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100756,7 +96359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100795,11 +96398,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28327] = 3, + [26111] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(2461), 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(2463), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26165] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100807,7 +96461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1798), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100846,11 +96500,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28381] = 3, + [26219] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100858,7 +96512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1328), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100897,11 +96551,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28435] = 3, + [26273] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1556), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100909,7 +96563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1558), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100948,11 +96602,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28489] = 3, + [26327] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, + ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100968,7 +96622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(664), 30, + ACTIONS(644), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100999,11 +96653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28543] = 3, + [26381] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(538), 15, + ACTIONS(2860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101019,7 +96673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(536), 30, + ACTIONS(2858), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101050,11 +96704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28597] = 3, + [26435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1750), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101062,7 +96716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101101,11 +96755,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28651] = 3, + [26489] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2026), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101113,7 +96767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2028), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101152,11 +96806,215 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28705] = 3, + [26543] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1762), 7, + ACTIONS(1488), 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(1490), 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, + [26597] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1800), 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(1802), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26651] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1804), 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(1806), 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, + [26705] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1820), 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(1822), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26759] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101164,7 +97022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101203,11 +97061,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28759] = 3, + [26813] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 15, + ACTIONS(2864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101223,7 +97081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2954), 30, + ACTIONS(2862), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101254,11 +97112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28813] = 3, + [26867] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1898), 7, + ACTIONS(1188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101266,7 +97124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1900), 38, + ACTIONS(1190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101305,11 +97163,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28867] = 3, + [26921] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1894), 7, + ACTIONS(668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101317,7 +97175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1896), 38, + ACTIONS(670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101356,11 +97214,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28921] = 3, + [26975] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101368,7 +97226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1092), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101407,11 +97265,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28975] = 3, + [27029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 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(2409), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27083] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1766), 7, + ACTIONS(1496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101419,7 +97328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(1498), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101458,11 +97367,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29029] = 3, + [27137] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2960), 15, + ACTIONS(2868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101478,7 +97387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2958), 30, + ACTIONS(2866), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101509,11 +97418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29083] = 3, + [27191] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(622), 15, + ACTIONS(2868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101529,7 +97438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(620), 30, + ACTIONS(2866), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101560,11 +97469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29137] = 3, + [27245] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(2872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101580,7 +97489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 30, + ACTIONS(2870), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101611,62 +97520,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29191] = 3, + [27299] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1654), 7, + ACTIONS(2876), 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(2874), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27353] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2880), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1656), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29245] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2878), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27407] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(1196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101674,7 +97634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(1198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101713,11 +97673,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29299] = 3, + [27461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(1200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101725,7 +97685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101764,11 +97724,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29353] = 3, + [27515] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101776,7 +97736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101815,11 +97775,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29407] = 3, + [27569] = 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, + 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2964), 15, + ACTIONS(614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101835,7 +97846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2962), 30, + ACTIONS(612), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101866,11 +97877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29461] = 3, + [27677] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(1616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101878,7 +97889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101917,11 +97928,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29515] = 3, + [27731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101929,7 +97940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101968,11 +97979,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29569] = 3, + [27785] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101980,7 +97991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102019,11 +98030,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29623] = 3, + [27839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102031,7 +98042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102070,11 +98081,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29677] = 3, + [27893] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(2884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102090,7 +98101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 30, + ACTIONS(2882), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102121,62 +98132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29731] = 3, + [27947] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1466), 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(1468), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29785] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(670), 15, + ACTIONS(2888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102192,7 +98152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 30, + ACTIONS(2886), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102223,62 +98183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29839] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1430), 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(1432), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29893] = 3, + [28001] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(1296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102286,7 +98195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(1298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102325,11 +98234,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29947] = 3, + [28055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(1086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102337,7 +98246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(1088), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102376,11 +98285,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30001] = 3, + [28109] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 15, + ACTIONS(2892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102396,7 +98305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2610), 30, + ACTIONS(2890), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102427,11 +98336,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30055] = 3, + [28163] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(2020), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102439,7 +98348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(2022), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102478,11 +98387,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30109] = 3, + [28217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2968), 15, + ACTIONS(2896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102498,7 +98407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2966), 30, + ACTIONS(2894), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102529,11 +98438,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30163] = 3, + [28271] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(606), 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(604), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28325] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102541,7 +98501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(1674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102580,11 +98540,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30217] = 3, + [28379] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102592,7 +98552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1384), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102631,11 +98591,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30271] = 3, + [28433] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2972), 15, + ACTIONS(2900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102651,7 +98611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2970), 30, + ACTIONS(2898), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102682,11 +98642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30325] = 3, + [28487] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102702,7 +98662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 30, + ACTIONS(648), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102733,62 +98693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30379] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1470), 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(1472), 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, - [30433] = 3, + [28541] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2976), 15, + ACTIONS(2904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102804,7 +98713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2974), 30, + ACTIONS(2902), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102835,11 +98744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30487] = 3, + [28595] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1478), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102847,7 +98756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1480), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102886,113 +98795,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30541] = 3, + [28649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2980), 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(2978), 30, + ACTIONS(1408), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30595] = 3, + anon_sym_POUND, + 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, + [28703] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2984), 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(2982), 30, + ACTIONS(1908), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30649] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1910), 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, + [28757] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103000,7 +98909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103039,11 +98948,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30703] = 3, + [28811] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103051,7 +98960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103090,62 +98999,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30757] = 3, + [28865] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 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(2986), 30, + ACTIONS(672), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30811] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(674), 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, + [28919] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2992), 15, + ACTIONS(610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103161,7 +99070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2990), 30, + ACTIONS(608), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103192,11 +99101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30865] = 3, + [28973] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103204,7 +99113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1600), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103243,11 +99152,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30919] = 3, + [29027] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1132), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103255,7 +99164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1134), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103294,62 +99203,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30973] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(642), 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(640), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31027] = 3, + [29081] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1770), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103357,7 +99215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103396,11 +99254,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31081] = 3, + [29135] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 15, + ACTIONS(2908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103416,7 +99274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(558), 30, + ACTIONS(2906), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103447,11 +99305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31135] = 3, + [29189] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 15, + ACTIONS(2912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103467,7 +99325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2994), 30, + ACTIONS(2910), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103498,11 +99356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31189] = 3, + [29243] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(518), 15, + ACTIONS(2916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103518,7 +99376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(516), 30, + ACTIONS(2914), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103549,11 +99407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31243] = 3, + [29297] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1774), 7, + ACTIONS(600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103561,7 +99419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1776), 38, + ACTIONS(602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103600,11 +99458,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31297] = 3, + [29351] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(1420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103612,7 +99470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103651,11 +99509,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31351] = 3, + [29405] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103663,7 +99521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103702,11 +99560,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31405] = 3, + [29459] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103714,7 +99572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103753,11 +99611,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31459] = 3, + [29513] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103765,7 +99623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1758), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103804,11 +99662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31513] = 3, + [29567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103816,7 +99674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1838), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103855,11 +99713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31567] = 3, + [29621] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103867,7 +99725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103906,11 +99764,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31621] = 3, + [29675] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(1224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103918,7 +99776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1226), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103957,11 +99815,470 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31675] = 3, + [29729] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1424), 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(1426), 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, + [29783] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1816), 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(1818), 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, + [29837] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(670), 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(668), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1848), 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(1850), 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, + [29945] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2393), 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(2395), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29999] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1852), 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(1854), 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, + [30053] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2630), 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(2628), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30107] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2920), 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(2918), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30161] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(556), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(554), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30215] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -103969,7 +100286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104008,11 +100325,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31729] = 3, + [30269] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + ACTIONS(2004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104020,7 +100337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(2006), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104059,113 +100376,215 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31783] = 3, + [30323] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1666), 7, + ACTIONS(2924), 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(2922), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(654), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1668), 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, - [31837] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(652), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30431] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1674), 7, + ACTIONS(2928), 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(2926), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30485] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(322), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1676), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31891] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(320), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30539] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104173,7 +100592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(1938), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104212,11 +100631,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31945] = 3, + [30593] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2932), 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(2930), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2936), 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(2934), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30701] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1738), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104224,7 +100745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(1942), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104263,11 +100784,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31999] = 3, + [30755] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104275,7 +100796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104314,11 +100835,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32053] = 3, + [30809] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(654), 15, + ACTIONS(2940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104334,7 +100855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 30, + ACTIONS(2938), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104365,11 +100886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32107] = 3, + [30863] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(646), 15, + ACTIONS(2944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104385,7 +100906,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(644), 30, + ACTIONS(2942), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(666), 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(664), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30971] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(678), 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(676), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104416,62 +101039,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32161] = 3, + [31025] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1608), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2622), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1610), 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, + [31079] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1948), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32215] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1950), 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, + [31133] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1954), 7, + ACTIONS(1594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104479,7 +101153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1956), 38, + ACTIONS(1596), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104518,11 +101192,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32269] = 3, + [31187] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3000), 15, + ACTIONS(2435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104538,7 +101212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2998), 30, + ACTIONS(2437), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104569,11 +101243,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, + [31241] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1958), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104581,7 +101255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1960), 38, + ACTIONS(1954), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104620,11 +101294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32377] = 3, + [31295] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 15, + ACTIONS(2948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104640,7 +101314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(612), 30, + ACTIONS(2946), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104671,11 +101345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32431] = 3, + [31349] = 4, + ACTIONS(2950), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 15, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104691,11 +101367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(608), 30, + ACTIONS(568), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -104722,62 +101397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32485] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2010), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(2012), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32539] = 3, + [31405] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(542), 15, + ACTIONS(2954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104793,7 +101417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(540), 30, + ACTIONS(2952), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104824,11 +101448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32593] = 3, + [31459] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2018), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104836,7 +101460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2020), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104875,11 +101499,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32647] = 3, + [31513] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104887,7 +101511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104926,11 +101550,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32701] = 3, + [31567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2030), 7, + ACTIONS(1956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104938,7 +101562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2032), 38, + ACTIONS(1958), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104977,11 +101601,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32755] = 3, + [31621] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2038), 7, + ACTIONS(1960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -104989,7 +101613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2040), 38, + ACTIONS(1962), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105028,11 +101652,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32809] = 3, + [31675] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3004), 15, + ACTIONS(2958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105048,7 +101672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3002), 30, + ACTIONS(2956), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105079,11 +101703,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32863] = 3, + [31729] = 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(2728), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31783] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2034), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105091,7 +101766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2036), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105130,11 +101805,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32917] = 3, + [31837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 7, + ACTIONS(2962), 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(2960), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105142,7 +101868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105181,11 +101907,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32971] = 3, + [31945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2022), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105193,7 +101919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2024), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105232,11 +101958,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33025] = 3, + [31999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2014), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105244,7 +101970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2016), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105283,11 +102009,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33079] = 3, + [32053] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105295,7 +102021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(1966), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105334,11 +102060,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33133] = 3, + [32107] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105346,7 +102072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1808), 38, + ACTIONS(1970), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105385,62 +102111,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33187] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(328), 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(326), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33241] = 3, + [32161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(618), 15, + ACTIONS(674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105456,7 +102131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(616), 30, + ACTIONS(672), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105487,11 +102162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33295] = 3, + [32215] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(1582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105499,7 +102174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105538,62 +102213,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33349] = 3, + [32269] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, + 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), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32323] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(662), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1980), 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, - [33403] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(660), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32377] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105601,7 +102327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105640,11 +102366,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33457] = 3, + [32431] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105652,7 +102378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1878), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105691,11 +102417,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33511] = 3, + [32485] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1970), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105703,7 +102429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(1974), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105742,62 +102468,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33565] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2403), 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(2405), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33619] = 3, + [32539] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(606), 15, + ACTIONS(2970), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105813,7 +102488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(604), 30, + ACTIONS(2968), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105844,11 +102519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33673] = 3, + [32593] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(664), 7, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -105856,7 +102531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(666), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105895,62 +102570,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33727] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3008), 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(3006), 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33781] = 3, + [32647] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3012), 15, + ACTIONS(2974), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105966,7 +102590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3010), 30, + ACTIONS(2972), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105997,11 +102621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33835] = 3, + [32701] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1950), 7, + ACTIONS(1604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106009,7 +102633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(1606), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106048,11 +102672,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33889] = 3, + [32755] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1946), 7, + ACTIONS(1512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106060,7 +102684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1948), 38, + ACTIONS(1514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106099,11 +102723,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33943] = 3, + [32809] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1942), 7, + ACTIONS(1590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106111,7 +102735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1944), 38, + ACTIONS(1592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106150,11 +102774,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33997] = 3, + [32863] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1938), 7, + ACTIONS(1570), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106162,7 +102786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1940), 38, + ACTIONS(1572), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106201,11 +102825,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34051] = 3, + [32917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(534), 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(532), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32971] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1934), 7, + ACTIONS(1558), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106213,7 +102888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1936), 38, + ACTIONS(1560), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106252,11 +102927,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34105] = 3, + [33025] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1930), 7, + ACTIONS(2978), 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(2976), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33079] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106264,7 +102990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1932), 38, + ACTIONS(1536), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106303,11 +103029,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34159] = 3, + [33133] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106315,7 +103041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106354,11 +103080,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34213] = 3, + [33187] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(658), 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(656), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33241] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1918), 7, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106366,7 +103143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1920), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106405,11 +103182,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34267] = 3, + [33295] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1890), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106417,7 +103194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106456,11 +103233,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34321] = 3, + [33349] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1886), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106468,7 +103245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1888), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106507,11 +103284,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34375] = 3, + [33403] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106519,7 +103296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(1978), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106558,62 +103335,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34429] = 3, + [33457] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(598), 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(596), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1880), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34483] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(1472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106621,7 +103398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106660,11 +103437,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34537] = 3, + [33565] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(1464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106672,7 +103449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(1466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106711,11 +103488,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34591] = 3, + [33619] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106723,7 +103500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106762,11 +103539,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34645] = 3, + [33673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106774,7 +103551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(1982), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106813,11 +103590,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34699] = 3, + [33727] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(1500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106825,7 +103602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106864,11 +103641,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34753] = 3, + [33781] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(2000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106876,7 +103653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(2002), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106915,11 +103692,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34807] = 3, + [33835] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2626), 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(2624), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33889] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106927,7 +103755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1986), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106966,11 +103794,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34861] = 3, + [33943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2982), 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(2980), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33997] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -106978,7 +103857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1990), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107017,11 +103896,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34915] = 3, + [34051] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(602), 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(600), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34105] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -107029,7 +103959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107068,47 +103998,41 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34969] = 10, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, + [34159] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(2986), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3024), 8, 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, - ACTIONS(3014), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2984), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -107125,194 +104049,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35036] = 18, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3034), 1, - anon_sym_EQ, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, + [34213] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(2990), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 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(3020), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3032), 19, + anon_sym_DOT, + ACTIONS(2988), 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_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35119] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3056), 1, - anon_sym_LPAREN, - ACTIONS(3058), 1, - anon_sym_STAR, - ACTIONS(3064), 1, - anon_sym_for, - ACTIONS(3066), 1, - anon_sym_AMP, - ACTIONS(3068), 1, - sym_metavariable, - STATE(1888), 1, - sym_scoped_type_identifier, - STATE(1949), 1, - sym_generic_type, - STATE(2074), 1, - sym_where_predicate, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2564), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3054), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3062), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(2290), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3060), 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, - [35208] = 18, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3072), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3026), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3020), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3048), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3070), 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_COMMA, - anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107323,24 +104100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35291] = 3, + [34267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3076), 12, + ACTIONS(1992), 7, 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_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(3074), 32, + ACTIONS(1994), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107361,107 +104133,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [35344] = 20, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, + [34321] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3020), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3078), 8, + ACTIONS(2008), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3084), 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, - [35431] = 4, - ACTIONS(3090), 1, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2010), 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, + [34375] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3088), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2012), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, 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(3086), 29, + ACTIONS(2014), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107479,38 +104232,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [35486] = 7, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, + [34429] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3094), 13, + ACTIONS(2602), 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, @@ -107518,17 +104272,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3092), 26, + anon_sym_DOT, + ACTIONS(2600), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -107545,26 +104304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35547] = 7, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, + [34483] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3098), 13, + ACTIONS(2706), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -107572,17 +104323,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3096), 26, + anon_sym_DOT, + ACTIONS(2702), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -107599,178 +104355,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35608] = 3, + [34537] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3102), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2994), 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(3100), 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, - [35661] = 20, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3046), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3020), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3104), 8, + anon_sym_DOT, + ACTIONS(2992), 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_else, - ACTIONS(3084), 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, - [35748] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3026), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3020), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3048), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107781,99 +104406,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35831] = 3, + [34591] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3108), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2998), 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(3106), 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, - [35884] = 12, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3050), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3020), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3024), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3014), 25, + anon_sym_DOT, + ACTIONS(2996), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -107890,24 +104457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35955] = 3, + [34645] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3112), 12, + ACTIONS(2016), 7, 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_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(3110), 32, + ACTIONS(2018), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107928,126 +104490,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36008] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3052), 1, sym_identifier, - ACTIONS(3056), 1, - anon_sym_LPAREN, - ACTIONS(3058), 1, - anon_sym_STAR, - ACTIONS(3064), 1, - anon_sym_for, - ACTIONS(3066), 1, - anon_sym_AMP, - ACTIONS(3068), 1, - sym_metavariable, - STATE(1888), 1, - sym_scoped_type_identifier, - STATE(1949), 1, - sym_generic_type, - STATE(2074), 1, - sym_where_predicate, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2564), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3062), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3114), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(910), 3, sym_self, sym_super, sym_crate, - STATE(2290), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3060), 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, - [36097] = 9, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, + [34699] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3024), 10, + ACTIONS(572), 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, - ACTIONS(3014), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(570), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -108064,28 +104559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36162] = 4, - ACTIONS(3120), 1, - anon_sym_RBRACE, + [34753] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3118), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1888), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, 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(3116), 29, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108103,38 +104589,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_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_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [36217] = 5, - ACTIONS(3122), 1, - anon_sym_POUND, + [34807] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1178), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2491), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + ACTIONS(2024), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(2489), 32, + ACTIONS(2026), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108155,93 +104643,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [36274] = 8, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, + [34861] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3024), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3014), 25, + ACTIONS(2028), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36337] = 7, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2030), 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, + [34915] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3127), 13, + ACTIONS(3002), 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, @@ -108249,17 +104731,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3125), 26, + anon_sym_DOT, + ACTIONS(3000), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -108276,41 +104763,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36398] = 13, - ACTIONS(3016), 1, + [34969] = 10, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3018), 1, anon_sym_DOT_DOT, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3046), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3026), 2, + ACTIONS(3016), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3024), 4, + ACTIONS(3014), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3014), 25, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3004), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108336,117 +104820,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36471] = 18, - ACTIONS(3016), 1, + [35036] = 18, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3018), 1, anon_sym_DOT_DOT, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3131), 1, + ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3026), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3020), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3129), 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_COMMA, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36554] = 18, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, ACTIONS(3028), 1, - anon_sym_DOT_DOT, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3135), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3026), 2, + ACTIONS(3016), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3133), 19, + ACTIONS(3022), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108466,24 +104885,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36637] = 3, + [35119] = 4, + ACTIONS(3046), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3139), 12, - anon_sym_SEMI, + ACTIONS(3044), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + 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(3137), 32, + ACTIONS(3042), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108501,67 +104924,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [36690] = 18, - ACTIONS(3016), 1, + [35174] = 18, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3018), 1, anon_sym_DOT_DOT, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3143), 1, + ACTIONS(3050), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3026), 2, + ACTIONS(3016), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3141), 19, + ACTIONS(3048), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108581,42 +105001,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36773] = 14, - ACTIONS(3016), 1, + [35257] = 7, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3018), 1, anon_sym_DOT_DOT, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3026), 2, + ACTIONS(3016), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3020), 3, + ACTIONS(3054), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3024), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 25, + 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(3052), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108624,6 +105036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, anon_sym_AMP_AMP, @@ -108642,54 +105055,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36848] = 11, - ACTIONS(3016), 1, + [35318] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3028), 1, + ACTIONS(3018), 1, anon_sym_DOT_DOT, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3026), 2, + ACTIONS(3016), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3050), 2, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3024), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3014), 25, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3056), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - 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(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108700,24 +105122,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36917] = 3, + [35405] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3064), 1, + sym_identifier, + ACTIONS(3068), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, + anon_sym_STAR, + ACTIONS(3076), 1, + anon_sym_for, + ACTIONS(3078), 1, + anon_sym_AMP, + ACTIONS(3080), 1, + sym_metavariable, + STATE(1873), 1, + sym_scoped_type_identifier, + STATE(1968), 1, + sym_generic_type, + STATE(2100), 1, + sym_where_predicate, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2421), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 12, + ACTIONS(3066), 2, 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(3145), 32, + ACTIONS(3074), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + STATE(2283), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3072), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108735,63 +105190,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36970] = 16, - ACTIONS(3016), 1, + [35494] = 14, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3024), 1, - anon_sym_EQ, - ACTIONS(3028), 1, + ACTIONS(3018), 1, anon_sym_DOT_DOT, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3026), 2, + ACTIONS(3016), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3014), 21, + ACTIONS(3014), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3004), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -108803,6 +105237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108813,90 +105251,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37049] = 17, - ACTIONS(3016), 1, + [35569] = 7, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3024), 1, - anon_sym_EQ, - ACTIONS(3028), 1, + ACTIONS(3018), 1, anon_sym_DOT_DOT, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3026), 2, + ACTIONS(3016), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3020), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3014), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, - anon_sym_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, - [37130] = 7, - ACTIONS(2634), 1, - anon_sym_LBRACE, - ACTIONS(2636), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_BANG, - STATE(1050), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(586), 15, + ACTIONS(3084), 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, @@ -108904,16 +105278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(584), 24, + ACTIONS(3082), 26, 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_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -108930,26 +105305,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37190] = 3, + [35630] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3118), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(3088), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3116), 29, + ACTIONS(3086), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108967,180 +105340,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [37242] = 3, + [35683] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3088), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(3092), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, 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(3086), 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, - [37294] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3056), 1, - anon_sym_LPAREN, - ACTIONS(3058), 1, anon_sym_STAR, - ACTIONS(3064), 1, - anon_sym_for, - ACTIONS(3066), 1, - anon_sym_AMP, - ACTIONS(3068), 1, - sym_metavariable, - STATE(1888), 1, - sym_scoped_type_identifier, - STATE(1949), 1, - sym_generic_type, - STATE(2074), 1, - sym_where_predicate, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2564), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3062), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(2290), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3060), 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, - [37379] = 21, - ACTIONS(77), 1, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2514), 1, - anon_sym_fn, - ACTIONS(2522), 1, - anon_sym_COLON_COLON, - ACTIONS(3151), 1, - sym_identifier, - ACTIONS(3155), 1, - anon_sym_default, - ACTIONS(3157), 1, - sym_metavariable, - STATE(783), 1, - sym_scoped_type_identifier, - STATE(833), 1, - sym_generic_type, - STATE(1068), 1, - sym_function_type, - STATE(1232), 1, - sym_for_lifetimes, - STATE(2423), 1, - sym_function_modifiers, - STATE(2448), 1, - sym_scoped_identifier, - STATE(2531), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2530), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3153), 18, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3090), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109158,55 +105390,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_union, - [37466] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2514), 1, - anon_sym_fn, - ACTIONS(2522), 1, - anon_sym_COLON_COLON, - ACTIONS(3155), 1, - anon_sym_default, - ACTIONS(3157), 1, - sym_metavariable, - ACTIONS(3159), 1, - sym_identifier, - STATE(789), 1, - sym_scoped_type_identifier, - STATE(815), 1, - sym_generic_type, - STATE(1074), 1, - sym_function_type, - STATE(1232), 1, - sym_for_lifetimes, - STATE(2423), 1, - sym_function_modifiers, - STATE(2448), 1, - sym_scoped_identifier, - STATE(2531), 1, - sym_bracketed_type, - STATE(2532), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 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, - ACTIONS(2530), 3, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - ACTIONS(3153), 18, + [35736] = 4, + ACTIONS(3098), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3096), 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(3094), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109224,55 +105444,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_const, + anon_sym_default, anon_sym_union, - [37553] = 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(904), 1, - anon_sym_COLON_COLON, - ACTIONS(3068), 1, - sym_metavariable, - ACTIONS(3161), 1, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(3163), 1, - anon_sym_default, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1377), 1, - sym_scoped_type_identifier, - STATE(1408), 1, - sym_generic_type, - STATE(1441), 1, - sym_function_type, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2564), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, sym_self, sym_super, sym_crate, - ACTIONS(3062), 18, + [35791] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3102), 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(3100), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109290,55 +105491,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_union, - [37640] = 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_where, anon_sym_extern, - ACTIONS(904), 1, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35844] = 8, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3014), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3004), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35907] = 11, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3014), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3004), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35976] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(892), 1, anon_sym_COLON_COLON, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3064), 1, + sym_identifier, ACTIONS(3068), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, + anon_sym_STAR, + ACTIONS(3076), 1, + anon_sym_for, + ACTIONS(3078), 1, + anon_sym_AMP, + ACTIONS(3080), 1, sym_metavariable, - ACTIONS(3163), 1, - anon_sym_default, - ACTIONS(3165), 1, - sym_identifier, - STATE(1230), 1, - sym_for_lifetimes, - STATE(1376), 1, + STATE(1873), 1, sym_scoped_type_identifier, - STATE(1416), 1, + STATE(1968), 1, sym_generic_type, - STATE(1436), 1, - sym_function_type, - STATE(2369), 1, - sym_function_modifiers, - STATE(2416), 1, + STATE(2100), 1, + sym_where_predicate, + STATE(2388), 1, sym_bracketed_type, - STATE(2417), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2564), 1, + STATE(2421), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, + ACTIONS(3074), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3104), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - ACTIONS(3062), 18, + STATE(2283), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3072), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109356,23 +105687,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_union, - [37727] = 3, + [36065] = 18, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3108), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3106), 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_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36148] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2974), 10, + ACTIONS(3112), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_PLUS, 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(2976), 32, + ACTIONS(3110), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109398,56 +105795,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, anon_sym_union, anon_sym_unsafe, + anon_sym_where, anon_sym_extern, anon_sym_dyn, - sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [37778] = 17, - ACTIONS(77), 1, + [36201] = 16, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3014), 1, + anon_sym_EQ, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3026), 2, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(880), 1, - anon_sym_COLON_COLON, - ACTIONS(3167), 1, - sym_identifier, - ACTIONS(3169), 1, + anon_sym_GT, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3004), 21, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3173), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, - ACTIONS(3177), 1, - sym_metavariable, - STATE(1671), 1, - sym_scoped_identifier, - STATE(2468), 1, - sym_generic_type_with_turbofish, - STATE(2514), 1, - sym_bracketed_type, + anon_sym_else, + 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, + [36280] = 17, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3014), 1, + anon_sym_EQ, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(924), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2063), 2, - sym_meta_item, - sym__literal, - ACTIONS(3175), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3171), 19, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3004), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_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, + [36361] = 5, + ACTIONS(3114), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1170), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2525), 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(2523), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109465,24 +105966,106 @@ 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, - [37857] = 3, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36418] = 20, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3117), 8, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3062), 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, + [36505] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1686), 10, + ACTIONS(3121), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, - anon_sym_POUND, anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(1688), 32, + ACTIONS(3119), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109506,63 +106089,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, + anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [37908] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3052), 1, - sym_identifier, - ACTIONS(3056), 1, + [36558] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3125), 12, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3058), 1, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_STAR, - ACTIONS(3064), 1, - anon_sym_for, - ACTIONS(3066), 1, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3068), 1, sym_metavariable, - STATE(1888), 1, - sym_scoped_type_identifier, - STATE(1890), 1, - sym_where_predicate, - STATE(1949), 1, - sym_generic_type, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2564), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3062), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - STATE(2290), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3060), 17, + ACTIONS(3123), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109580,41 +106133,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37993] = 6, - ACTIONS(2674), 1, - anon_sym_BANG, - ACTIONS(2676), 1, - anon_sym_COLON_COLON, - ACTIONS(3179), 1, + 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, + [36611] = 9, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 16, - anon_sym_PLUS, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, anon_sym_STAR, - anon_sym_as, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3014), 10, + anon_sym_PLUS, 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), 23, + ACTIONS(3004), 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -109631,82 +106204,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38050] = 16, - ACTIONS(77), 1, + [36676] = 18, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3129), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3026), 2, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(880), 1, - anon_sym_COLON_COLON, - ACTIONS(3167), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_metavariable, - ACTIONS(3181), 1, + anon_sym_GT, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3127), 19, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1671), 1, - sym_scoped_identifier, - STATE(2468), 1, - sym_generic_type_with_turbofish, - STATE(2514), 1, - sym_bracketed_type, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36759] = 13, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3036), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(924), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2321), 2, - sym_meta_item, - sym__literal, - ACTIONS(3175), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3171), 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, - [38126] = 5, - ACTIONS(2718), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, - anon_sym_BANG, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3014), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3004), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36832] = 7, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3133), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -109714,16 +106356,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3131), 26, + 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_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36893] = 18, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(584), 24, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3137), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3135), 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_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36976] = 18, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3006), 1, anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(282), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37059] = 12, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, anon_sym_as, + ACTIONS(3018), 1, + anon_sym_DOT_DOT, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3016), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3014), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3004), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -109740,17 +106572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38180] = 6, - ACTIONS(2596), 1, - anon_sym_BANG, - ACTIONS(3183), 1, + [37130] = 7, + ACTIONS(2612), 1, + anon_sym_LBRACE, + ACTIONS(2614), 1, anon_sym_COLON_COLON, - STATE(1050), 1, + ACTIONS(3139), 1, + anon_sym_BANG, + STATE(1020), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -109766,9 +106600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(584), 23, + ACTIONS(568), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -109790,107 +106625,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38236] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(732), 1, - anon_sym_DASH, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(880), 1, - anon_sym_COLON_COLON, - ACTIONS(3185), 1, - sym_identifier, - ACTIONS(3191), 1, - sym_metavariable, - STATE(1460), 1, - sym_scoped_identifier, - STATE(1473), 1, - sym__literal_pattern, - STATE(2407), 1, - sym_bracketed_type, - STATE(2468), 1, - sym_generic_type_with_turbofish, + [37190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(738), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3189), 3, - sym_self, - sym_super, - sym_crate, - STATE(1446), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, + ACTIONS(3044), 14, sym_raw_string_literal, sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3187), 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, - [38312] = 16, - ACTIONS(77), 1, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(880), 1, anon_sym_COLON_COLON, - ACTIONS(3167), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_metavariable, - ACTIONS(3193), 1, - anon_sym_RPAREN, - STATE(1671), 1, - sym_scoped_identifier, - STATE(2468), 1, - sym_generic_type_with_turbofish, - STATE(2514), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(924), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2321), 2, - sym_meta_item, - sym__literal, - ACTIONS(3175), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, sym_integer_literal, + aux_sym_string_literal_token1, sym_char_literal, - ACTIONS(3171), 19, + sym_metavariable, + ACTIONS(3042), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109906,51 +106660,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_f32, anon_sym_f64, anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [38388] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(732), 1, - anon_sym_DASH, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(880), 1, - anon_sym_COLON_COLON, - ACTIONS(3195), 1, - sym_identifier, - ACTIONS(3201), 1, - sym_metavariable, - STATE(1457), 1, - sym_scoped_identifier, - STATE(1465), 1, - sym__literal_pattern, - STATE(2407), 1, - sym_bracketed_type, - STATE(2468), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(738), 2, + 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, - ACTIONS(3199), 3, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1446), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, + [37242] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3096), 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, - ACTIONS(3197), 19, + sym_metavariable, + ACTIONS(3094), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109968,15 +106711,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_const, anon_sym_default, anon_sym_union, - [38464] = 3, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37294] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 9, + ACTIONS(3000), 10, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, @@ -109984,7 +106738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3203), 31, + ACTIONS(3002), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110012,25 +106766,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, anon_sym_dyn, + sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [38513] = 3, + [37345] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3209), 9, + ACTIONS(1296), 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(3207), 31, + ACTIONS(1298), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110054,6 +106810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, + anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_extern, @@ -110062,22 +106819,54 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38562] = 4, - ACTIONS(3213), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3215), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [37396] = 20, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(892), 1, anon_sym_COLON_COLON, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3064), 1, + sym_identifier, + ACTIONS(3068), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, + anon_sym_STAR, + ACTIONS(3076), 1, + anon_sym_for, + ACTIONS(3078), 1, anon_sym_AMP, + ACTIONS(3080), 1, sym_metavariable, - ACTIONS(3211), 31, + STATE(1795), 1, + sym_where_predicate, + STATE(1873), 1, + sym_scoped_type_identifier, + STATE(1968), 1, + sym_generic_type, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2421), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3074), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + STATE(2283), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3072), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110095,97 +106884,151 @@ 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, + [37481] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, + ACTIONS(714), 1, anon_sym_extern, - anon_sym_dyn, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(3080), 1, + sym_metavariable, + ACTIONS(3141), 1, sym_identifier, + ACTIONS(3143), 1, + anon_sym_default, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1366), 1, + sym_scoped_type_identifier, + STATE(1406), 1, + sym_generic_type, + STATE(1412), 1, + sym_function_type, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2421), 1, + sym_scoped_identifier, + STATE(2435), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - [38613] = 23, - ACTIONS(514), 1, - anon_sym_RBRACK, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3074), 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, + [37568] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3064), 1, + sym_identifier, + ACTIONS(3068), 1, + anon_sym_LPAREN, + ACTIONS(3070), 1, + anon_sym_STAR, + ACTIONS(3076), 1, + anon_sym_for, + ACTIONS(3078), 1, anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3217), 1, - anon_sym_SEMI, - ACTIONS(3219), 1, - anon_sym_COMMA, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, - STATE(1928), 1, - aux_sym_array_expression_repeat1, + sym_metavariable, + STATE(1873), 1, + sym_scoped_type_identifier, + STATE(1968), 1, + sym_generic_type, + STATE(2100), 1, + sym_where_predicate, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2421), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3084), 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, - [38702] = 5, - ACTIONS(2774), 1, + ACTIONS(3074), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + STATE(2283), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3072), 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, + [37653] = 6, + ACTIONS(2660), 1, anon_sym_BANG, - ACTIONS(3225), 1, + ACTIONS(2662), 1, anon_sym_COLON_COLON, + ACTIONS(3145), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(2656), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -110199,12 +107042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 23, + ACTIONS(2654), 23, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + 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, @@ -110223,21 +107066,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38755] = 3, + [37710] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2493), 1, + anon_sym_fn, + ACTIONS(2501), 1, + anon_sym_COLON_COLON, + ACTIONS(3147), 1, + sym_identifier, + ACTIONS(3151), 1, + anon_sym_default, + ACTIONS(3153), 1, + sym_metavariable, + STATE(773), 1, + sym_scoped_type_identifier, + STATE(796), 1, + sym_generic_type, + STATE(1140), 1, + sym_function_type, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2395), 1, + sym_function_modifiers, + STATE(2420), 1, + sym_scoped_identifier, + STATE(2503), 1, + sym_bracketed_type, + STATE(2504), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2509), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3149), 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, + [37797] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2493), 1, + anon_sym_fn, + ACTIONS(2501), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3151), 1, + anon_sym_default, + ACTIONS(3153), 1, sym_metavariable, - ACTIONS(3145), 31, + ACTIONS(3155), 1, + sym_identifier, + STATE(777), 1, + sym_scoped_type_identifier, + STATE(795), 1, + sym_generic_type, + STATE(1129), 1, + sym_function_type, + STATE(1217), 1, + sym_for_lifetimes, + STATE(2395), 1, + sym_function_modifiers, + STATE(2420), 1, + sym_scoped_identifier, + STATE(2503), 1, + sym_bracketed_type, + STATE(2504), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2509), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3149), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110255,35 +107197,164 @@ 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_union, + [37884] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, + ACTIONS(714), 1, anon_sym_extern, - anon_sym_dyn, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(3080), 1, + sym_metavariable, + ACTIONS(3143), 1, + anon_sym_default, + ACTIONS(3157), 1, sym_identifier, + STATE(1218), 1, + sym_for_lifetimes, + STATE(1364), 1, + sym_scoped_type_identifier, + STATE(1405), 1, + sym_generic_type, + STATE(1427), 1, + sym_function_type, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2421), 1, + sym_scoped_identifier, + STATE(2435), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, sym_self, sym_super, sym_crate, - [38804] = 3, + ACTIONS(3074), 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, + [37971] = 6, + ACTIONS(2586), 1, + anon_sym_BANG, + ACTIONS(3159), 1, + anon_sym_COLON_COLON, + STATE(1020), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3112), 9, + ACTIONS(566), 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(568), 23, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + 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, + [38027] = 16, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(989), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3161), 1, + sym_identifier, + ACTIONS(3167), 1, sym_metavariable, - ACTIONS(3110), 31, + STATE(1444), 1, + sym_scoped_identifier, + STATE(1492), 1, + sym__literal_pattern, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2379), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3165), 3, + sym_self, + sym_super, + sym_crate, + STATE(1418), 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(3163), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110301,29 +107372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38853] = 5, - ACTIONS(2596), 1, - anon_sym_BANG, - ACTIONS(3227), 1, + [38103] = 5, + ACTIONS(2754), 1, anon_sym_COLON_COLON, + ACTIONS(3139), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110339,9 +107398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(584), 23, + ACTIONS(568), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -110363,21 +107423,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38906] = 3, + [38157] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(989), 1, + anon_sym_COLON_COLON, + ACTIONS(3169), 1, + sym_identifier, + ACTIONS(3175), 1, + sym_metavariable, + STATE(1442), 1, + sym_scoped_identifier, + STATE(1461), 1, + sym__literal_pattern, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2379), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3173), 3, + sym_self, + sym_super, + sym_crate, + STATE(1418), 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(3171), 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, + [38233] = 4, + ACTIONS(3181), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 9, + ACTIONS(3179), 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(3229), 31, + ACTIONS(3177), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110409,45 +107530,21 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38955] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(880), 1, - anon_sym_COLON_COLON, - ACTIONS(3167), 1, - sym_identifier, - ACTIONS(3177), 1, - sym_metavariable, - STATE(1671), 1, - sym_scoped_identifier, - STATE(2468), 1, - sym_generic_type_with_turbofish, - STATE(2514), 1, - sym_bracketed_type, + [38284] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(924), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2321), 2, - sym_meta_item, - sym__literal, - ACTIONS(3175), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3171), 19, + ACTIONS(3121), 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(3119), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110465,90 +107562,76 @@ 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, - [39028] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2630), 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(2632), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38333] = 23, + ACTIONS(520), 1, + anon_sym_RBRACK, + ACTIONS(3006), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(3012), 1, anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, anon_sym_AMP_AMP, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39077] = 3, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3183), 1, + anon_sym_SEMI, + ACTIONS(3185), 1, + anon_sym_COMMA, + ACTIONS(3189), 1, + anon_sym_DOT_DOT, + STATE(1893), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 16, + ACTIONS(3008), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2620), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110559,62 +107642,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39126] = 23, + [38422] = 23, ACTIONS(368), 1, anon_sym_RBRACK, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3233), 1, + ACTIONS(3191), 1, anon_sym_SEMI, - ACTIONS(3235), 1, + ACTIONS(3193), 1, anon_sym_COMMA, - STATE(1943), 1, + STATE(2062), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110625,22 +107708,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39215] = 4, - ACTIONS(3237), 1, - anon_sym_COLON_COLON, + [38511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3215), 8, + ACTIONS(3197), 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(3211), 31, + ACTIONS(3195), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110672,11 +107754,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39266] = 3, + [38560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 16, + ACTIONS(2644), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -110693,7 +107775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2656), 24, + ACTIONS(2646), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -110718,59 +107800,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39315] = 3, + [38609] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 16, - anon_sym_PLUS, + ACTIONS(3201), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, + anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_EQ, anon_sym_LT, - anon_sym_GT, - anon_sym_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(2644), 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, - [39364] = 4, - ACTIONS(2776), 1, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3199), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38658] = 5, + ACTIONS(2586), 1, + anon_sym_BANG, + ACTIONS(3203), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + ACTIONS(566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -110786,7 +107870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2738), 23, + ACTIONS(568), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -110810,15 +107894,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39414] = 4, - ACTIONS(2740), 1, + [38711] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3125), 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(3123), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3207), 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(3205), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38809] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + ACTIONS(2620), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -110832,12 +108007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2738), 23, + ACTIONS(2622), 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, @@ -110856,201 +108032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39464] = 22, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, - ACTIONS(3239), 1, - anon_sym_RPAREN, - ACTIONS(3241), 1, - anon_sym_COMMA, - STATE(2032), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3084), 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, - [39550] = 22, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_COMMA, - STATE(1956), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3018), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3084), 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, - [39636] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(3068), 1, - sym_metavariable, - ACTIONS(3163), 1, - anon_sym_default, - ACTIONS(3245), 1, - sym_identifier, - ACTIONS(3247), 1, - anon_sym_fn, - STATE(1823), 1, - sym_scoped_type_identifier, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2441), 1, - sym_generic_type, - STATE(2564), 1, - sym_scoped_identifier, - STATE(2619), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3062), 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, - [39714] = 4, - ACTIONS(3249), 1, + [38858] = 5, + ACTIONS(2708), 1, + anon_sym_BANG, + ACTIONS(3209), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -111066,7 +108056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(584), 23, + ACTIONS(2654), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -111090,48 +108080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39764] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(904), 1, - anon_sym_COLON_COLON, - ACTIONS(3068), 1, - sym_metavariable, - ACTIONS(3163), 1, - anon_sym_default, - ACTIONS(3251), 1, - sym_identifier, - ACTIONS(3253), 1, - anon_sym_fn, - STATE(1851), 1, - sym_scoped_type_identifier, - STATE(2416), 1, - sym_bracketed_type, - STATE(2417), 1, - sym_generic_type_with_turbofish, - STATE(2441), 1, - sym_generic_type, - STATE(2450), 1, - sym_function_modifiers, - STATE(2564), 1, - sym_scoped_identifier, + [38911] = 4, + ACTIONS(3211), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1583), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(910), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3062), 18, + ACTIONS(3179), 8, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3177), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111149,16 +108113,74 @@ 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, - [39842] = 4, - ACTIONS(3225), 1, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2608), 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(2610), 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, + [39011] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(2636), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -111172,12 +108194,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 23, + ACTIONS(2638), 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, @@ -111196,58 +108219,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39892] = 21, - ACTIONS(3016), 1, + [39060] = 22, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, + ACTIONS(3213), 1, anon_sym_RPAREN, - ACTIONS(3257), 1, + ACTIONS(3215), 1, anon_sym_COMMA, + STATE(1897), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111258,58 +108283,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39975] = 21, - ACTIONS(562), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, - anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, - anon_sym_AMP_AMP, - ACTIONS(3275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, - anon_sym_PIPE, - ACTIONS(3279), 1, - anon_sym_CARET, - STATE(228), 1, - sym_block, + [39146] = 4, + ACTIONS(2704), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(2706), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3265), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 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(3261), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + anon_sym_DOT, + ACTIONS(2702), 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(3285), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111320,57 +108329,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40058] = 20, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, + [39196] = 4, + ACTIONS(2760), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(2706), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3036), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 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(3221), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3287), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3020), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + anon_sym_DOT, + ACTIONS(2702), 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(3084), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111381,55 +108375,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40139] = 18, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3131), 1, - anon_sym_EQ, - ACTIONS(3267), 1, - anon_sym_AMP, - ACTIONS(3273), 1, - anon_sym_AMP_AMP, - ACTIONS(3275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, - anon_sym_PIPE, - ACTIONS(3279), 1, - anon_sym_CARET, - ACTIONS(3291), 1, - anon_sym_DOT_DOT, + [39246] = 4, + ACTIONS(3217), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(566), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3265), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 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(3289), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + anon_sym_DOT, + ACTIONS(568), 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(3129), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111440,26 +108421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40216] = 7, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3291), 1, - anon_sym_DOT_DOT, + [39296] = 4, + ACTIONS(3209), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3289), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3094), 13, + ACTIONS(2656), 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, @@ -111467,11 +108442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3092), 20, + anon_sym_DOT, + ACTIONS(2654), 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, @@ -111488,58 +108467,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40271] = 21, - ACTIONS(3016), 1, + [39346] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(3080), 1, + sym_metavariable, + ACTIONS(3143), 1, + anon_sym_default, + ACTIONS(3219), 1, + sym_identifier, + ACTIONS(3221), 1, + anon_sym_fn, + STATE(1855), 1, + sym_scoped_type_identifier, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2421), 1, + sym_scoped_identifier, + STATE(2422), 1, + sym_function_modifiers, + STATE(2459), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3074), 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, + [39424] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(892), 1, + anon_sym_COLON_COLON, + ACTIONS(3080), 1, + sym_metavariable, + ACTIONS(3143), 1, + anon_sym_default, + ACTIONS(3223), 1, + sym_identifier, + ACTIONS(3225), 1, + anon_sym_fn, + STATE(1845), 1, + sym_scoped_type_identifier, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2421), 1, + sym_scoped_identifier, + STATE(2440), 1, + sym_function_modifiers, + STATE(2459), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1569), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(898), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3074), 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, + [39502] = 22, + ACTIONS(388), 1, + anon_sym_RPAREN, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3293), 1, - anon_sym_LBRACE, - STATE(1062), 1, - sym_match_block, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, + anon_sym_DOT_DOT, + ACTIONS(3227), 1, + anon_sym_COMMA, + STATE(2075), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111550,58 +108651,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40354] = 21, - ACTIONS(390), 1, - anon_sym_RPAREN, - ACTIONS(3016), 1, + [39588] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3229), 1, + anon_sym_LBRACE, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_COMMA, + STATE(1117), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111612,58 +108713,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40437] = 21, - ACTIONS(3016), 1, + [39671] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, - ACTIONS(3295), 1, - anon_sym_SEMI, - ACTIONS(3297), 1, - anon_sym_else, + STATE(896), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111674,45 +108775,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40520] = 8, - ACTIONS(3016), 1, + [39754] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3259), 1, + anon_sym_SEMI, + ACTIONS(3261), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3289), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3024), 13, + ACTIONS(3008), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3014), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111723,58 +108837,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40577] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, + [39837] = 9, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, - anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, - anon_sym_AMP_AMP, - ACTIONS(3275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, - anon_sym_PIPE, - ACTIONS(3279), 1, - anon_sym_CARET, - STATE(86), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3265), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3014), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3004), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + 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(3285), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111785,58 +108887,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40660] = 21, - ACTIONS(15), 1, + [39896] = 21, + ACTIONS(574), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(180), 1, + STATE(228), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111847,57 +108949,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40743] = 20, - ACTIONS(3016), 1, + [39979] = 21, + ACTIONS(400), 1, + anon_sym_RPAREN, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3267), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3299), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111908,58 +109011,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40824] = 21, - ACTIONS(284), 1, + [40062] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(972), 1, + STATE(45), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111970,58 +109073,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40907] = 21, - ACTIONS(15), 1, + [40145] = 21, + ACTIONS(574), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(46), 1, + STATE(233), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112032,57 +109135,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40990] = 20, - ACTIONS(3016), 1, + [40228] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, + STATE(882), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3301), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112093,57 +109197,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41071] = 20, - ACTIONS(3016), 1, + [40311] = 18, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3050), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3048), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112154,58 +109256,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41152] = 21, - ACTIONS(3016), 1, + [40388] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, + ACTIONS(3269), 1, anon_sym_SEMI, - ACTIONS(3307), 1, - anon_sym_RBRACE, + ACTIONS(3271), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112216,58 +109318,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41235] = 21, - ACTIONS(392), 1, - anon_sym_RPAREN, - ACTIONS(3016), 1, + [40471] = 14, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3014), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3004), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + 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(3084), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112278,58 +109373,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41318] = 21, - ACTIONS(3016), 1, + [40540] = 11, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, - ACTIONS(3309), 1, - anon_sym_SEMI, - ACTIONS(3311), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3014), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3004), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + 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(3084), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112340,55 +109425,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41401] = 18, - ACTIONS(3016), 1, + [40603] = 16, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3072), 1, + ACTIONS(3014), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3273), 1, - anon_sym_AMP_AMP, - ACTIONS(3275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3070), 13, + ACTIONS(3004), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112399,58 +109482,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41478] = 21, - ACTIONS(3016), 1, + [40676] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3313), 1, + ACTIONS(3273), 1, anon_sym_SEMI, - ACTIONS(3315), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112461,58 +109544,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41561] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, + [40759] = 17, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3014), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(824), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3004), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112523,58 +109602,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41644] = 21, - ACTIONS(3016), 1, + [40834] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3265), 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(3018), 2, + ACTIONS(3117), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112585,58 +109663,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41727] = 21, - ACTIONS(264), 1, - anon_sym_RBRACE, - ACTIONS(3016), 1, + [40915] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3275), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112647,97 +109724,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41810] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3016), 1, + [40996] = 13, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3273), 1, - anon_sym_AMP_AMP, - ACTIONS(3275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, - anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(282), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41887] = 7, - ACTIONS(3016), 1, - anon_sym_LBRACK, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3291), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3289), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3127), 13, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3014), 4, 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(3125), 20, + ACTIONS(3004), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -112754,58 +109778,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41942] = 21, - ACTIONS(276), 1, - anon_sym_RBRACE, - ACTIONS(3016), 1, + [41063] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3277), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112816,58 +109839,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42025] = 21, - ACTIONS(3016), 1, + [41144] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, - ACTIONS(3321), 1, - anon_sym_SEMI, - ACTIONS(3323), 1, - anon_sym_else, + STATE(1076), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112878,57 +109901,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42108] = 20, - ACTIONS(3016), 1, + [41227] = 12, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3325), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3014), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3004), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + 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(3084), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112939,57 +109954,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42189] = 20, - ACTIONS(3016), 1, + [41292] = 10, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3014), 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(3004), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + 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(3084), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113000,58 +110005,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42270] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, + [41353] = 18, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3108), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(910), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3106), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113062,58 +110064,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42353] = 21, - ACTIONS(284), 1, + [41430] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(816), 1, + STATE(117), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113124,58 +110126,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42436] = 21, - ACTIONS(3016), 1, + [41513] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3329), 1, - anon_sym_SEMI, - ACTIONS(3331), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3279), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113186,58 +110187,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42519] = 21, + [41594] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(863), 1, + STATE(822), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113248,58 +110249,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42602] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, + [41677] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - STATE(132), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, + anon_sym_DOT_DOT, + ACTIONS(3267), 1, + anon_sym_COMMA, + ACTIONS(3281), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113310,57 +110311,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42685] = 20, - ACTIONS(3016), 1, + [41760] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_SEMI, + ACTIONS(3283), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3104), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113371,55 +110373,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42766] = 18, - ACTIONS(3016), 1, + [41843] = 21, + ACTIONS(390), 1, + anon_sym_RPAREN, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3034), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3267), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3032), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113430,57 +110435,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42843] = 20, - ACTIONS(3016), 1, + [41926] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_SEMI, + ACTIONS(3285), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3333), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113491,58 +110497,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42924] = 21, - ACTIONS(3016), 1, + [42009] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3287), 1, + sym_identifier, + ACTIONS(3289), 1, + anon_sym_LBRACE, + ACTIONS(3291), 1, + anon_sym_RBRACE, + ACTIONS(3293), 1, + anon_sym_STAR, + ACTIONS(3297), 1, + anon_sym_COMMA, + ACTIONS(3299), 1, + anon_sym_COLON_COLON, + ACTIONS(3303), 1, + sym_metavariable, + STATE(1789), 1, + sym_scoped_identifier, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2499), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3301), 3, + sym_self, + sym_super, + sym_crate, + STATE(1996), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3295), 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, + [42080] = 21, + ACTIONS(105), 1, + anon_sym_RBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, + ACTIONS(3273), 1, anon_sym_SEMI, - ACTIONS(3335), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113553,58 +110615,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43007] = 21, - ACTIONS(107), 1, - anon_sym_RBRACE, - ACTIONS(3016), 1, + [42163] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3056), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113615,44 +110676,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43090] = 7, - ACTIONS(3016), 1, + [42244] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3030), 1, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3305), 1, + anon_sym_SEMI, + ACTIONS(3307), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3289), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3098), 13, + ACTIONS(3008), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3096), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113663,58 +110738,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43145] = 21, - ACTIONS(3016), 1, + [42327] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3337), 1, - anon_sym_SEMI, - ACTIONS(3339), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3309), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113725,57 +110799,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43228] = 20, - ACTIONS(3016), 1, + [42408] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_SEMI, + ACTIONS(3311), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3341), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113786,58 +110861,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43309] = 21, + [42491] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(1052), 1, + STATE(1014), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113848,58 +110923,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43392] = 21, + [42574] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, STATE(50), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113910,58 +110985,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43475] = 21, - ACTIONS(3016), 1, + [42657] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, + ACTIONS(3313), 1, anon_sym_SEMI, - ACTIONS(3343), 1, - anon_sym_RBRACE, + ACTIONS(3315), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113972,58 +111047,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43558] = 21, - ACTIONS(15), 1, + [42740] = 21, + ACTIONS(574), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(96), 1, + STATE(232), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114034,58 +111109,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43641] = 21, + [42823] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(1135), 1, + STATE(978), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114096,58 +111171,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43724] = 21, - ACTIONS(105), 1, - anon_sym_RBRACE, - ACTIONS(3016), 1, + [42906] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3317), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114158,58 +111232,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43807] = 21, - ACTIONS(3016), 1, + [42987] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3345), 1, - anon_sym_RBRACE, - ACTIONS(3347), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3319), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3062), 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, + [43068] = 8, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3265), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3014), 13, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3004), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + 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(3084), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114220,58 +111342,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43890] = 21, + [43125] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(125), 1, + STATE(92), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114282,58 +111404,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43973] = 21, - ACTIONS(3016), 1, + [43208] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3349), 1, - anon_sym_SEMI, - ACTIONS(3351), 1, - anon_sym_else, + ACTIONS(3321), 1, + anon_sym_RBRACE, + ACTIONS(3323), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114344,58 +111466,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44056] = 21, - ACTIONS(3016), 1, + [43291] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, - ACTIONS(3305), 1, - anon_sym_SEMI, - ACTIONS(3353), 1, - anon_sym_RBRACE, + STATE(162), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114406,57 +111528,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44139] = 20, - ACTIONS(3016), 1, + [43374] = 21, + ACTIONS(574), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, + STATE(223), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3355), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114467,58 +111590,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44220] = 21, - ACTIONS(3016), 1, + [43457] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, - anon_sym_DOT_DOT, - ACTIONS(3305), 1, - anon_sym_SEMI, - ACTIONS(3357), 1, - anon_sym_RBRACE, + ACTIONS(3325), 1, + anon_sym_LBRACE, + STATE(159), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114529,57 +111652,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44303] = 20, - ACTIONS(3016), 1, + [43540] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3327), 1, + anon_sym_RBRACE, + ACTIONS(3329), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3078), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114590,58 +111714,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44384] = 21, - ACTIONS(3016), 1, + [43623] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3359), 1, - anon_sym_LBRACE, - STATE(167), 1, - sym_match_block, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, + anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_SEMI, + ACTIONS(3331), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114652,58 +111776,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44467] = 21, - ACTIONS(3016), 1, + [43706] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_SEMI, - ACTIONS(3363), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3333), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114714,58 +111837,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44550] = 21, - ACTIONS(266), 1, - anon_sym_RBRACE, - ACTIONS(3016), 1, + [43787] = 7, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, - anon_sym_AMP, - ACTIONS(3040), 1, - anon_sym_AMP_AMP, - ACTIONS(3042), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, - anon_sym_PIPE, - ACTIONS(3046), 1, - anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3054), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3036), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3052), 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(3084), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114776,58 +111885,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44633] = 21, - ACTIONS(562), 1, + [43842] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(251), 1, + STATE(104), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114838,58 +111947,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44716] = 21, - ACTIONS(284), 1, + [43925] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(1128), 1, + STATE(181), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114900,57 +112009,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44799] = 20, - ACTIONS(3016), 1, + [44008] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3335), 1, + anon_sym_SEMI, + ACTIONS(3337), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3365), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114961,57 +112071,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44880] = 20, - ACTIONS(3016), 1, + [44091] = 21, + ACTIONS(574), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, + STATE(238), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3231), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3237), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3253), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3257), 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, + [44174] = 20, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3367), 2, + ACTIONS(3339), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115022,114 +112194,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44961] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3369), 1, - sym_identifier, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3373), 1, - anon_sym_RBRACE, - ACTIONS(3375), 1, - anon_sym_STAR, - ACTIONS(3379), 1, - anon_sym_COMMA, - ACTIONS(3381), 1, - anon_sym_COLON_COLON, - ACTIONS(3385), 1, - sym_metavariable, - STATE(1766), 1, - sym_scoped_identifier, - STATE(2468), 1, - sym_generic_type_with_turbofish, - STATE(2514), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3383), 3, - sym_self, - sym_super, - sym_crate, - STATE(2093), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3377), 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, - [45032] = 21, - ACTIONS(562), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, + [44255] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(255), 1, - sym_block, + ACTIONS(3341), 1, + anon_sym_LBRACE, + STATE(236), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115140,57 +112256,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45115] = 20, - ACTIONS(3016), 1, + [44338] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3387), 2, + ACTIONS(3343), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115201,58 +112317,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45196] = 21, - ACTIONS(562), 1, + [44419] = 21, + ACTIONS(574), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(236), 1, + STATE(218), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115263,58 +112379,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45279] = 21, - ACTIONS(562), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, + [44502] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - STATE(223), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, + anon_sym_DOT_DOT, + ACTIONS(3345), 1, + anon_sym_SEMI, + ACTIONS(3347), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115325,58 +112441,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45362] = 21, - ACTIONS(3016), 1, + [44585] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, - anon_sym_RBRACE, - ACTIONS(3391), 1, + ACTIONS(3349), 1, + anon_sym_RPAREN, + ACTIONS(3351), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115387,58 +112503,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45445] = 21, - ACTIONS(562), 1, + [44668] = 21, + ACTIONS(574), 1, anon_sym_LBRACE, - ACTIONS(3016), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3263), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(238), 1, + STATE(217), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115449,58 +112565,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45528] = 21, - ACTIONS(562), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, + [44751] = 21, + ACTIONS(109), 1, + anon_sym_RBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - STATE(232), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, + anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115511,46 +112627,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45611] = 9, - ACTIONS(3016), 1, + [44834] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3353), 1, + anon_sym_SEMI, + ACTIONS(3355), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3289), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3024), 10, + ACTIONS(3008), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3014), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115561,55 +112689,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45670] = 18, - ACTIONS(3016), 1, + [44917] = 21, + ACTIONS(574), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3135), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3273), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3291), 1, - anon_sym_DOT_DOT, + STATE(235), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3133), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115620,51 +112751,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45747] = 14, - ACTIONS(3016), 1, + [45000] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3277), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3291), 1, - anon_sym_DOT_DOT, + STATE(101), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3289), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3024), 3, - anon_sym_EQ, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3261), 3, + ACTIONS(3241), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3014), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115675,48 +112813,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45816] = 11, - ACTIONS(3016), 1, + [45083] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3283), 2, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3357), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3024), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3014), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115727,53 +112874,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45879] = 16, - ACTIONS(3016), 1, + [45164] = 18, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, + ACTIONS(3020), 1, + anon_sym_DOT, ACTIONS(3024), 1, anon_sym_EQ, - ACTIONS(3030), 1, - anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3277), 1, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3014), 15, + ACTIONS(3022), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115784,58 +112933,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45952] = 21, - ACTIONS(3016), 1, + [45241] = 21, + ACTIONS(115), 1, + anon_sym_RBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, + ACTIONS(3273), 1, anon_sym_SEMI, - ACTIONS(3393), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115846,58 +112995,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46035] = 21, - ACTIONS(562), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, + [45324] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - STATE(241), 1, - sym_block, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, + anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_SEMI, + ACTIONS(3359), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115908,58 +113057,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46118] = 21, - ACTIONS(3016), 1, + [45407] = 7, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, - anon_sym_AMP, - ACTIONS(3271), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, - anon_sym_AMP_AMP, - ACTIONS(3275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, - anon_sym_PIPE, - ACTIONS(3279), 1, - anon_sym_CARET, - ACTIONS(3395), 1, - anon_sym_LBRACE, - STATE(240), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3133), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3265), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3131), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -115970,54 +113105,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46201] = 17, - ACTIONS(3016), 1, + [45462] = 21, + ACTIONS(272), 1, + anon_sym_RBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3024), 1, - anon_sym_EQ, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3273), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3277), 1, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3014), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116028,58 +113167,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46276] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3016), 1, + [45545] = 18, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3263), 1, - anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - STATE(105), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3261), 3, + ACTIONS(3263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3285), 10, + ACTIONS(282), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116090,58 +113226,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46359] = 21, - ACTIONS(258), 1, - anon_sym_RBRACE, - ACTIONS(3016), 1, + [45622] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, + ACTIONS(3361), 1, anon_sym_SEMI, + ACTIONS(3363), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116152,55 +113288,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46442] = 18, - ACTIONS(3016), 1, + [45705] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3143), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3267), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3273), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3275), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3277), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3279), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3291), 1, - anon_sym_DOT_DOT, + STATE(798), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3281), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3141), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116211,47 +113350,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46519] = 10, - ACTIONS(3016), 1, + [45788] = 21, + ACTIONS(107), 1, + anon_sym_RBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3291), 1, + ACTIONS(3028), 1, + anon_sym_AMP, + ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3289), 2, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3024), 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(3014), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116262,49 +113412,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46580] = 12, - ACTIONS(3016), 1, + [45871] = 18, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3137), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3291), 1, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + ACTIONS(3265), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3283), 2, + ACTIONS(3237), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3024), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3014), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3135), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116315,44 +113471,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46645] = 13, - ACTIONS(3016), 1, + [45948] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3279), 1, - anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(1101), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3289), 2, + ACTIONS(3237), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3261), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3024), 4, + ACTIONS(3253), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3257), 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, + [46031] = 7, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3265), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3084), 13, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3014), 19, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3082), 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, @@ -116369,56 +113581,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46712] = 20, - ACTIONS(3016), 1, + [46086] = 18, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3129), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3080), 1, - anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3265), 1, anon_sym_DOT_DOT, - ACTIONS(3397), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3127), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116429,56 +113640,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46792] = 20, - ACTIONS(3016), 1, + [46163] = 21, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3399), 1, + ACTIONS(3273), 1, anon_sym_SEMI, + ACTIONS(3365), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116489,56 +113702,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46872] = 20, - ACTIONS(3016), 1, + [46246] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3401), 1, - anon_sym_RBRACK, + ACTIONS(3367), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116549,56 +113762,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46952] = 20, - ACTIONS(3016), 1, + [46326] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3403), 1, + ACTIONS(3369), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116609,56 +113822,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47032] = 20, - ACTIONS(3016), 1, + [46406] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3405), 1, - anon_sym_EQ_GT, + ACTIONS(3371), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116669,56 +113882,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47112] = 20, - ACTIONS(3016), 1, + [46486] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3407), 1, - anon_sym_COMMA, + ACTIONS(3273), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116729,56 +113942,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47192] = 20, - ACTIONS(3016), 1, + [46566] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3409), 1, - anon_sym_SEMI, + ACTIONS(3373), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116789,56 +114002,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47272] = 20, - ACTIONS(3016), 1, + [46646] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3411), 1, - anon_sym_RBRACK, + ACTIONS(3375), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116849,56 +114062,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47352] = 20, - ACTIONS(3016), 1, + [46726] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3413), 1, - anon_sym_SEMI, + ACTIONS(3377), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116909,56 +114122,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47432] = 20, - ACTIONS(3016), 1, + [46806] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3287), 1, + sym_identifier, + ACTIONS(3289), 1, + anon_sym_LBRACE, + ACTIONS(3293), 1, + anon_sym_STAR, + ACTIONS(3299), 1, + anon_sym_COLON_COLON, + ACTIONS(3303), 1, + sym_metavariable, + ACTIONS(3379), 1, + anon_sym_RBRACE, + STATE(1789), 1, + sym_scoped_identifier, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2499), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3301), 3, + sym_self, + sym_super, + sym_crate, + STATE(2225), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3295), 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, + [46874] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3415), 1, + ACTIONS(3381), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116969,56 +114236,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47512] = 20, - ACTIONS(3016), 1, + [46954] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3417), 1, + ACTIONS(3383), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117029,56 +114296,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47592] = 20, - ACTIONS(3016), 1, + [47034] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3419), 1, + ACTIONS(3385), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117089,56 +114356,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47672] = 20, - ACTIONS(3016), 1, + [47114] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, + ACTIONS(3387), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117149,56 +114416,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47752] = 20, - ACTIONS(3016), 1, + [47194] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_COMMA, + ACTIONS(3389), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117209,56 +114476,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47832] = 20, - ACTIONS(3016), 1, + [47274] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3287), 1, + sym_identifier, + ACTIONS(3289), 1, + anon_sym_LBRACE, + ACTIONS(3293), 1, + anon_sym_STAR, + ACTIONS(3299), 1, + anon_sym_COLON_COLON, + ACTIONS(3303), 1, + sym_metavariable, + ACTIONS(3391), 1, + anon_sym_RBRACE, + STATE(1789), 1, + sym_scoped_identifier, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2499), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3301), 3, + sym_self, + sym_super, + sym_crate, + STATE(2225), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3295), 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, + [47342] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3421), 1, - anon_sym_SEMI, + ACTIONS(3393), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117269,56 +114590,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47912] = 20, - ACTIONS(3016), 1, + [47422] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3423), 1, + ACTIONS(3395), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117329,56 +114650,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47992] = 20, - ACTIONS(3016), 1, + [47502] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3425), 1, + ACTIONS(3397), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117389,56 +114710,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48072] = 20, - ACTIONS(3016), 1, + [47582] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3427), 1, + ACTIONS(3399), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117449,56 +114770,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48152] = 20, - ACTIONS(3016), 1, + [47662] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3429), 1, + ACTIONS(3401), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117509,56 +114830,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48232] = 20, - ACTIONS(3016), 1, + [47742] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3431), 1, - anon_sym_SEMI, + ACTIONS(3403), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117569,56 +114890,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48312] = 20, - ACTIONS(3016), 1, + [47822] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3433), 1, - anon_sym_RBRACK, + ACTIONS(3267), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117629,110 +114950,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48392] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3369), 1, - sym_identifier, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3375), 1, - anon_sym_STAR, - ACTIONS(3381), 1, - anon_sym_COLON_COLON, - ACTIONS(3385), 1, - sym_metavariable, - ACTIONS(3435), 1, - anon_sym_RBRACE, - STATE(1766), 1, - sym_scoped_identifier, - STATE(2468), 1, - sym_generic_type_with_turbofish, - STATE(2514), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3383), 3, - sym_self, - sym_super, - sym_crate, - STATE(2237), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3377), 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, - [48460] = 20, - ACTIONS(3016), 1, + [47902] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3437), 1, + ACTIONS(3405), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117743,110 +115010,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48540] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3369), 1, - sym_identifier, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3375), 1, - anon_sym_STAR, - ACTIONS(3381), 1, - anon_sym_COLON_COLON, - ACTIONS(3385), 1, - sym_metavariable, - ACTIONS(3439), 1, - anon_sym_RBRACE, - STATE(1766), 1, - sym_scoped_identifier, - STATE(2468), 1, - sym_generic_type_with_turbofish, - STATE(2514), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3383), 3, - sym_self, - sym_super, - sym_crate, - STATE(2237), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3377), 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, - [48608] = 20, - ACTIONS(3016), 1, + [47982] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3441), 1, + ACTIONS(3407), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117857,56 +115070,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48688] = 20, - ACTIONS(3016), 1, + [48062] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3443), 1, - anon_sym_COMMA, + ACTIONS(3409), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117917,56 +115130,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48768] = 20, - ACTIONS(3016), 1, + [48142] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3030), 1, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3445), 1, + ACTIONS(3411), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117977,56 +115190,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48848] = 20, - ACTIONS(3016), 1, + [48222] = 20, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3022), 1, + ACTIONS(3012), 1, anon_sym_as, + ACTIONS(3020), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP, ACTIONS(3030), 1, + anon_sym_AMP_AMP, + ACTIONS(3032), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3034), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + anon_sym_CARET, + ACTIONS(3058), 1, + anon_sym_QMARK, + ACTIONS(3060), 1, + anon_sym_EQ, + ACTIONS(3189), 1, + anon_sym_DOT_DOT, + ACTIONS(3413), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3040), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3187), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3010), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3062), 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, + [48302] = 20, + ACTIONS(3006), 1, + anon_sym_LBRACK, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3020), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3028), 1, anon_sym_AMP, - ACTIONS(3040), 1, + ACTIONS(3030), 1, anon_sym_AMP_AMP, - ACTIONS(3042), 1, + ACTIONS(3032), 1, anon_sym_PIPE_PIPE, - ACTIONS(3044), 1, + ACTIONS(3034), 1, anon_sym_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_CARET, - ACTIONS(3080), 1, + ACTIONS(3058), 1, anon_sym_QMARK, - ACTIONS(3082), 1, + ACTIONS(3060), 1, anon_sym_EQ, - ACTIONS(3223), 1, + ACTIONS(3189), 1, anon_sym_DOT_DOT, - ACTIONS(3447), 1, + ACTIONS(3415), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3036), 2, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3050), 2, + ACTIONS(3040), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3221), 2, + ACTIONS(3187), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3020), 3, + ACTIONS(3010), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3048), 4, + ACTIONS(3038), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3084), 10, + ACTIONS(3062), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118037,39 +115310,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48928] = 13, + [48382] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3369), 1, + ACTIONS(3287), 1, sym_identifier, - ACTIONS(3371), 1, + ACTIONS(3289), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, + ACTIONS(3293), 1, anon_sym_STAR, - ACTIONS(3381), 1, + ACTIONS(3299), 1, anon_sym_COLON_COLON, - ACTIONS(3385), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1766), 1, + STATE(1789), 1, sym_scoped_identifier, - STATE(2468), 1, + STATE(2375), 1, sym_generic_type_with_turbofish, - STATE(2514), 1, + STATE(2499), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3383), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - STATE(2452), 5, + STATE(2376), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3377), 19, + ACTIONS(3295), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118089,39 +115362,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48993] = 13, + [48447] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3369), 1, + ACTIONS(3287), 1, sym_identifier, - ACTIONS(3371), 1, + ACTIONS(3289), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, + ACTIONS(3293), 1, anon_sym_STAR, - ACTIONS(3381), 1, + ACTIONS(3299), 1, anon_sym_COLON_COLON, - ACTIONS(3385), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1766), 1, + STATE(1789), 1, sym_scoped_identifier, - STATE(2468), 1, + STATE(2375), 1, sym_generic_type_with_turbofish, - STATE(2514), 1, + STATE(2499), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3383), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - STATE(2237), 5, + STATE(2424), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3377), 19, + ACTIONS(3295), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118141,39 +115414,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49058] = 13, + [48512] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3369), 1, + ACTIONS(3287), 1, sym_identifier, - ACTIONS(3371), 1, + ACTIONS(3289), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, + ACTIONS(3293), 1, anon_sym_STAR, - ACTIONS(3381), 1, + ACTIONS(3299), 1, anon_sym_COLON_COLON, - ACTIONS(3385), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1766), 1, + STATE(1789), 1, sym_scoped_identifier, - STATE(2468), 1, + STATE(2375), 1, sym_generic_type_with_turbofish, - STATE(2514), 1, + STATE(2499), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3383), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - STATE(2497), 5, + STATE(2490), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3377), 19, + ACTIONS(3295), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118193,39 +115466,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49123] = 13, + [48577] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3369), 1, + ACTIONS(3287), 1, sym_identifier, - ACTIONS(3371), 1, + ACTIONS(3289), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, + ACTIONS(3293), 1, anon_sym_STAR, - ACTIONS(3381), 1, + ACTIONS(3299), 1, anon_sym_COLON_COLON, - ACTIONS(3385), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1766), 1, + STATE(1789), 1, sym_scoped_identifier, - STATE(2468), 1, + STATE(2375), 1, sym_generic_type_with_turbofish, - STATE(2514), 1, + STATE(2499), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3383), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - STATE(2589), 5, + STATE(2225), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3377), 19, + ACTIONS(3295), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118245,39 +115518,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49188] = 13, + [48642] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3369), 1, + ACTIONS(3287), 1, sym_identifier, - ACTIONS(3371), 1, + ACTIONS(3289), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, + ACTIONS(3293), 1, anon_sym_STAR, - ACTIONS(3381), 1, + ACTIONS(3299), 1, anon_sym_COLON_COLON, - ACTIONS(3385), 1, + ACTIONS(3303), 1, sym_metavariable, - STATE(1766), 1, + STATE(1789), 1, sym_scoped_identifier, - STATE(2468), 1, + STATE(2375), 1, sym_generic_type_with_turbofish, - STATE(2514), 1, + STATE(2499), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3383), 3, + ACTIONS(3301), 3, sym_self, sym_super, sym_crate, - STATE(2525), 5, + STATE(2468), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3377), 19, + ACTIONS(3295), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118297,15 +115570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49253] = 3, + [48707] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3451), 3, + ACTIONS(3419), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3449), 28, + ACTIONS(3417), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118334,15 +115607,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49293] = 3, + [48747] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3455), 3, + ACTIONS(3423), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3453), 28, + ACTIONS(3421), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118371,15 +115644,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49333] = 3, + [48787] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3459), 3, + ACTIONS(3427), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3457), 28, + ACTIONS(3425), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118408,29 +115681,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49373] = 10, + [48827] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(880), 1, + ACTIONS(989), 1, anon_sym_COLON_COLON, - ACTIONS(3461), 1, + ACTIONS(3429), 1, sym_identifier, - ACTIONS(3467), 1, + ACTIONS(3435), 1, sym_metavariable, - STATE(2196), 1, + STATE(1645), 1, sym_scoped_identifier, - STATE(2468), 1, + STATE(2354), 1, + sym_attribute, + STATE(2375), 1, sym_generic_type_with_turbofish, - STATE(2514), 1, + STATE(2499), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3465), 3, + ACTIONS(3433), 3, sym_self, sym_super, sym_crate, - ACTIONS(3463), 19, + ACTIONS(3431), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118450,29 +115725,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49425] = 10, + [48882] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(880), 1, + ACTIONS(989), 1, anon_sym_COLON_COLON, - ACTIONS(3469), 1, + ACTIONS(3429), 1, sym_identifier, - ACTIONS(3475), 1, + ACTIONS(3435), 1, sym_metavariable, - STATE(2191), 1, + STATE(1645), 1, + sym_scoped_identifier, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2481), 1, + sym_attribute, + STATE(2499), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3433), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3431), 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, + [48937] = 11, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(989), 1, + anon_sym_COLON_COLON, + ACTIONS(3429), 1, + sym_identifier, + ACTIONS(3435), 1, + sym_metavariable, + STATE(1645), 1, + sym_scoped_identifier, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2499), 1, + sym_bracketed_type, + STATE(2541), 1, + sym_attribute, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3433), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3431), 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, + [48992] = 11, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(989), 1, + anon_sym_COLON_COLON, + ACTIONS(3429), 1, + sym_identifier, + ACTIONS(3435), 1, + sym_metavariable, + STATE(1645), 1, + sym_scoped_identifier, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2431), 1, + sym_attribute, + STATE(2499), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3433), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3431), 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, + [49047] = 11, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(989), 1, + anon_sym_COLON_COLON, + ACTIONS(3429), 1, + sym_identifier, + ACTIONS(3435), 1, + sym_metavariable, + STATE(1645), 1, + sym_scoped_identifier, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2383), 1, + sym_attribute, + STATE(2499), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3433), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3431), 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, + [49102] = 11, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(989), 1, + anon_sym_COLON_COLON, + ACTIONS(3429), 1, + sym_identifier, + ACTIONS(3435), 1, + sym_metavariable, + STATE(1645), 1, + sym_scoped_identifier, + STATE(2349), 1, + sym_attribute, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2499), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3433), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3431), 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, + [49157] = 11, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(989), 1, + anon_sym_COLON_COLON, + ACTIONS(3429), 1, + sym_identifier, + ACTIONS(3435), 1, + sym_metavariable, + STATE(1645), 1, + sym_scoped_identifier, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2449), 1, + sym_attribute, + STATE(2499), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3433), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3431), 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, + [49212] = 10, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(989), 1, + anon_sym_COLON_COLON, + ACTIONS(3437), 1, + sym_identifier, + ACTIONS(3443), 1, + sym_metavariable, + STATE(2164), 1, + sym_scoped_identifier, + STATE(2375), 1, + sym_generic_type_with_turbofish, + STATE(2499), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3441), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3439), 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, + [49264] = 10, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(989), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + sym_identifier, + ACTIONS(3451), 1, + sym_metavariable, + STATE(2286), 1, sym_scoped_identifier, - STATE(2468), 1, + STATE(2375), 1, sym_generic_type_with_turbofish, - STATE(2514), 1, + STATE(2499), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3473), 3, + ACTIONS(3449), 3, sym_self, sym_super, sym_crate, - ACTIONS(3471), 19, + ACTIONS(3447), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118492,7 +116073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49477] = 3, + [49316] = 3, ACTIONS(2407), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -118520,13 +116101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49508] = 3, - ACTIONS(2403), 1, + [49347] = 3, + ACTIONS(2393), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 21, + ACTIONS(2395), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -118548,191 +116129,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49539] = 11, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_LBRACE, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3493), 1, - anon_sym_AT, - STATE(1392), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3483), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3477), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [49585] = 9, - ACTIONS(2594), 1, - anon_sym_COLON, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_COLON_COLON, - STATE(1392), 1, - sym_type_arguments, - STATE(1407), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 13, - 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_else, - anon_sym_PIPE, - [49626] = 8, - ACTIONS(2608), 1, - anon_sym_COLON, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, + [49378] = 11, + ACTIONS(3455), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_COLON_COLON, - STATE(1392), 1, - sym_type_arguments, - STATE(1407), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 13, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3457), 1, 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_else, - anon_sym_PIPE, - [49664] = 4, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(3463), 1, + anon_sym_COLON_COLON, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3469), 1, + anon_sym_AT, + STATE(1382), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2642), 2, + ACTIONS(3459), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2644), 15, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3453), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_if, - anon_sym_BANG, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49694] = 4, - ACTIONS(2616), 1, + [49424] = 9, + ACTIONS(2584), 1, anon_sym_COLON, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1385), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2614), 16, + ACTIONS(2580), 13, 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_else, - anon_sym_LT2, anon_sym_PIPE, - [49724] = 4, - ACTIONS(2640), 1, + [49465] = 8, + ACTIONS(2598), 1, anon_sym_COLON, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1385), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2638), 16, + ACTIONS(2596), 13, 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_else, - anon_sym_LT2, anon_sym_PIPE, - [49754] = 4, - ACTIONS(2652), 1, + [49503] = 4, + ACTIONS(2606), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 2, + ACTIONS(2610), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2650), 16, + ACTIONS(2604), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118749,17 +116252,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [49784] = 4, + [49533] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 2, + ACTIONS(2632), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2654), 2, + ACTIONS(2636), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2656), 15, + ACTIONS(2638), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118775,17 +116278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49814] = 4, + [49563] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 2, + ACTIONS(2640), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2630), 2, + ACTIONS(2644), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2632), 15, + ACTIONS(2646), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118801,17 +116304,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49844] = 4, + [49593] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(2604), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2618), 2, + ACTIONS(2608), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2620), 15, + ACTIONS(2610), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118827,46 +116330,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49874] = 8, - ACTIONS(2604), 1, + [49623] = 4, + ACTIONS(2618), 1, anon_sym_COLON, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_COLON_COLON, - STATE(1392), 1, - sym_type_arguments, - STATE(1407), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 13, + ACTIONS(2622), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2616), 16, 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_else, + anon_sym_LT2, anon_sym_PIPE, - [49912] = 4, - ACTIONS(2628), 1, + [49653] = 4, + ACTIONS(2634), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 2, + ACTIONS(2638), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2626), 16, + ACTIONS(2632), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118883,62 +116382,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [49942] = 3, + [49683] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 2, + ACTIONS(2616), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2620), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2620), 16, + ACTIONS(2622), 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_else, anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49969] = 3, + [49713] = 4, + ACTIONS(2642), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2632), 16, + ACTIONS(2646), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2640), 16, 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_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, + anon_sym_LT2, + anon_sym_PIPE, + [49743] = 8, + ACTIONS(2594), 1, + anon_sym_COLON, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - anon_sym_in, + STATE(1382), 1, + sym_type_arguments, + STATE(1385), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 13, + 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_else, anon_sym_PIPE, - [49996] = 3, + [49781] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 2, + ACTIONS(2644), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2656), 16, + ACTIONS(2646), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118955,19 +116488,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [50023] = 6, - ACTIONS(3491), 1, + [49808] = 6, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - STATE(1387), 1, + STATE(1383), 1, sym_type_arguments, - STATE(1396), 1, + STATE(1410), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 14, + ACTIONS(2628), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -118982,19 +116515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50056] = 6, - ACTIONS(3491), 1, + [49841] = 6, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - STATE(1387), 1, + STATE(1383), 1, sym_type_arguments, - STATE(1396), 1, + STATE(1410), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 14, + ACTIONS(2624), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119009,19 +116542,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50089] = 6, - ACTIONS(3491), 1, + [49874] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2620), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2622), 16, + 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_else, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [49901] = 6, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - STATE(1387), 1, + STATE(1383), 1, sym_type_arguments, - STATE(1396), 1, + STATE(1410), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 14, + ACTIONS(2600), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119036,7 +116593,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50122] = 3, + [49934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2636), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2638), 16, + 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_else, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [49961] = 3, ACTIONS(634), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -119059,50 +116640,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50148] = 17, - ACTIONS(3501), 1, + [49987] = 17, + ACTIONS(3477), 1, anon_sym_const, - ACTIONS(3503), 1, + ACTIONS(3479), 1, anon_sym_enum, - ACTIONS(3505), 1, + ACTIONS(3481), 1, anon_sym_fn, - ACTIONS(3507), 1, + ACTIONS(3483), 1, anon_sym_mod, - ACTIONS(3509), 1, + ACTIONS(3485), 1, anon_sym_static, - ACTIONS(3511), 1, + ACTIONS(3487), 1, anon_sym_struct, - ACTIONS(3513), 1, + ACTIONS(3489), 1, anon_sym_trait, - ACTIONS(3515), 1, + ACTIONS(3491), 1, anon_sym_type, - ACTIONS(3517), 1, + ACTIONS(3493), 1, anon_sym_union, - ACTIONS(3519), 1, + ACTIONS(3495), 1, anon_sym_unsafe, - ACTIONS(3521), 1, + ACTIONS(3497), 1, anon_sym_use, - ACTIONS(3523), 1, + ACTIONS(3499), 1, anon_sym_extern, - STATE(1557), 1, + STATE(1553), 1, sym_extern_modifier, - STATE(1583), 1, + STATE(1569), 1, aux_sym_function_modifiers_repeat1, - STATE(2609), 1, + STATE(2362), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3499), 2, + ACTIONS(3475), 2, anon_sym_async, anon_sym_default, - [50202] = 3, - ACTIONS(666), 1, + [50041] = 3, + ACTIONS(674), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(664), 16, + ACTIONS(672), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119119,60 +116700,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50228] = 17, - ACTIONS(3525), 1, - anon_sym_const, - ACTIONS(3527), 1, - anon_sym_enum, - ACTIONS(3529), 1, - anon_sym_fn, - ACTIONS(3531), 1, - anon_sym_mod, - ACTIONS(3533), 1, - anon_sym_static, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3537), 1, - anon_sym_trait, - ACTIONS(3539), 1, - anon_sym_type, - ACTIONS(3541), 1, - anon_sym_union, - ACTIONS(3543), 1, - anon_sym_unsafe, - ACTIONS(3545), 1, - anon_sym_use, - ACTIONS(3547), 1, - anon_sym_extern, - STATE(1527), 1, - sym_extern_modifier, - STATE(1583), 1, - aux_sym_function_modifiers_repeat1, - STATE(2538), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3499), 2, - anon_sym_async, - anon_sym_default, - [50282] = 7, - ACTIONS(3479), 1, + [50067] = 7, + ACTIONS(3455), 1, anon_sym_LPAREN, - ACTIONS(3485), 1, + ACTIONS(3461), 1, anon_sym_BANG, - ACTIONS(3549), 1, + ACTIONS(3501), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3483), 2, + ACTIONS(3459), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3489), 2, + ACTIONS(3465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3477), 10, + ACTIONS(3453), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -119183,35 +116727,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50316] = 2, + [50101] = 3, + ACTIONS(602), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 17, + ACTIONS(600), 16, 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_for, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_LT2, + anon_sym_in, anon_sym_PIPE, - [50340] = 3, - ACTIONS(622), 1, + [50127] = 3, + ACTIONS(670), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 16, + ACTIONS(668), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119228,61 +116773,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50366] = 3, - ACTIONS(642), 1, - anon_sym_EQ, + [50153] = 17, + ACTIONS(3503), 1, + anon_sym_const, + ACTIONS(3505), 1, + anon_sym_enum, + ACTIONS(3507), 1, + anon_sym_fn, + ACTIONS(3509), 1, + anon_sym_mod, + ACTIONS(3511), 1, + anon_sym_static, + ACTIONS(3513), 1, + anon_sym_struct, + ACTIONS(3515), 1, + anon_sym_trait, + ACTIONS(3517), 1, + anon_sym_type, + ACTIONS(3519), 1, + anon_sym_union, + ACTIONS(3521), 1, + anon_sym_unsafe, + ACTIONS(3523), 1, + anon_sym_use, + ACTIONS(3525), 1, + anon_sym_extern, + STATE(1537), 1, + sym_extern_modifier, + STATE(1569), 1, + aux_sym_function_modifiers_repeat1, + STATE(2581), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3475), 2, + anon_sym_async, + anon_sym_default, + [50207] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(640), 16, + ACTIONS(2604), 17, 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_for, anon_sym_where, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [50392] = 6, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3557), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3553), 2, - anon_sym_COLON, anon_sym_EQ, - ACTIONS(3559), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3551), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_in, + anon_sym_LT2, anon_sym_PIPE, - [50423] = 3, - ACTIONS(2684), 1, + [50231] = 3, + ACTIONS(2742), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2682), 15, + ACTIONS(2740), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119298,13 +116854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [50448] = 3, - ACTIONS(2730), 1, + [50256] = 3, + ACTIONS(2770), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 15, + ACTIONS(2768), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119320,56 +116876,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [50473] = 3, - ACTIONS(2758), 1, - anon_sym_COLON, + [50281] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, + ACTIONS(3000), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, + sym_mutable_specifier, + anon_sym_PIPE, + sym_self, + [50304] = 6, + ACTIONS(3531), 1, + anon_sym_BANG, + ACTIONS(3533), 1, anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3529), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3535), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3527), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [50498] = 2, + [50335] = 3, + ACTIONS(2788), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2974), 16, + ACTIONS(2786), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - sym_mutable_specifier, + anon_sym_COLON_COLON, anon_sym_PIPE, - sym_self, - [50521] = 3, - ACTIONS(3561), 1, + [50360] = 3, + ACTIONS(3537), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3211), 15, + ACTIONS(3177), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -119385,13 +116966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50546] = 3, - ACTIONS(2688), 1, + [50385] = 3, + ACTIONS(2694), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 15, + ACTIONS(2692), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119407,13 +116988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [50571] = 3, - ACTIONS(2716), 1, + [50410] = 3, + ACTIONS(2690), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 15, + ACTIONS(2688), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119429,33 +117010,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [50596] = 2, + [50435] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 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_DASH_GT, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [50618] = 3, - ACTIONS(3563), 1, + ACTIONS(3199), 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, + [50457] = 3, + ACTIONS(3539), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 14, + ACTIONS(2762), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119470,13 +117051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50642] = 3, - ACTIONS(3565), 1, + [50481] = 3, + ACTIONS(3541), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 14, + ACTIONS(2772), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119491,11 +117072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50666] = 2, + [50505] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 15, + ACTIONS(2724), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119511,11 +117092,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50688] = 2, + [50527] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3229), 15, + ACTIONS(3195), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -119531,52 +117112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50710] = 3, - ACTIONS(3567), 1, + [50549] = 3, + ACTIONS(3543), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2788), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [50734] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3203), 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, - [50756] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2700), 15, + ACTIONS(2672), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119588,117 +117130,10 @@ 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_else, anon_sym_PIPE, - [50778] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3207), 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, - [50800] = 5, - ACTIONS(3557), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3553), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3559), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3551), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [50828] = 14, - ACTIONS(2590), 1, - anon_sym_PLUS, - ACTIONS(3477), 1, - anon_sym_PIPE, - ACTIONS(3481), 1, - anon_sym_LBRACE, - ACTIONS(3483), 1, - anon_sym_COLON, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3493), 1, - anon_sym_AT, - ACTIONS(3569), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - STATE(1392), 1, - sym_type_arguments, - STATE(1407), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3571), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [50874] = 13, - ACTIONS(3477), 1, - anon_sym_PIPE, - ACTIONS(3481), 1, - anon_sym_LBRACE, - ACTIONS(3483), 1, - anon_sym_COLON, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3493), 1, - anon_sym_AT, - ACTIONS(3576), 1, - anon_sym_LPAREN, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - STATE(1392), 1, - sym_type_arguments, - STATE(1407), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2590), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [50918] = 2, + [50573] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -119718,13 +117153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50940] = 3, - ACTIONS(3580), 1, - anon_sym_DASH_GT, + [50595] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2768), 14, + ACTIONS(2782), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119736,18 +117169,19 @@ 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_else, anon_sym_PIPE, - [50964] = 4, - ACTIONS(2612), 1, + [50617] = 4, + ACTIONS(2630), 1, anon_sym_COLON, - ACTIONS(3582), 1, + ACTIONS(3181), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 13, + ACTIONS(2628), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119761,13 +117195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50990] = 3, - ACTIONS(2399), 1, + [50643] = 3, + ACTIONS(2435), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2401), 14, + ACTIONS(2437), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -119782,13 +117216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51014] = 3, - ACTIONS(3584), 1, - anon_sym_DASH_GT, + [50667] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 14, + ACTIONS(2778), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119800,16 +117232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51038] = 3, - ACTIONS(3586), 1, + [50689] = 3, + ACTIONS(3545), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 14, + ACTIONS(2734), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119824,13 +117257,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51062] = 3, - ACTIONS(3588), 1, + [50713] = 13, + ACTIONS(3453), 1, + anon_sym_PIPE, + ACTIONS(3457), 1, + anon_sym_LBRACE, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3469), 1, + anon_sym_AT, + ACTIONS(3547), 1, + anon_sym_LPAREN, + ACTIONS(3549), 1, anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1385), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3215), 14, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2580), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [50757] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3205), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -119845,15 +117307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [51086] = 4, - ACTIONS(2624), 1, + sym_identifier, + [50779] = 4, + ACTIONS(2630), 1, anon_sym_COLON, - ACTIONS(3582), 1, + ACTIONS(3551), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, + ACTIONS(2628), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119867,44 +117330,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51112] = 13, - ACTIONS(3481), 1, + [50805] = 13, + ACTIONS(3457), 1, anon_sym_LBRACE, - ACTIONS(3485), 1, + ACTIONS(3461), 1, anon_sym_BANG, - ACTIONS(3491), 1, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3493), 1, + ACTIONS(3469), 1, anon_sym_AT, - ACTIONS(3571), 1, - anon_sym_RBRACK, - ACTIONS(3590), 1, + ACTIONS(3553), 1, anon_sym_LPAREN, - ACTIONS(3592), 1, + ACTIONS(3555), 1, + anon_sym_RBRACK, + ACTIONS(3558), 1, anon_sym_COLON_COLON, - STATE(1392), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1407), 1, + STATE(1385), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 2, + ACTIONS(2580), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3477), 2, + ACTIONS(3453), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3489), 2, + ACTIONS(3465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51156] = 3, - ACTIONS(3594), 1, - anon_sym_DASH_GT, + [50849] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2744), 14, + ACTIONS(2750), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119916,23 +117377,23 @@ 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_else, anon_sym_PIPE, - [51180] = 4, - ACTIONS(2648), 1, - anon_sym_COLON, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, + [50871] = 3, + ACTIONS(3560), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 13, + ACTIONS(2680), 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, @@ -119941,11 +117402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51206] = 2, + [50895] = 3, + ACTIONS(3562), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, + ACTIONS(2744), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -119957,39 +117420,48 @@ 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_else, anon_sym_PIPE, - [51228] = 4, - ACTIONS(2624), 1, + [50919] = 14, + ACTIONS(2580), 1, + anon_sym_PLUS, + ACTIONS(3453), 1, + anon_sym_PIPE, + ACTIONS(3457), 1, + anon_sym_LBRACE, + ACTIONS(3459), 1, anon_sym_COLON, - ACTIONS(3237), 1, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3469), 1, + anon_sym_AT, + ACTIONS(3564), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, anon_sym_COLON_COLON, + STATE(1382), 1, + sym_type_arguments, + STATE(1385), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, - anon_sym_SEMI, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3555), 2, 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_else, - anon_sym_PIPE, - [51254] = 3, - ACTIONS(2844), 1, + [50965] = 3, + ACTIONS(3568), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3215), 14, + ACTIONS(3179), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -120004,15 +117476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [51278] = 4, - ACTIONS(2624), 1, + [50989] = 4, + ACTIONS(2626), 1, anon_sym_COLON, - ACTIONS(3596), 1, + ACTIONS(3570), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, + ACTIONS(2624), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120026,17 +117498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51304] = 2, + [51015] = 4, + ACTIONS(2602), 1, + anon_sym_COLON, + ACTIONS(3570), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2906), 14, + ACTIONS(2600), 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, @@ -120045,17 +117520,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51325] = 2, + [51041] = 5, + ACTIONS(3533), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 14, + ACTIONS(3529), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3535), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3527), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [51069] = 4, + ACTIONS(2630), 1, anon_sym_COLON, + ACTIONS(3570), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2628), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -120064,84 +117565,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51346] = 14, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, + [51095] = 3, + ACTIONS(2950), 1, anon_sym_COLON_COLON, - ACTIONS(3598), 1, - anon_sym_COLON, - ACTIONS(3600), 1, - anon_sym_EQ, - ACTIONS(3602), 1, - anon_sym_COMMA, - ACTIONS(3604), 1, - anon_sym_GT, - STATE(1392), 1, - sym_type_arguments, - STATE(1407), 1, - sym_parameters, - STATE(2084), 1, - sym_trait_bounds, - STATE(2086), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 2, - anon_sym_PLUS, - anon_sym_as, - [51391] = 4, - ACTIONS(3608), 1, - anon_sym_pat, - STATE(595), 1, - sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [51416] = 4, - ACTIONS(3483), 1, - anon_sym_EQ, + ACTIONS(3179), 14, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + [51119] = 3, + ACTIONS(3572), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3477), 11, + ACTIONS(2696), 14, 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_else, - anon_sym_in, anon_sym_PIPE, - [51441] = 2, + [51143] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2898), 14, + ACTIONS(2866), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120156,11 +117626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51462] = 2, + [51164] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2832), 14, + ACTIONS(2600), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120175,11 +117645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51483] = 2, + [51185] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2820), 14, + ACTIONS(2834), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120194,11 +117664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51504] = 2, + [51206] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 14, + ACTIONS(2866), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120213,11 +117683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51525] = 2, + [51227] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2998), 14, + ACTIONS(2838), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120232,11 +117702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51546] = 2, + [51248] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2894), 14, + ACTIONS(2830), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120251,11 +117721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51567] = 2, + [51269] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2890), 14, + ACTIONS(2826), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120270,13 +117740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51588] = 3, - ACTIONS(3612), 1, + [51290] = 3, + ACTIONS(3576), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 13, + ACTIONS(3574), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120290,11 +117760,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51611] = 2, + [51313] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2816), 14, + ACTIONS(2842), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120309,30 +117779,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51632] = 2, + [51334] = 4, + ACTIONS(3459), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 14, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3453), 11, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51653] = 2, + [51359] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 14, + ACTIONS(2906), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120347,11 +117819,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51674] = 2, + [51380] = 4, + ACTIONS(3580), 1, + anon_sym_pat, + STATE(588), 1, + sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2886), 14, + ACTIONS(3578), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [51405] = 7, + ACTIONS(3529), 1, + anon_sym_COLON, + ACTIONS(3531), 1, + anon_sym_BANG, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3535), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3527), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2658), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51436] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2608), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2610), 12, + 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_else, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [51459] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2628), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120366,35 +117903,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51695] = 7, - ACTIONS(3553), 1, - anon_sym_COLON, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3614), 1, - anon_sym_COLON_COLON, + [51480] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3559), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3551), 3, + ACTIONS(2882), 14, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - ACTIONS(2672), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51726] = 2, + [51501] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2938), 14, + ACTIONS(2624), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120409,11 +117941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51747] = 2, + [51522] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2942), 14, + ACTIONS(2918), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120428,11 +117960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51768] = 2, + [51543] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 14, + ACTIONS(2960), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120447,30 +117979,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51789] = 2, + [51564] = 3, + ACTIONS(3586), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 14, + ACTIONS(3584), 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_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51810] = 2, + [51587] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 14, + ACTIONS(2980), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120485,11 +118018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51831] = 2, + [51608] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2934), 14, + ACTIONS(2976), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120504,11 +118037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51852] = 2, + [51629] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2934), 14, + ACTIONS(2890), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120523,31 +118056,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51873] = 3, - ACTIONS(3618), 1, - anon_sym_EQ, + [51650] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 13, + ACTIONS(2894), 14, 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_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51896] = 2, + [51671] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2946), 14, + ACTIONS(2898), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120562,11 +118094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51917] = 2, + [51692] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2950), 14, + ACTIONS(2996), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120581,31 +118113,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51938] = 3, + [51713] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2644), 12, + ACTIONS(2984), 14, 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_GT, anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [51961] = 2, + [51734] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2970), 14, + ACTIONS(2988), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -120620,32 +118151,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [51982] = 3, - ACTIONS(518), 1, - anon_sym_EQ, + [51755] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(516), 12, + ACTIONS(2922), 14, 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_else, - anon_sym_in, anon_sym_PIPE, - [52004] = 3, - ACTIONS(538), 1, + [51776] = 14, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + ACTIONS(3588), 1, + anon_sym_COLON, + ACTIONS(3590), 1, + anon_sym_EQ, + ACTIONS(3592), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, + anon_sym_GT, + STATE(1382), 1, + sym_type_arguments, + STATE(1385), 1, + sym_parameters, + STATE(1914), 1, + aux_sym_type_parameters_repeat1, + STATE(1918), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2580), 2, + anon_sym_PLUS, + anon_sym_as, + [51821] = 3, + ACTIONS(546), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(536), 12, + ACTIONS(544), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120658,55 +118220,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52026] = 3, - ACTIONS(542), 1, - anon_sym_EQ, + [51843] = 4, + ACTIONS(3600), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(540), 12, + ACTIONS(3598), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3596), 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_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52048] = 4, - ACTIONS(3588), 1, - anon_sym_COLON_COLON, + [51867] = 3, + ACTIONS(556), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3622), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3620), 10, + ACTIONS(554), 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_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52072] = 4, - ACTIONS(3588), 1, + [51889] = 4, + ACTIONS(3600), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3626), 2, + ACTIONS(3604), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3624), 10, + ACTIONS(3602), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120717,38 +118279,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52096] = 6, - ACTIONS(3555), 1, + [51913] = 6, + ACTIONS(3531), 1, anon_sym_BANG, - ACTIONS(3628), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3559), 2, + ACTIONS(3535), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3551), 3, + ACTIONS(3527), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2672), 6, + ACTIONS(2658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52124] = 4, - ACTIONS(3630), 1, + [51941] = 4, + ACTIONS(3612), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3626), 2, + ACTIONS(3610), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3624), 10, + ACTIONS(3608), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120759,16 +118321,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52148] = 4, - ACTIONS(3636), 1, + [51965] = 3, + ACTIONS(534), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(532), 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_GT, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [51987] = 4, + ACTIONS(3614), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3634), 2, + ACTIONS(3604), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3632), 10, + ACTIONS(3602), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120779,16 +118360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52172] = 4, - ACTIONS(3638), 1, + [52011] = 4, + ACTIONS(3612), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3626), 2, + ACTIONS(3618), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3624), 10, + ACTIONS(3616), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120799,16 +118380,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52196] = 4, - ACTIONS(3630), 1, + [52035] = 4, + ACTIONS(3614), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3622), 2, + ACTIONS(3598), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3620), 10, + ACTIONS(3596), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120819,16 +118400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52220] = 4, - ACTIONS(3638), 1, + [52059] = 4, + ACTIONS(3568), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3622), 2, + ACTIONS(3604), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3620), 10, + ACTIONS(3602), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120839,16 +118420,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52244] = 4, - ACTIONS(3636), 1, + [52083] = 4, + ACTIONS(3568), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 2, + ACTIONS(3598), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3640), 10, + ACTIONS(3596), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120859,33 +118440,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52268] = 5, - ACTIONS(2642), 1, + [52107] = 3, + ACTIONS(3622), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3620), 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_else, + anon_sym_in, + anon_sym_PIPE, + [52128] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 3, + ACTIONS(3624), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2604), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3644), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2644), 5, + ACTIONS(2610), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52293] = 3, - ACTIONS(3649), 1, + [52151] = 3, + ACTIONS(3629), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3647), 11, + ACTIONS(3627), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120897,13 +118495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52314] = 3, - ACTIONS(3626), 1, + [52172] = 3, + ACTIONS(3633), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 11, + ACTIONS(3631), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120915,13 +118513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52335] = 3, - ACTIONS(3483), 1, + [52193] = 3, + ACTIONS(3637), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 11, + ACTIONS(3635), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120933,13 +118531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52356] = 3, - ACTIONS(3653), 1, + [52214] = 3, + ACTIONS(610), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3651), 11, + ACTIONS(608), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120951,13 +118549,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52377] = 3, - ACTIONS(3657), 1, + [52235] = 3, + ACTIONS(3641), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3655), 11, + ACTIONS(3639), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120969,13 +118567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52398] = 3, - ACTIONS(3661), 1, + [52256] = 3, + ACTIONS(3645), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3659), 11, + ACTIONS(3643), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -120987,51 +118585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52419] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3663), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2620), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52442] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3666), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2650), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2656), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52465] = 3, - ACTIONS(3671), 1, + [52277] = 3, + ACTIONS(3598), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3669), 11, + ACTIONS(3596), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121043,13 +118603,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52486] = 3, - ACTIONS(3622), 1, + [52298] = 7, + ACTIONS(3527), 1, + anon_sym_PIPE, + ACTIONS(3529), 1, + anon_sym_COLON, + ACTIONS(3531), 1, + anon_sym_BANG, + ACTIONS(3647), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3535), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2658), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52327] = 3, + ACTIONS(3651), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 11, + ACTIONS(3649), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121061,13 +118643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52507] = 3, - ACTIONS(3675), 1, + [52348] = 3, + ACTIONS(3655), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3673), 11, + ACTIONS(3653), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121079,32 +118661,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52528] = 4, + [52369] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3644), 2, + ACTIONS(3657), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2638), 4, + ACTIONS(2640), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2644), 6, + ACTIONS(2646), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52551] = 3, - ACTIONS(3679), 1, + [52392] = 3, + ACTIONS(3662), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3677), 11, + ACTIONS(3660), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121116,13 +118698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52572] = 3, - ACTIONS(3683), 1, + [52413] = 3, + ACTIONS(3666), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3681), 11, + ACTIONS(3664), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121134,13 +118716,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52593] = 3, - ACTIONS(3687), 1, + [52434] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3668), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2616), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2622), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [52457] = 3, + ACTIONS(3673), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3685), 11, + ACTIONS(3671), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121152,13 +118753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52614] = 3, - ACTIONS(3691), 1, + [52478] = 3, + ACTIONS(3677), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3689), 11, + ACTIONS(3675), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121170,32 +118771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52635] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3693), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2626), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2632), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52658] = 3, - ACTIONS(3698), 1, + [52499] = 3, + ACTIONS(3681), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3696), 11, + ACTIONS(3679), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121207,13 +118789,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52679] = 3, - ACTIONS(614), 1, + [52520] = 3, + ACTIONS(3685), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(612), 11, + ACTIONS(3683), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121225,13 +118807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52700] = 3, - ACTIONS(3702), 1, + [52541] = 3, + ACTIONS(3689), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3700), 11, + ACTIONS(3687), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121243,13 +118825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52721] = 3, - ACTIONS(3706), 1, + [52562] = 3, + ACTIONS(3693), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 11, + ACTIONS(3691), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121261,33 +118843,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52742] = 5, - ACTIONS(2654), 1, + [52583] = 5, + ACTIONS(2636), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 3, + ACTIONS(2632), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3666), 3, + ACTIONS(3695), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2656), 5, + ACTIONS(2638), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52767] = 3, - ACTIONS(3710), 1, + [52608] = 3, + ACTIONS(3459), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 11, + ACTIONS(3453), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121299,33 +118881,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52788] = 5, - ACTIONS(2630), 1, - anon_sym_COLON, - ACTIONS(3693), 1, - anon_sym_LPAREN, + [52629] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 5, - anon_sym_RPAREN, + ACTIONS(3695), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2632), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2632), 5, + ACTIONS(2638), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52813] = 3, - ACTIONS(3714), 1, + [52652] = 3, + ACTIONS(3700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3712), 11, + ACTIONS(3698), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121337,13 +118918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52834] = 3, - ACTIONS(3718), 1, + [52673] = 3, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 11, + ACTIONS(3702), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121355,13 +118936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52855] = 3, - ACTIONS(3722), 1, + [52694] = 3, + ACTIONS(3708), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3720), 11, + ACTIONS(3706), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121373,51 +118954,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52876] = 3, - ACTIONS(3726), 1, - anon_sym_EQ, + [52715] = 5, + ACTIONS(2608), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3724), 11, - anon_sym_SEMI, + ACTIONS(2604), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3624), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + ACTIONS(2610), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52897] = 5, - ACTIONS(2618), 1, + [52740] = 5, + ACTIONS(2644), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 3, + ACTIONS(2640), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3663), 3, + ACTIONS(3657), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2620), 5, + ACTIONS(2646), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52922] = 3, - ACTIONS(3730), 1, + [52765] = 3, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3728), 11, + ACTIONS(3710), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121429,13 +119012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52943] = 3, - ACTIONS(3734), 1, + [52786] = 3, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3732), 11, + ACTIONS(3714), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121447,51 +119030,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [52964] = 3, - ACTIONS(3738), 1, - anon_sym_EQ, + [52807] = 5, + ACTIONS(2620), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3736), 11, - anon_sym_SEMI, + ACTIONS(2616), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3668), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2622), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [52832] = 5, + ACTIONS(2636), 1, anon_sym_COLON, - anon_sym_if, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_LT2, + ACTIONS(2638), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52985] = 5, - ACTIONS(2630), 1, + [52857] = 5, + ACTIONS(2608), 1, anon_sym_COLON, + ACTIONS(3624), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 3, + ACTIONS(2604), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3693), 3, + ACTIONS(2610), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [52882] = 5, + ACTIONS(2644), 1, + anon_sym_COLON, + ACTIONS(3657), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2640), 5, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(2632), 5, + anon_sym_LT2, + ACTIONS(2646), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [53010] = 3, - ACTIONS(3742), 1, + [52907] = 3, + ACTIONS(3720), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3740), 11, + ACTIONS(3718), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121503,13 +119128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [53031] = 3, - ACTIONS(3746), 1, + [52928] = 3, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3744), 11, + ACTIONS(3722), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121521,13 +119146,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [53052] = 3, - ACTIONS(3750), 1, + [52949] = 5, + ACTIONS(2620), 1, + anon_sym_COLON, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2622), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [52974] = 3, + ACTIONS(3604), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3748), 11, + ACTIONS(3602), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121539,13 +119184,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [53073] = 3, - ACTIONS(3754), 1, + [52995] = 3, + ACTIONS(3728), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3752), 11, + ACTIONS(3726), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121557,13 +119202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [53094] = 3, - ACTIONS(3758), 1, + [53016] = 3, + ACTIONS(3732), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3756), 11, + ACTIONS(3730), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121575,35 +119220,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [53115] = 7, - ACTIONS(3551), 1, - anon_sym_PIPE, - ACTIONS(3553), 1, - anon_sym_COLON, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3760), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3559), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2672), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53144] = 3, - ACTIONS(3764), 1, + [53037] = 3, + ACTIONS(3736), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3762), 11, + ACTIONS(3734), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -121615,123 +119238,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [53165] = 5, - ACTIONS(2654), 1, - anon_sym_COLON, - ACTIONS(3666), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2650), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2656), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [53190] = 5, - ACTIONS(2618), 1, - anon_sym_COLON, - ACTIONS(3663), 1, - anon_sym_LPAREN, + [53058] = 3, + ACTIONS(3740), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 5, + ACTIONS(3738), 11, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2620), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [53215] = 5, - ACTIONS(2642), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3644), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2638), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2644), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [53240] = 9, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_COLON_COLON, - ACTIONS(3766), 1, - anon_sym_for, - STATE(1392), 1, - sym_type_arguments, - STATE(1407), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53272] = 9, - ACTIONS(3485), 1, + [53079] = 9, + ACTIONS(3461), 1, anon_sym_BANG, - ACTIONS(3491), 1, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - ACTIONS(3768), 1, + ACTIONS(3742), 1, anon_sym_for, - STATE(1392), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1407), 1, + STATE(1385), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53304] = 5, + [53111] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3772), 1, + ACTIONS(3746), 1, sym_crate, - STATE(1608), 1, + STATE(1577), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3770), 8, + ACTIONS(3744), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -121740,40 +119298,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53328] = 9, - ACTIONS(3485), 1, + [53135] = 9, + ACTIONS(3461), 1, anon_sym_BANG, - ACTIONS(3491), 1, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - ACTIONS(3774), 1, + ACTIONS(3748), 1, anon_sym_for, - STATE(1392), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1407), 1, + STATE(1385), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53360] = 5, + [53167] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3776), 1, + ACTIONS(3750), 1, sym_crate, - STATE(1608), 1, + STATE(1577), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3770), 8, + ACTIONS(3744), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -121782,63 +119340,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53384] = 9, - ACTIONS(3485), 1, + [53191] = 9, + ACTIONS(3461), 1, anon_sym_BANG, - ACTIONS(3491), 1, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - ACTIONS(3778), 1, + ACTIONS(3752), 1, anon_sym_for, - STATE(1392), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1407), 1, + STATE(1385), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53416] = 9, - ACTIONS(3485), 1, + [53223] = 9, + ACTIONS(3461), 1, anon_sym_BANG, - ACTIONS(3491), 1, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - ACTIONS(3780), 1, + ACTIONS(3754), 1, anon_sym_for, - STATE(1392), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1407), 1, + STATE(1385), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53448] = 5, + [53255] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3782), 1, + ACTIONS(3756), 1, sym_crate, - STATE(1608), 1, + STATE(1577), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3770), 8, + ACTIONS(3744), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -121847,63 +119405,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53472] = 9, - ACTIONS(3485), 1, + [53279] = 9, + ACTIONS(3461), 1, anon_sym_BANG, - ACTIONS(3491), 1, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - ACTIONS(3784), 1, + ACTIONS(3758), 1, anon_sym_for, - STATE(1392), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1407), 1, + STATE(1385), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53504] = 9, - ACTIONS(3485), 1, + [53311] = 9, + ACTIONS(3461), 1, anon_sym_BANG, - ACTIONS(3491), 1, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - ACTIONS(3786), 1, + ACTIONS(3760), 1, anon_sym_for, - STATE(1392), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1407), 1, + STATE(1385), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2580), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53343] = 9, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + ACTIONS(3762), 1, + anon_sym_for, + STATE(1382), 1, + sym_type_arguments, + STATE(1385), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53536] = 5, + [53375] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3788), 1, + ACTIONS(3764), 1, sym_crate, - STATE(1608), 1, + STATE(1577), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3770), 8, + ACTIONS(3744), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -121912,1766 +119493,1813 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53560] = 9, - ACTIONS(3485), 1, + [53399] = 9, + ACTIONS(3461), 1, anon_sym_BANG, - ACTIONS(3491), 1, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - ACTIONS(3790), 1, + ACTIONS(3766), 1, anon_sym_for, - STATE(1392), 1, + STATE(1382), 1, sym_type_arguments, - STATE(1407), 1, + STATE(1385), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53592] = 10, + [53431] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3792), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3794), 1, + ACTIONS(3770), 1, anon_sym_RBRACE, - ACTIONS(3796), 1, + ACTIONS(3772), 1, anon_sym_COMMA, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - STATE(2130), 1, + STATE(2114), 1, sym_field_declaration, - STATE(2429), 1, + STATE(2530), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1587), 2, + STATE(1590), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53625] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3537), 1, - anon_sym_trait, - ACTIONS(3800), 1, - anon_sym_impl, - STATE(163), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2672), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53650] = 9, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_COLON_COLON, - ACTIONS(3802), 1, - anon_sym_EQ, - STATE(1407), 1, - sym_parameters, - STATE(1764), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 3, - anon_sym_PLUS, + [53464] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3768), 1, + sym_identifier, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3776), 1, + anon_sym_RBRACE, + ACTIONS(3778), 1, anon_sym_COMMA, - anon_sym_GT, - [53681] = 7, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_type_arguments, - STATE(1396), 1, - sym_parameters, + STATE(2015), 1, + sym_field_declaration, + STATE(2530), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [53708] = 8, - ACTIONS(2357), 1, + STATE(1584), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53497] = 8, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3806), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3782), 1, anon_sym_RBRACE, - ACTIONS(3810), 1, + ACTIONS(3784), 1, anon_sym_COMMA, - ACTIONS(3812), 1, + ACTIONS(3786), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1864), 2, + STATE(1885), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2025), 3, + STATE(1938), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [53737] = 10, + [53526] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3814), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3816), 1, + ACTIONS(3790), 1, anon_sym_RBRACE, - ACTIONS(3818), 1, + ACTIONS(3792), 1, anon_sym_COMMA, - STATE(2105), 1, + STATE(2077), 1, sym_enum_variant, - STATE(2569), 1, + STATE(2500), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1588), 2, + STATE(1575), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53770] = 10, + [53559] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3489), 1, + anon_sym_trait, + ACTIONS(3794), 1, + anon_sym_impl, + STATE(163), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2658), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53584] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3814), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3820), 1, + ACTIONS(3796), 1, anon_sym_RBRACE, - ACTIONS(3822), 1, + ACTIONS(3798), 1, anon_sym_COMMA, - STATE(2056), 1, + STATE(1944), 1, sym_enum_variant, - STATE(2569), 1, + STATE(2500), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1596), 2, + STATE(1576), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53803] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(3826), 1, + [53617] = 9, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + ACTIONS(3800), 1, + anon_sym_EQ, + STATE(1385), 1, + sym_parameters, + STATE(1771), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2580), 3, + anon_sym_PLUS, anon_sym_COMMA, - STATE(1993), 1, - sym_field_declaration, - STATE(2429), 1, - sym_visibility_modifier, + anon_sym_GT, + [53648] = 7, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3802), 1, + anon_sym_LBRACE, + STATE(1383), 1, + sym_type_arguments, + STATE(1410), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1574), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53836] = 5, - ACTIONS(3828), 1, + ACTIONS(2628), 5, anon_sym_SEMI, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(466), 1, - sym_declaration_list, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [53675] = 7, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_for, + STATE(1383), 1, + sym_type_arguments, + STATE(1410), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53858] = 9, - ACTIONS(2353), 1, + ACTIONS(2628), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53701] = 9, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(3832), 1, + ACTIONS(3806), 1, sym_identifier, - ACTIONS(3834), 1, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3836), 1, + ACTIONS(3810), 1, anon_sym_GT, - ACTIONS(3838), 1, + ACTIONS(3812), 1, sym_metavariable, - STATE(1859), 1, + STATE(1870), 1, sym_lifetime, - STATE(2046), 1, + STATE(1976), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2246), 2, + STATE(2275), 2, sym_const_parameter, sym_optional_type_parameter, - [53888] = 7, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3840), 1, - anon_sym_for, - STATE(1387), 1, - sym_type_arguments, - STATE(1396), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2622), 4, + [53731] = 5, + ACTIONS(3814), 1, anon_sym_SEMI, + ACTIONS(3816), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53914] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3842), 1, - anon_sym_move, - STATE(101), 1, - sym_block, + STATE(1086), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, + ACTIONS(2658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53936] = 5, + [53753] = 9, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3812), 1, + sym_metavariable, + ACTIONS(3818), 1, + anon_sym_GT, + STATE(1870), 1, + sym_lifetime, + STATE(1976), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2275), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53783] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3768), 1, + sym_identifier, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3820), 1, + anon_sym_RBRACE, + STATE(2204), 1, + sym_field_declaration, + STATE(2530), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53813] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3844), 1, + ACTIONS(3822), 1, sym_identifier, - STATE(104), 1, + STATE(99), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3846), 6, + ACTIONS(3824), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53958] = 7, - ACTIONS(3491), 1, + [53835] = 7, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3848), 1, + ACTIONS(3826), 1, anon_sym_for, - STATE(1387), 1, + STATE(1383), 1, sym_type_arguments, - STATE(1396), 1, + STATE(1410), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53984] = 9, + ACTIONS(2628), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53861] = 9, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3812), 1, + sym_metavariable, + ACTIONS(3828), 1, + anon_sym_GT, + STATE(1826), 1, + sym_lifetime, + STATE(1976), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2275), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53891] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3792), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3850), 1, + ACTIONS(3830), 1, anon_sym_RBRACE, - STATE(2238), 1, + STATE(2204), 1, sym_field_declaration, - STATE(2429), 1, + STATE(2530), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, + STATE(1563), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54014] = 7, - ACTIONS(3491), 1, + [53921] = 7, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3852), 1, + ACTIONS(3832), 1, anon_sym_for, - STATE(1387), 1, + STATE(1383), 1, sym_type_arguments, - STATE(1396), 1, + STATE(1410), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2628), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54040] = 7, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3854), 1, - anon_sym_for, - STATE(1387), 1, - sym_type_arguments, - STATE(1396), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, + [53947] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54066] = 7, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3856), 1, - anon_sym_for, - STATE(1387), 1, - sym_type_arguments, - STATE(1396), 1, - sym_parameters, + ACTIONS(3834), 1, + anon_sym_move, + STATE(96), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54092] = 9, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3832), 1, - sym_identifier, - ACTIONS(3834), 1, + ACTIONS(2658), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3838), 1, - sym_metavariable, - ACTIONS(3858), 1, - anon_sym_GT, - STATE(1859), 1, - sym_lifetime, - STATE(2046), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53969] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3768), 1, + sym_identifier, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3836), 1, + anon_sym_RBRACE, + STATE(2204), 1, + sym_field_declaration, + STATE(2530), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2246), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54122] = 7, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3483), 1, - anon_sym_COLON, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(3860), 1, - anon_sym_COLON_COLON, + STATE(1563), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53999] = 7, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3780), 1, + sym_identifier, + ACTIONS(3786), 1, + anon_sym_DOT_DOT, + ACTIONS(3838), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3477), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [54148] = 9, - ACTIONS(2353), 1, + STATE(1885), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2222), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54025] = 9, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(3832), 1, + ACTIONS(3806), 1, sym_identifier, - ACTIONS(3834), 1, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3838), 1, + ACTIONS(3812), 1, sym_metavariable, - ACTIONS(3862), 1, + ACTIONS(3840), 1, anon_sym_GT, - STATE(1885), 1, + STATE(1870), 1, sym_lifetime, - STATE(2046), 1, + STATE(1976), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2246), 2, + STATE(2275), 2, sym_const_parameter, sym_optional_type_parameter, - [54178] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3814), 1, - sym_identifier, - ACTIONS(3864), 1, - anon_sym_RBRACE, - STATE(2244), 1, - sym_enum_variant, - STATE(2569), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1579), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54208] = 9, - ACTIONS(2353), 1, + [54055] = 9, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(3832), 1, + ACTIONS(3806), 1, sym_identifier, - ACTIONS(3834), 1, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3838), 1, + ACTIONS(3812), 1, sym_metavariable, - ACTIONS(3866), 1, + ACTIONS(3842), 1, anon_sym_GT, - STATE(1859), 1, + STATE(1870), 1, sym_lifetime, - STATE(2046), 1, + STATE(1976), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2246), 2, + STATE(2275), 2, sym_const_parameter, sym_optional_type_parameter, - [54238] = 10, - ACTIONS(3868), 1, + [54085] = 10, + ACTIONS(3844), 1, anon_sym_SEMI, - ACTIONS(3870), 1, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3872), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3876), 1, + ACTIONS(3852), 1, anon_sym_LT, - STATE(992), 1, + STATE(1111), 1, sym_field_declaration_list, - STATE(1644), 1, + STATE(1604), 1, sym_type_parameters, - STATE(2140), 1, + STATE(2040), 1, sym_ordered_field_declaration_list, - STATE(2198), 1, + STATE(2224), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54270] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3814), 1, + [54117] = 9, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3806), 1, sym_identifier, - ACTIONS(3878), 1, - anon_sym_RBRACE, - STATE(2244), 1, - sym_enum_variant, - STATE(2569), 1, - sym_visibility_modifier, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3812), 1, + sym_metavariable, + ACTIONS(3854), 1, + anon_sym_GT, + STATE(1870), 1, + sym_lifetime, + STATE(1976), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1579), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54300] = 5, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3880), 1, + STATE(2275), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54147] = 5, + ACTIONS(3856), 1, anon_sym_SEMI, - STATE(301), 1, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(414), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, + ACTIONS(2658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54322] = 9, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3832), 1, - sym_identifier, - ACTIONS(3834), 1, - anon_sym_const, - ACTIONS(3838), 1, - sym_metavariable, - ACTIONS(3882), 1, - anon_sym_GT, - STATE(1859), 1, - sym_lifetime, - STATE(2046), 1, - sym_constrained_type_parameter, + [54169] = 7, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3860), 1, + anon_sym_for, + STATE(1383), 1, + sym_type_arguments, + STATE(1410), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2246), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54352] = 9, - ACTIONS(2353), 1, + ACTIONS(2628), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54195] = 9, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(3832), 1, + ACTIONS(3806), 1, sym_identifier, - ACTIONS(3834), 1, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3838), 1, + ACTIONS(3812), 1, sym_metavariable, - ACTIONS(3884), 1, + ACTIONS(3862), 1, anon_sym_GT, - STATE(1859), 1, + STATE(1870), 1, sym_lifetime, - STATE(2046), 1, + STATE(1976), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2246), 2, + STATE(2275), 2, sym_const_parameter, sym_optional_type_parameter, - [54382] = 5, - ACTIONS(3886), 1, - anon_sym_SEMI, - ACTIONS(3888), 1, + [54225] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(1099), 1, + ACTIONS(3864), 1, + anon_sym_SEMI, + STATE(1091), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, + ACTIONS(2658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54404] = 10, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(3890), 1, - anon_sym_SEMI, - ACTIONS(3892), 1, - anon_sym_LBRACE, - STATE(483), 1, - sym_field_declaration_list, - STATE(1632), 1, - sym_type_parameters, - STATE(2145), 1, - sym_ordered_field_declaration_list, - STATE(2199), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54436] = 7, - ACTIONS(2357), 1, - anon_sym_POUND, + [54247] = 9, + ACTIONS(2343), 1, + anon_sym_SQUOTE, ACTIONS(3806), 1, sym_identifier, + ACTIONS(3808), 1, + anon_sym_const, ACTIONS(3812), 1, - anon_sym_DOT_DOT, - ACTIONS(3894), 1, - anon_sym_RBRACE, + sym_metavariable, + ACTIONS(3866), 1, + anon_sym_GT, + STATE(1870), 1, + sym_lifetime, + STATE(1976), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1864), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2342), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54462] = 9, + STATE(2275), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54277] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3896), 1, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3868), 1, anon_sym_RBRACE, - STATE(2238), 1, - sym_field_declaration, - STATE(2429), 1, + STATE(2176), 1, + sym_enum_variant, + STATE(2500), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, + STATE(1573), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54492] = 9, + [54307] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3814), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3898), 1, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3870), 1, anon_sym_RBRACE, - STATE(2244), 1, - sym_enum_variant, - STATE(2569), 1, + STATE(2204), 1, + sym_field_declaration, + STATE(2530), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1579), 2, + STATE(1563), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54522] = 9, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3832), 1, - sym_identifier, - ACTIONS(3834), 1, - anon_sym_const, - ACTIONS(3838), 1, - sym_metavariable, - ACTIONS(3900), 1, - anon_sym_GT, - STATE(1859), 1, - sym_lifetime, - STATE(2046), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2246), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54552] = 10, - ACTIONS(3870), 1, + [54337] = 7, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, anon_sym_LPAREN, ACTIONS(3872), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(3902), 1, - anon_sym_SEMI, - STATE(1058), 1, - sym_field_declaration_list, - STATE(1622), 1, - sym_type_parameters, - STATE(2068), 1, - sym_ordered_field_declaration_list, - STATE(2203), 1, - sym_where_clause, + anon_sym_for, + STATE(1383), 1, + sym_type_arguments, + STATE(1410), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54584] = 9, + ACTIONS(2628), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54363] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3792), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3904), 1, + ACTIONS(3874), 1, anon_sym_RBRACE, - STATE(2238), 1, + STATE(2204), 1, sym_field_declaration, - STATE(2429), 1, + STATE(2530), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, + STATE(1563), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54614] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3814), 1, - sym_identifier, - ACTIONS(3906), 1, - anon_sym_RBRACE, - STATE(2244), 1, - sym_enum_variant, - STATE(2569), 1, - sym_visibility_modifier, + [54393] = 7, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_for, + STATE(1383), 1, + sym_type_arguments, + STATE(1410), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1579), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54644] = 9, + ACTIONS(2628), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54419] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3908), 1, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3878), 1, anon_sym_RBRACE, - STATE(2238), 1, - sym_field_declaration, - STATE(2429), 1, + STATE(2176), 1, + sym_enum_variant, + STATE(2500), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, + STATE(1573), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54674] = 5, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3910), 1, - anon_sym_SEMI, - STATE(1046), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2672), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54696] = 9, + [54449] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3814), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3912), 1, + ACTIONS(3880), 1, anon_sym_RBRACE, - STATE(2244), 1, + STATE(2176), 1, sym_enum_variant, - STATE(2569), 1, + STATE(2500), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1579), 2, + STATE(1573), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54726] = 7, - ACTIONS(2357), 1, + [54479] = 7, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3806), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3812), 1, + ACTIONS(3786), 1, anon_sym_DOT_DOT, - ACTIONS(3914), 1, + ACTIONS(3882), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1864), 2, + STATE(1885), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2342), 3, + STATE(2222), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [54752] = 9, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3832), 1, - sym_identifier, - ACTIONS(3834), 1, - anon_sym_const, - ACTIONS(3838), 1, - sym_metavariable, - ACTIONS(3916), 1, - anon_sym_GT, - STATE(1859), 1, - sym_lifetime, - STATE(2046), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2246), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54782] = 7, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, + [54505] = 7, + ACTIONS(3455), 1, anon_sym_LPAREN, - ACTIONS(3918), 1, - anon_sym_for, - STATE(1387), 1, - sym_type_arguments, - STATE(1396), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54808] = 9, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3832), 1, - sym_identifier, - ACTIONS(3834), 1, - anon_sym_const, - ACTIONS(3838), 1, - sym_metavariable, - ACTIONS(3920), 1, - anon_sym_GT, - STATE(1859), 1, - sym_lifetime, - STATE(2046), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2246), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54838] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3922), 1, - anon_sym_RBRACE, - STATE(2238), 1, - sym_field_declaration, - STATE(2429), 1, - sym_visibility_modifier, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(3884), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54868] = 10, - ACTIONS(3870), 1, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3453), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [54531] = 10, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(3892), 1, - anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_SEMI, - STATE(373), 1, - sym_field_declaration_list, - STATE(1629), 1, - sym_type_parameters, - STATE(2115), 1, - sym_ordered_field_declaration_list, - STATE(2361), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54900] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3926), 1, - anon_sym_RBRACE, - STATE(2238), 1, - sym_field_declaration, - STATE(2429), 1, - sym_visibility_modifier, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(3886), 1, + anon_sym_SEMI, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(373), 1, + sym_field_declaration_list, + STATE(1601), 1, + sym_type_parameters, + STATE(2066), 1, + sym_ordered_field_declaration_list, + STATE(2196), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54930] = 7, - ACTIONS(3491), 1, + [54563] = 7, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3928), 1, + ACTIONS(3890), 1, anon_sym_for, - STATE(1387), 1, + STATE(1383), 1, sym_type_arguments, - STATE(1396), 1, + STATE(1410), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2628), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54956] = 7, - ACTIONS(3491), 1, + [54589] = 7, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3495), 1, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3930), 1, + ACTIONS(3892), 1, anon_sym_for, - STATE(1387), 1, + STATE(1383), 1, sym_type_arguments, - STATE(1396), 1, + STATE(1410), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2628), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54982] = 9, + [54615] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3814), 1, + ACTIONS(3768), 1, sym_identifier, - ACTIONS(3932), 1, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3894), 1, anon_sym_RBRACE, - STATE(2244), 1, - sym_enum_variant, - STATE(2569), 1, + STATE(2204), 1, + sym_field_declaration, + STATE(2530), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1579), 2, + STATE(1563), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55012] = 6, - ACTIONS(3628), 1, - anon_sym_COLON_COLON, - ACTIONS(3934), 1, - anon_sym_RBRACK, + [54645] = 10, + ACTIONS(3846), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(3896), 1, + anon_sym_SEMI, + STATE(930), 1, + sym_field_declaration_list, + STATE(1641), 1, + sym_type_parameters, + STATE(2133), 1, + sym_ordered_field_declaration_list, + STATE(2148), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3551), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3559), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55035] = 4, - ACTIONS(892), 1, + [54677] = 5, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(1482), 1, - sym_block, + ACTIONS(3898), 1, + anon_sym_SEMI, + STATE(464), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, + ACTIONS(2658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55054] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3937), 1, + [54699] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3939), 1, + ACTIONS(3900), 1, anon_sym_RBRACE, - ACTIONS(3941), 1, - anon_sym_COMMA, - ACTIONS(3943), 1, - anon_sym_ref, - ACTIONS(3945), 1, - sym_mutable_specifier, + STATE(2176), 1, + sym_enum_variant, + STATE(2500), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2010), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55081] = 8, + STATE(1573), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54729] = 10, + ACTIONS(3846), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(3888), 1, + anon_sym_LBRACE, + ACTIONS(3902), 1, + anon_sym_SEMI, + STATE(326), 1, + sym_field_declaration_list, + STATE(1607), 1, + sym_type_parameters, + STATE(1937), 1, + sym_ordered_field_declaration_list, + STATE(2341), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54761] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3792), 1, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3798), 1, + ACTIONS(3904), 1, + anon_sym_RBRACE, + STATE(2176), 1, + sym_enum_variant, + STATE(2500), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1573), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54791] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3774), 1, sym_crate, - STATE(2306), 1, - sym_field_declaration, - STATE(2429), 1, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3906), 1, + anon_sym_RBRACE, + STATE(2176), 1, + sym_enum_variant, + STATE(2500), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1178), 2, + STATE(1573), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55108] = 4, - ACTIONS(3949), 1, + [54821] = 9, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3806), 1, + sym_identifier, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3812), 1, + sym_metavariable, + ACTIONS(3908), 1, + anon_sym_GT, + STATE(1870), 1, + sym_lifetime, + STATE(1976), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2275), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54851] = 4, + ACTIONS(3912), 1, anon_sym_PLUS, - STATE(1573), 1, + STATE(1586), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3947), 6, + ACTIONS(3910), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55127] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3798), 1, - sym_crate, - STATE(1992), 1, - sym_field_declaration, - STATE(2429), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1178), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55154] = 8, - ACTIONS(3952), 1, - anon_sym_LPAREN, - ACTIONS(3957), 1, + [54870] = 9, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(3960), 1, - anon_sym_LBRACK, - STATE(1575), 1, - aux_sym_macro_definition_repeat1, - STATE(2442), 1, - sym_macro_rule, - STATE(2579), 1, - sym_token_tree_pattern, + ACTIONS(3914), 1, + anon_sym_COLON, + ACTIONS(3916), 1, + anon_sym_LT, + STATE(303), 1, + sym_declaration_list, + STATE(1712), 1, + sym_type_parameters, + STATE(1842), 1, + sym_trait_bounds, + STATE(2241), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3955), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [55181] = 6, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(3963), 1, + [54899] = 6, + ACTIONS(3606), 1, anon_sym_COLON_COLON, + ACTIONS(3918), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3477), 3, - anon_sym_RBRACK, + ACTIONS(2628), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3527), 2, anon_sym_COMMA, anon_sym_PIPE, - [55204] = 6, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(3806), 1, - sym_identifier, - ACTIONS(3812), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1864), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2342), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [55227] = 9, - ACTIONS(3874), 1, + ACTIONS(3535), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54922] = 9, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(3965), 1, + ACTIONS(3914), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(3916), 1, anon_sym_LT, - STATE(1002), 1, + STATE(432), 1, sym_declaration_list, - STATE(1683), 1, + STATE(1691), 1, sym_type_parameters, - STATE(1819), 1, + STATE(1849), 1, sym_trait_bounds, - STATE(2184), 1, + STATE(2192), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55256] = 8, + [54951] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3814), 1, + ACTIONS(3768), 1, sym_identifier, - STATE(2274), 1, - sym_enum_variant, - STATE(2569), 1, + ACTIONS(3774), 1, + sym_crate, + STATE(2301), 1, + sym_field_declaration, + STATE(2530), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1178), 2, + STATE(1170), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55283] = 6, - ACTIONS(3553), 1, + [54978] = 4, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + STATE(1577), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3744), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54997] = 6, + ACTIONS(3529), 1, anon_sym_COLON, - ACTIONS(3555), 1, + ACTIONS(3531), 1, anon_sym_BANG, - ACTIONS(3614), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3559), 2, + ACTIONS(3535), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3551), 3, + ACTIONS(3527), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [55306] = 8, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3834), 1, + [55020] = 4, + ACTIONS(880), 1, + anon_sym_LBRACE, + STATE(1458), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2658), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3969), 1, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55039] = 6, + ACTIONS(3527), 1, + anon_sym_PIPE, + ACTIONS(3529), 1, + anon_sym_COLON, + ACTIONS(3647), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3535), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2628), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [55062] = 8, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3806), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3812), 1, sym_metavariable, - STATE(1788), 1, + STATE(1870), 1, sym_lifetime, - STATE(1817), 1, + STATE(1976), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2147), 2, + STATE(2275), 2, sym_const_parameter, sym_optional_type_parameter, - [55333] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3937), 1, - sym_identifier, - ACTIONS(3943), 1, - anon_sym_ref, - ACTIONS(3945), 1, - sym_mutable_specifier, - ACTIONS(3973), 1, - anon_sym_RBRACE, - ACTIONS(3975), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2037), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55360] = 5, - ACTIONS(3979), 1, + [55089] = 5, + ACTIONS(3923), 1, anon_sym_fn, - ACTIONS(3981), 1, + ACTIONS(3925), 1, anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1598), 2, + STATE(1578), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3977), 4, + ACTIONS(3921), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [55381] = 4, - ACTIONS(3985), 1, - anon_sym_PLUS, - STATE(1600), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3983), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55400] = 4, - ACTIONS(3987), 1, - anon_sym_PLUS, - STATE(1600), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3983), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55419] = 9, - ACTIONS(3830), 1, + [55110] = 9, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3965), 1, + ACTIONS(3914), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(3916), 1, anon_sym_LT, - STATE(291), 1, + STATE(1110), 1, sym_declaration_list, - STATE(1706), 1, + STATE(1676), 1, sym_type_parameters, - STATE(1891), 1, + STATE(1853), 1, sym_trait_bounds, - STATE(2294), 1, + STATE(2223), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55448] = 8, + [55139] = 8, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(3808), 1, + anon_sym_const, + ACTIONS(3927), 1, + sym_identifier, + ACTIONS(3929), 1, + sym_metavariable, + STATE(1743), 1, + sym_lifetime, + STATE(1832), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2110), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55166] = 6, + ACTIONS(3455), 1, + anon_sym_LPAREN, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(3931), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3453), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [55189] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - STATE(2099), 1, - sym_field_declaration, - STATE(2429), 1, + ACTIONS(3788), 1, + sym_identifier, + STATE(2246), 1, + sym_enum_variant, + STATE(2500), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1178), 2, + STATE(1170), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55475] = 8, + [55216] = 8, + ACTIONS(3933), 1, + anon_sym_LPAREN, + ACTIONS(3938), 1, + anon_sym_LBRACE, + ACTIONS(3941), 1, + anon_sym_LBRACK, + STATE(1574), 1, + aux_sym_macro_definition_repeat1, + STATE(2494), 1, + sym_token_tree_pattern, + STATE(2568), 1, + sym_macro_rule, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3936), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [55243] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3798), 1, + ACTIONS(3774), 1, sym_crate, - ACTIONS(3814), 1, + ACTIONS(3788), 1, sym_identifier, - STATE(2150), 1, + STATE(2129), 1, sym_enum_variant, - STATE(2569), 1, + STATE(2500), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1178), 2, + STATE(1170), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55502] = 8, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(3832), 1, + [55270] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3834), 1, - anon_sym_const, - ACTIONS(3838), 1, - sym_metavariable, - STATE(1859), 1, - sym_lifetime, - STATE(2046), 1, - sym_constrained_type_parameter, + STATE(1928), 1, + sym_enum_variant, + STATE(2500), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2246), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55529] = 4, - ACTIONS(3989), 1, - anon_sym_PLUS, - STATE(1600), 1, - aux_sym_trait_bounds_repeat1, + STATE(1170), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55297] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3983), 6, + ACTIONS(3944), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55548] = 4, - ACTIONS(3513), 1, - anon_sym_trait, - ACTIONS(3991), 1, - anon_sym_impl, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55312] = 5, + ACTIONS(3949), 1, + anon_sym_fn, + ACTIONS(3951), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, + STATE(1578), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3946), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [55567] = 4, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, - ACTIONS(3993), 1, - anon_sym_BANG, + [55333] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3768), 1, + sym_identifier, + ACTIONS(3774), 1, + sym_crate, + STATE(2204), 1, + sym_field_declaration, + STATE(2530), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1563), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55360] = 4, + ACTIONS(3515), 1, + anon_sym_trait, + ACTIONS(3954), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, + ACTIONS(2658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55586] = 8, - ACTIONS(2353), 1, + [55379] = 7, + ACTIONS(2628), 1, + anon_sym_PLUS, + ACTIONS(3527), 1, + anon_sym_PIPE, + ACTIONS(3529), 1, + anon_sym_COLON, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3535), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3918), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55404] = 8, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(3834), 1, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3995), 1, + ACTIONS(3956), 1, sym_identifier, - ACTIONS(3997), 1, + ACTIONS(3958), 1, sym_metavariable, - STATE(1783), 1, + STATE(1760), 1, sym_lifetime, - STATE(1855), 1, + STATE(1859), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2055), 2, + STATE(2027), 2, sym_const_parameter, sym_optional_type_parameter, - [55613] = 4, - ACTIONS(2698), 1, + [55431] = 4, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - ACTIONS(3999), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2672), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55632] = 4, - ACTIONS(3555), 1, + ACTIONS(3960), 1, anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, + ACTIONS(2658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55651] = 8, + [55450] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3814), 1, + ACTIONS(3768), 1, sym_identifier, - STATE(2125), 1, - sym_enum_variant, - STATE(2569), 1, + ACTIONS(3774), 1, + sym_crate, + STATE(2012), 1, + sym_field_declaration, + STATE(2530), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1178), 2, + STATE(1170), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55678] = 8, - ACTIONS(2353), 1, + [55477] = 8, + ACTIONS(2343), 1, anon_sym_SQUOTE, - ACTIONS(3834), 1, + ACTIONS(3808), 1, anon_sym_const, - ACTIONS(3969), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3929), 1, sym_metavariable, - STATE(1685), 1, + STATE(1714), 1, sym_lifetime, - STATE(1817), 1, + STATE(1832), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2147), 2, + STATE(2110), 2, sym_const_parameter, sym_optional_type_parameter, - [55705] = 5, - ACTIONS(4004), 1, - anon_sym_fn, - ACTIONS(4006), 1, - anon_sym_extern, + [55504] = 4, + ACTIONS(3912), 1, + anon_sym_PLUS, + STATE(1592), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1598), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(4001), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [55726] = 4, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - STATE(1608), 1, - sym_string_literal, + ACTIONS(3962), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55523] = 6, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3780), 1, + sym_identifier, + ACTIONS(3786), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1885), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2222), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [55546] = 4, + ACTIONS(2758), 1, + anon_sym_COLON_COLON, + ACTIONS(3964), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3770), 6, + ACTIONS(2658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55745] = 4, - ACTIONS(3985), 1, + [55565] = 4, + ACTIONS(3966), 1, anon_sym_PLUS, - STATE(1573), 1, + STATE(1586), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4009), 6, + ACTIONS(3910), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55764] = 8, + [55584] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2357), 1, + ACTIONS(2347), 1, anon_sym_POUND, - ACTIONS(3798), 1, - sym_crate, - ACTIONS(3814), 1, + ACTIONS(3768), 1, sym_identifier, - STATE(2244), 1, - sym_enum_variant, - STATE(2569), 1, + ACTIONS(3774), 1, + sym_crate, + STATE(2082), 1, + sym_field_declaration, + STATE(2530), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1579), 2, + STATE(1170), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55791] = 7, - ACTIONS(2622), 1, + [55611] = 8, + ACTIONS(816), 1, + anon_sym_DOT_DOT, + ACTIONS(3968), 1, + sym_identifier, + ACTIONS(3970), 1, + anon_sym_RBRACE, + ACTIONS(3972), 1, + anon_sym_COMMA, + ACTIONS(3974), 1, + anon_sym_ref, + ACTIONS(3976), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2076), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55638] = 4, + ACTIONS(3980), 1, anon_sym_PLUS, - ACTIONS(3551), 1, - anon_sym_PIPE, - ACTIONS(3553), 1, - anon_sym_COLON, - ACTIONS(3614), 1, - anon_sym_COLON_COLON, + STATE(1592), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3559), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3934), 2, - anon_sym_RPAREN, + ACTIONS(3978), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [55816] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(3798), 1, - sym_crate, - STATE(2238), 1, - sym_field_declaration, - STATE(2429), 1, - sym_visibility_modifier, + anon_sym_GT, + [55657] = 4, + ACTIONS(3983), 1, + anon_sym_PLUS, + STATE(1586), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55843] = 9, - ACTIONS(3830), 1, + ACTIONS(3910), 6, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3874), 1, anon_sym_where, - ACTIONS(3965), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55676] = 9, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(3916), 1, anon_sym_LT, - STATE(296), 1, + STATE(996), 1, sym_declaration_list, - STATE(1666), 1, + STATE(1647), 1, sym_type_parameters, - STATE(1886), 1, + STATE(1828), 1, sym_trait_bounds, - STATE(2337), 1, + STATE(2200), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55872] = 9, - ACTIONS(3874), 1, + [55705] = 4, + ACTIONS(3531), 1, + anon_sym_BANG, + ACTIONS(3551), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2658), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55724] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + sym_crate, + ACTIONS(3788), 1, + sym_identifier, + STATE(2176), 1, + sym_enum_variant, + STATE(2500), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1573), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55751] = 8, + ACTIONS(816), 1, + anon_sym_DOT_DOT, + ACTIONS(3968), 1, + sym_identifier, + ACTIONS(3974), 1, + anon_sym_ref, + ACTIONS(3976), 1, + sym_mutable_specifier, + ACTIONS(3985), 1, + anon_sym_RBRACE, + ACTIONS(3987), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1970), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55778] = 9, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(3965), 1, + ACTIONS(3914), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(3916), 1, anon_sym_LT, - STATE(1056), 1, + STATE(378), 1, sym_declaration_list, - STATE(1738), 1, + STATE(1679), 1, sym_type_parameters, - STATE(1845), 1, + STATE(1850), 1, sym_trait_bounds, - STATE(2232), 1, + STATE(2211), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55901] = 9, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, + [55807] = 9, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3965), 1, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(3916), 1, anon_sym_LT, - STATE(912), 1, + STATE(952), 1, sym_declaration_list, - STATE(1662), 1, + STATE(1717), 1, sym_type_parameters, - STATE(1842), 1, + STATE(1838), 1, sym_trait_bounds, - STATE(2228), 1, + STATE(2152), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55930] = 9, - ACTIONS(3830), 1, + [55836] = 6, + ACTIONS(3846), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3991), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3989), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2093), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55858] = 8, + ACTIONS(3846), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3965), 1, - anon_sym_COLON, - ACTIONS(3967), 1, - anon_sym_LT, - STATE(378), 1, - sym_declaration_list, - STATE(1704), 1, - sym_type_parameters, - STATE(1831), 1, - sym_trait_bounds, - STATE(2360), 1, + ACTIONS(3888), 1, + anon_sym_LBRACE, + ACTIONS(3993), 1, + anon_sym_SEMI, + STATE(260), 1, + sym_field_declaration_list, + STATE(1903), 1, + sym_ordered_field_declaration_list, + STATE(2177), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55959] = 2, + [55884] = 3, + ACTIONS(3995), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4011), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3824), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55974] = 6, - ACTIONS(3551), 1, - anon_sym_PIPE, - ACTIONS(3553), 1, - anon_sym_COLON, - ACTIONS(3760), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3559), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2622), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55997] = 2, + [55900] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4013), 7, + ACTIONS(3978), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -123679,11 +121307,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56011] = 2, + [55914] = 8, + ACTIONS(3846), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3997), 1, + anon_sym_SEMI, + STATE(969), 1, + sym_field_declaration_list, + STATE(1891), 1, + sym_ordered_field_declaration_list, + STATE(2161), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55940] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4015), 7, + ACTIONS(3999), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -123691,258 +121337,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56025] = 8, - ACTIONS(4017), 1, + [55954] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4019), 1, - anon_sym_RPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4005), 1, + anon_sym_RBRACE, + ACTIONS(4007), 1, anon_sym_LBRACK, - STATE(1654), 1, + STATE(1644), 1, aux_sym_macro_definition_repeat1, - STATE(2329), 1, + STATE(2337), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56051] = 6, - ACTIONS(3870), 1, + [55980] = 8, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3872), 1, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3888), 1, anon_sym_LBRACE, - ACTIONS(4027), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4025), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2058), 2, + ACTIONS(4009), 1, + anon_sym_SEMI, + STATE(429), 1, sym_field_declaration_list, + STATE(2092), 1, sym_ordered_field_declaration_list, - [56073] = 3, - ACTIONS(4029), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3846), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56089] = 3, - ACTIONS(4031), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3846), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56105] = 3, - ACTIONS(4033), 1, - anon_sym_trait, + STATE(2215), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56121] = 8, - ACTIONS(4017), 1, + [56006] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_RBRACE, - STATE(1633), 1, + ACTIONS(4011), 1, + anon_sym_RPAREN, + STATE(1637), 1, aux_sym_macro_definition_repeat1, - STATE(2212), 1, + STATE(2336), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56147] = 6, - ACTIONS(3870), 1, + [56032] = 6, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(3872), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, + ACTIONS(4015), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4037), 2, + ACTIONS(4013), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2089), 2, + STATE(1923), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [56169] = 8, - ACTIONS(4017), 1, + [56054] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4041), 1, - anon_sym_RBRACE, - STATE(1631), 1, + ACTIONS(4017), 1, + anon_sym_RPAREN, + STATE(1627), 1, aux_sym_macro_definition_repeat1, - STATE(2216), 1, + STATE(2327), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56195] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3947), 7, - anon_sym_SEMI, + [56080] = 8, + ACTIONS(4001), 1, + anon_sym_LPAREN, + ACTIONS(4003), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56209] = 5, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3628), 1, - anon_sym_COLON_COLON, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4019), 1, + anon_sym_RPAREN, + STATE(1639), 1, + aux_sym_macro_definition_repeat1, + STATE(2163), 1, + sym_macro_rule, + STATE(2494), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3559), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3551), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [56229] = 8, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3872), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4043), 1, - anon_sym_SEMI, - STATE(1013), 1, - sym_field_declaration_list, - STATE(2132), 1, - sym_ordered_field_declaration_list, - STATE(2170), 1, - sym_where_clause, + [56106] = 3, + ACTIONS(2758), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56255] = 7, - ACTIONS(820), 1, + ACTIONS(2658), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56122] = 7, + ACTIONS(816), 1, anon_sym_DOT_DOT, - ACTIONS(3937), 1, + ACTIONS(3968), 1, sym_identifier, - ACTIONS(3943), 1, + ACTIONS(3974), 1, anon_sym_ref, - ACTIONS(3945), 1, + ACTIONS(3976), 1, sym_mutable_specifier, - ACTIONS(4045), 1, + ACTIONS(4021), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2168), 2, + STATE(2179), 2, sym_field_pattern, sym_remaining_field_pattern, - [56279] = 7, - ACTIONS(820), 1, + [56146] = 7, + ACTIONS(816), 1, anon_sym_DOT_DOT, - ACTIONS(3937), 1, + ACTIONS(3968), 1, sym_identifier, - ACTIONS(3943), 1, + ACTIONS(3974), 1, anon_sym_ref, - ACTIONS(3945), 1, + ACTIONS(3976), 1, sym_mutable_specifier, - ACTIONS(4047), 1, + ACTIONS(4023), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2168), 2, + STATE(2179), 2, sym_field_pattern, sym_remaining_field_pattern, - [56303] = 8, - ACTIONS(4017), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_LBRACE, - ACTIONS(4023), 1, - anon_sym_LBRACK, - ACTIONS(4049), 1, - anon_sym_RBRACE, - STATE(1575), 1, - aux_sym_macro_definition_repeat1, - STATE(2314), 1, - sym_macro_rule, - STATE(2579), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56329] = 3, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2672), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56345] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3947), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56359] = 2, + [56170] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3947), 7, + ACTIONS(3978), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -123950,309 +121502,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56373] = 8, - ACTIONS(3870), 1, + [56184] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3892), 1, - anon_sym_LBRACE, - ACTIONS(4051), 1, - anon_sym_SEMI, - STATE(304), 1, - sym_field_declaration_list, - STATE(1967), 1, - sym_ordered_field_declaration_list, - STATE(2275), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56399] = 8, - ACTIONS(4017), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4053), 1, - anon_sym_RPAREN, - STATE(1575), 1, + ACTIONS(4025), 1, + anon_sym_RBRACE, + STATE(1574), 1, aux_sym_macro_definition_repeat1, - STATE(2332), 1, + STATE(2145), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56425] = 8, - ACTIONS(4017), 1, + [56210] = 7, + ACTIONS(3453), 1, + anon_sym_PIPE, + ACTIONS(3455), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_LBRACE, - ACTIONS(4023), 1, - anon_sym_LBRACK, - ACTIONS(4055), 1, - anon_sym_RBRACE, - STATE(1575), 1, - aux_sym_macro_definition_repeat1, - STATE(2173), 1, - sym_macro_rule, - STATE(2579), 1, - sym_token_tree_pattern, + ACTIONS(3459), 1, + anon_sym_COLON, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(4027), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56451] = 8, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3892), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_SEMI, - STATE(281), 1, - sym_field_declaration_list, - STATE(1924), 1, - sym_ordered_field_declaration_list, - STATE(2313), 1, - sym_where_clause, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56234] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56477] = 8, - ACTIONS(4017), 1, + ACTIONS(3978), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56248] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4029), 1, anon_sym_RBRACE, - STATE(1575), 1, + STATE(1574), 1, aux_sym_macro_definition_repeat1, - STATE(2175), 1, + STATE(2147), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56503] = 8, - ACTIONS(4017), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_LBRACE, - ACTIONS(4023), 1, - anon_sym_LBRACK, - ACTIONS(4061), 1, - anon_sym_RBRACE, - STATE(1648), 1, - aux_sym_macro_definition_repeat1, - STATE(2316), 1, - sym_macro_rule, - STATE(2579), 1, - sym_token_tree_pattern, + [56274] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56529] = 8, - ACTIONS(4017), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4031), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4023), 1, - anon_sym_LBRACK, - ACTIONS(4063), 1, - anon_sym_RPAREN, - STATE(1575), 1, - aux_sym_macro_definition_repeat1, - STATE(2218), 1, - sym_macro_rule, - STATE(2579), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56288] = 3, + ACTIONS(4033), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56555] = 8, - ACTIONS(4017), 1, + ACTIONS(3824), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56304] = 8, + ACTIONS(4035), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4037), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4039), 1, anon_sym_LBRACK, - ACTIONS(4065), 1, - anon_sym_RPAREN, - STATE(1575), 1, - aux_sym_macro_definition_repeat1, - STATE(2213), 1, - sym_macro_rule, - STATE(2579), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56581] = 7, - ACTIONS(3477), 1, - anon_sym_PIPE, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3483), 1, - anon_sym_COLON, - ACTIONS(3485), 1, - anon_sym_BANG, - ACTIONS(4067), 1, + ACTIONS(4041), 1, + anon_sym_RBRACK, + ACTIONS(4043), 1, + anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_COLON_COLON, + STATE(2538), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56605] = 8, - ACTIONS(4017), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_LBRACE, - ACTIONS(4023), 1, - anon_sym_LBRACK, - ACTIONS(4069), 1, - anon_sym_RPAREN, - STATE(1635), 1, - aux_sym_macro_definition_repeat1, - STATE(2201), 1, - sym_macro_rule, - STATE(2579), 1, - sym_token_tree_pattern, + [56330] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56631] = 8, - ACTIONS(4071), 1, + ACTIONS(3978), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56344] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4073), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_RBRACK, - ACTIONS(4079), 1, - anon_sym_EQ, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - STATE(2409), 1, - sym_delim_token_tree, + ACTIONS(4047), 1, + anon_sym_RPAREN, + STATE(1638), 1, + aux_sym_macro_definition_repeat1, + STATE(2169), 1, + sym_macro_rule, + STATE(2494), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56657] = 3, - ACTIONS(2698), 1, + [56370] = 3, + ACTIONS(3551), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, + ACTIONS(2658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56673] = 8, - ACTIONS(4017), 1, + [56386] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4083), 1, + ACTIONS(4049), 1, + anon_sym_RBRACE, + STATE(1619), 1, + aux_sym_macro_definition_repeat1, + STATE(2191), 1, + sym_macro_rule, + STATE(2494), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56412] = 8, + ACTIONS(4001), 1, + anon_sym_LPAREN, + ACTIONS(4003), 1, + anon_sym_LBRACE, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4051), 1, anon_sym_RPAREN, - STATE(1630), 1, + STATE(1574), 1, aux_sym_macro_definition_repeat1, - STATE(2324), 1, + STATE(2323), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56699] = 8, - ACTIONS(4017), 1, + [56438] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4085), 1, + ACTIONS(4053), 1, anon_sym_RBRACE, - STATE(1625), 1, + STATE(1616), 1, aux_sym_macro_definition_repeat1, - STATE(2328), 1, + STATE(2193), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56725] = 7, - ACTIONS(820), 1, + [56464] = 3, + ACTIONS(4055), 1, + anon_sym_trait, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2658), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56480] = 7, + ACTIONS(816), 1, anon_sym_DOT_DOT, - ACTIONS(3937), 1, + ACTIONS(3968), 1, sym_identifier, - ACTIONS(3943), 1, + ACTIONS(3974), 1, anon_sym_ref, - ACTIONS(3945), 1, + ACTIONS(3976), 1, sym_mutable_specifier, - ACTIONS(4087), 1, + ACTIONS(4057), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2168), 2, + STATE(2179), 2, sym_field_pattern, sym_remaining_field_pattern, - [56749] = 8, - ACTIONS(3870), 1, + [56504] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(3872), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4089), 1, - anon_sym_SEMI, - STATE(918), 1, - sym_field_declaration_list, - STATE(2079), 1, - sym_ordered_field_declaration_list, - STATE(2225), 1, - sym_where_clause, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4059), 1, + anon_sym_RBRACE, + STATE(1574), 1, + aux_sym_macro_definition_repeat1, + STATE(2319), 1, + sym_macro_rule, + STATE(2494), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56775] = 7, - ACTIONS(820), 1, + [56530] = 7, + ACTIONS(816), 1, anon_sym_DOT_DOT, - ACTIONS(3937), 1, + ACTIONS(3968), 1, sym_identifier, - ACTIONS(3943), 1, + ACTIONS(3974), 1, anon_sym_ref, - ACTIONS(3945), 1, + ACTIONS(3976), 1, sym_mutable_specifier, - ACTIONS(4091), 1, + ACTIONS(4061), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2168), 2, + STATE(2179), 2, sym_field_pattern, sym_remaining_field_pattern, - [56799] = 2, + [56554] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3947), 7, + ACTIONS(3978), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -124260,1886 +121784,2059 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56813] = 8, - ACTIONS(3636), 1, + [56568] = 8, + ACTIONS(4001), 1, + anon_sym_LPAREN, + ACTIONS(4003), 1, + anon_sym_LBRACE, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4063), 1, + anon_sym_RBRACE, + STATE(1631), 1, + aux_sym_macro_definition_repeat1, + STATE(2330), 1, + sym_macro_rule, + STATE(2494), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56594] = 3, + ACTIONS(4065), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3824), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56610] = 8, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - ACTIONS(4071), 1, + ACTIONS(4035), 1, anon_sym_LPAREN, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4039), 1, anon_sym_LBRACK, - ACTIONS(4093), 1, + ACTIONS(4067), 1, anon_sym_RBRACK, - ACTIONS(4095), 1, + ACTIONS(4069), 1, anon_sym_EQ, - STATE(2402), 1, + STATE(2537), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56839] = 8, - ACTIONS(4017), 1, + [56636] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4097), 1, - anon_sym_RBRACE, - STATE(1575), 1, + ACTIONS(4071), 1, + anon_sym_RPAREN, + STATE(1574), 1, aux_sym_macro_definition_repeat1, - STATE(2340), 1, + STATE(2316), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56865] = 8, - ACTIONS(4017), 1, + [56662] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4099), 1, + ACTIONS(4073), 1, anon_sym_RPAREN, - STATE(1636), 1, + STATE(1574), 1, aux_sym_macro_definition_repeat1, - STATE(2202), 1, + STATE(2259), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56891] = 2, + [56688] = 8, + ACTIONS(4001), 1, + anon_sym_LPAREN, + ACTIONS(4003), 1, + anon_sym_LBRACE, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4075), 1, + anon_sym_RPAREN, + STATE(1574), 1, + aux_sym_macro_definition_repeat1, + STATE(2256), 1, + sym_macro_rule, + STATE(2494), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3947), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56905] = 3, - ACTIONS(4101), 1, - anon_sym_trait, + [56714] = 5, + ACTIONS(3531), 1, + anon_sym_BANG, + ACTIONS(3606), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56921] = 8, - ACTIONS(4071), 1, + ACTIONS(3535), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3527), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [56734] = 8, + ACTIONS(3846), 1, anon_sym_LPAREN, - ACTIONS(4073), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_LBRACK, + ACTIONS(3850), 1, + anon_sym_where, ACTIONS(4077), 1, - anon_sym_RBRACK, - ACTIONS(4079), 1, - anon_sym_EQ, - ACTIONS(4103), 1, - anon_sym_COLON_COLON, - STATE(2409), 1, - sym_delim_token_tree, + anon_sym_SEMI, + STATE(959), 1, + sym_field_declaration_list, + STATE(2065), 1, + sym_ordered_field_declaration_list, + STATE(2197), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56947] = 8, - ACTIONS(4071), 1, + [56760] = 8, + ACTIONS(4035), 1, anon_sym_LPAREN, - ACTIONS(4073), 1, + ACTIONS(4037), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4039), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(4041), 1, anon_sym_RBRACK, - ACTIONS(4079), 1, + ACTIONS(4043), 1, anon_sym_EQ, - ACTIONS(4105), 1, + ACTIONS(4079), 1, anon_sym_COLON_COLON, - STATE(2409), 1, + STATE(2538), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56973] = 8, - ACTIONS(4017), 1, + [56786] = 3, + ACTIONS(4081), 1, + anon_sym_trait, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2658), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56802] = 8, + ACTIONS(4001), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4003), 1, anon_sym_LBRACE, - ACTIONS(4023), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, - anon_sym_RPAREN, - STATE(1575), 1, + ACTIONS(4083), 1, + anon_sym_RBRACE, + STATE(1574), 1, aux_sym_macro_definition_repeat1, - STATE(2239), 1, + STATE(2315), 1, sym_macro_rule, - STATE(2579), 1, + STATE(2494), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56999] = 3, - ACTIONS(4109), 1, - sym_identifier, + [56828] = 8, + ACTIONS(4035), 1, + anon_sym_LPAREN, + ACTIONS(4037), 1, + anon_sym_LBRACE, + ACTIONS(4039), 1, + anon_sym_LBRACK, + ACTIONS(4041), 1, + anon_sym_RBRACK, + ACTIONS(4043), 1, + anon_sym_EQ, + ACTIONS(4085), 1, + anon_sym_COLON_COLON, + STATE(2538), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3846), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57015] = 3, - ACTIONS(4111), 1, + [56854] = 3, + ACTIONS(4087), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3846), 6, + ACTIONS(3824), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57031] = 6, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, - ACTIONS(4113), 1, - anon_sym_LPAREN, - ACTIONS(4117), 1, - anon_sym_EQ, - STATE(2252), 1, - sym_meta_arguments, + [56870] = 7, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_COLON, + STATE(900), 1, + sym_declaration_list, + STATE(1821), 1, + sym_trait_bounds, + STATE(2238), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4115), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57052] = 7, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, + [56893] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4119), 1, + ACTIONS(4089), 1, anon_sym_SEMI, - ACTIONS(4121), 1, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, anon_sym_PLUS, - STATE(344), 1, - sym_declaration_list, - STATE(2001), 1, + STATE(411), 1, + sym_block, + STATE(1995), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57075] = 7, - ACTIONS(3830), 1, + [56916] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4095), 1, + anon_sym_SEMI, + STATE(350), 1, + sym_block, + STATE(1956), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56939] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4123), 1, + ACTIONS(4097), 1, anon_sym_SEMI, - STATE(349), 1, - sym_declaration_list, - STATE(2103), 1, + STATE(315), 1, + sym_block, + STATE(1925), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57098] = 7, - ACTIONS(3830), 1, + [56962] = 7, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1106), 1, + sym_field_declaration_list, + STATE(1851), 1, + sym_type_parameters, + STATE(2220), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56985] = 7, + ACTIONS(3914), 1, + anon_sym_COLON, + ACTIONS(3916), 1, + anon_sym_LT, + ACTIONS(4099), 1, + anon_sym_SEMI, + ACTIONS(4101), 1, + anon_sym_EQ, + STATE(1852), 1, + sym_type_parameters, + STATE(2450), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57008] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4125), 1, + ACTIONS(4103), 1, anon_sym_SEMI, - STATE(295), 1, + STATE(360), 1, sym_declaration_list, - STATE(1910), 1, + STATE(1984), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57121] = 7, - ACTIONS(3874), 1, + [57031] = 4, + ACTIONS(3570), 1, + anon_sym_COLON_COLON, + ACTIONS(3860), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2628), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3888), 1, + [57048] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4127), 1, + ACTIONS(4105), 1, anon_sym_SEMI, - STATE(871), 1, - sym_declaration_list, - STATE(2004), 1, + STATE(271), 1, + sym_block, + STATE(1899), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57144] = 7, - ACTIONS(3874), 1, + [57071] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(3965), 1, - anon_sym_COLON, - STATE(846), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4107), 1, + anon_sym_SEMI, + STATE(484), 1, sym_declaration_list, - STATE(1876), 1, - sym_trait_bounds, - STATE(2266), 1, + STATE(2106), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57167] = 7, - ACTIONS(3874), 1, + [57094] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4129), 1, + ACTIONS(4109), 1, anon_sym_SEMI, - ACTIONS(4131), 1, - anon_sym_LBRACE, - STATE(898), 1, - sym_block, - STATE(2036), 1, + STATE(459), 1, + sym_declaration_list, + STATE(2108), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57190] = 7, - ACTIONS(3830), 1, + [57117] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4133), 1, + ACTIONS(4111), 1, anon_sym_SEMI, - STATE(394), 1, + STATE(1123), 1, sym_declaration_list, - STATE(1926), 1, + STATE(2033), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57213] = 7, - ACTIONS(3874), 1, + [57140] = 7, + ACTIONS(3289), 1, + anon_sym_LBRACE, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4113), 1, + sym_identifier, + ACTIONS(4115), 1, + anon_sym_STAR, + STATE(2044), 1, + sym_use_list, + STATE(2511), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57163] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2724), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3702), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4117), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57180] = 7, + ACTIONS(3289), 1, + anon_sym_LBRACE, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4113), 1, + sym_identifier, + ACTIONS(4115), 1, + anon_sym_STAR, + STATE(2044), 1, + sym_use_list, + STATE(2512), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57203] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4135), 1, - anon_sym_SEMI, - ACTIONS(4137), 1, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4120), 1, anon_sym_LBRACE, - ACTIONS(4139), 1, + STATE(1134), 1, + sym_enum_variant_list, + STATE(1861), 1, + sym_type_parameters, + STATE(2249), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57226] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4122), 1, + anon_sym_SEMI, + ACTIONS(4124), 1, anon_sym_DASH_GT, - STATE(428), 1, + STATE(380), 1, sym_block, - STATE(2013), 1, + STATE(2069), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57236] = 7, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, + [57249] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3965), 1, - anon_sym_COLON, - STATE(323), 1, - sym_declaration_list, - STATE(1811), 1, - sym_trait_bounds, - STATE(2367), 1, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_enum_variant_list, + STATE(1807), 1, + sym_type_parameters, + STATE(2300), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57259] = 5, - ACTIONS(4143), 1, + [57272] = 6, + ACTIONS(3527), 1, + anon_sym_PIPE, + ACTIONS(3529), 1, anon_sym_COLON, - ACTIONS(4145), 1, + ACTIONS(3531), 1, + anon_sym_BANG, + ACTIONS(3647), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, + ACTIONS(3535), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4141), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57278] = 7, - ACTIONS(3600), 1, - anon_sym_EQ, - ACTIONS(3602), 1, - anon_sym_COMMA, - ACTIONS(3604), 1, - anon_sym_GT, - ACTIONS(3965), 1, - anon_sym_COLON, - STATE(2084), 1, - sym_trait_bounds, - STATE(2086), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57301] = 4, - ACTIONS(4145), 1, + [57293] = 4, + ACTIONS(4128), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, + ACTIONS(3465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2622), 3, - anon_sym_RPAREN, + ACTIONS(2628), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_COMMA, - [57318] = 7, - ACTIONS(3874), 1, + [57310] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4130), 1, + anon_sym_SEMI, + ACTIONS(4132), 1, + anon_sym_LBRACE, + STATE(992), 1, + sym_block, + STATE(1974), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57333] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(4134), 1, + anon_sym_SEMI, + STATE(976), 1, + sym_block, + STATE(1975), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57356] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_SEMI, + STATE(300), 1, + sym_declaration_list, + STATE(2120), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57379] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4138), 1, + anon_sym_SEMI, + STATE(478), 1, + sym_declaration_list, + STATE(2136), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57402] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(4140), 1, + anon_sym_SEMI, + ACTIONS(4142), 1, + anon_sym_DASH_GT, + STATE(1039), 1, + sym_block, + STATE(2087), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57425] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4144), 1, + anon_sym_SEMI, + STATE(474), 1, + sym_declaration_list, + STATE(2060), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57448] = 7, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4146), 1, anon_sym_SEMI, - STATE(1116), 1, - sym_block, - STATE(1948), 1, + STATE(1010), 1, + sym_declaration_list, + STATE(2101), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57341] = 6, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - ACTIONS(4113), 1, - anon_sym_LPAREN, - ACTIONS(4151), 1, - anon_sym_EQ, - STATE(2253), 1, - sym_meta_arguments, + [57471] = 6, + ACTIONS(816), 1, + anon_sym_DOT_DOT, + ACTIONS(3968), 1, + sym_identifier, + ACTIONS(3974), 1, + anon_sym_ref, + ACTIONS(3976), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4149), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57362] = 6, - ACTIONS(4105), 1, - anon_sym_COLON_COLON, - ACTIONS(4113), 1, - anon_sym_LPAREN, - ACTIONS(4151), 1, - anon_sym_EQ, - STATE(2253), 1, - sym_meta_arguments, + STATE(2179), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [57492] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(4148), 1, + anon_sym_SEMI, + STATE(951), 1, + sym_block, + STATE(1977), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4149), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57383] = 6, - ACTIONS(4103), 1, - anon_sym_COLON_COLON, - ACTIONS(4113), 1, - anon_sym_LPAREN, - ACTIONS(4151), 1, - anon_sym_EQ, - STATE(2253), 1, - sym_meta_arguments, + [57515] = 7, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_COLON, + STATE(963), 1, + sym_declaration_list, + STATE(1839), 1, + sym_trait_bounds, + STATE(2157), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4149), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57404] = 7, - ACTIONS(3874), 1, + [57538] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4131), 1, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, + ACTIONS(4150), 1, anon_sym_SEMI, - ACTIONS(4155), 1, + ACTIONS(4152), 1, anon_sym_DASH_GT, - STATE(843), 1, + STATE(468), 1, sym_block, - STATE(1984), 1, + STATE(2045), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57427] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, + [57561] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4157), 1, + ACTIONS(4154), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(953), 1, sym_declaration_list, - STATE(1995), 1, + STATE(2125), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57450] = 7, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, + [57584] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4159), 1, - anon_sym_SEMI, - STATE(408), 1, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(3914), 1, + anon_sym_COLON, + STATE(287), 1, sym_declaration_list, - STATE(1925), 1, + STATE(1835), 1, + sym_trait_bounds, + STATE(2195), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57473] = 7, - ACTIONS(3874), 1, + [57607] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4137), 1, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4161), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4156), 1, anon_sym_SEMI, - ACTIONS(4163), 1, - anon_sym_DASH_GT, - STATE(318), 1, + STATE(445), 1, sym_block, - STATE(1934), 1, + STATE(2138), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57496] = 4, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3928), 1, - anon_sym_for, + [57630] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3702), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2724), 4, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57645] = 7, + ACTIONS(3850), 1, anon_sym_where, - [57513] = 7, - ACTIONS(3830), 1, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(3888), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4165), 1, - anon_sym_SEMI, - STATE(348), 1, - sym_declaration_list, - STATE(2101), 1, + STATE(386), 1, + sym_field_declaration_list, + STATE(1877), 1, + sym_type_parameters, + STATE(2235), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57536] = 7, - ACTIONS(3965), 1, + [57668] = 7, + ACTIONS(3914), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(3916), 1, anon_sym_LT, - ACTIONS(4167), 1, + ACTIONS(4158), 1, anon_sym_SEMI, - ACTIONS(4169), 1, + ACTIONS(4160), 1, anon_sym_EQ, - STATE(1844), 1, + STATE(1858), 1, sym_type_parameters, - STATE(2492), 1, + STATE(2453), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57559] = 7, - ACTIONS(3872), 1, + [57691] = 4, + ACTIONS(3570), 1, + anon_sym_COLON_COLON, + ACTIONS(3804), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2628), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3874), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3876), 1, + [57708] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, anon_sym_LT, - STATE(1054), 1, - sym_field_declaration_list, - STATE(1841), 1, + ACTIONS(4120), 1, + anon_sym_LBRACE, + STATE(938), 1, + sym_enum_variant_list, + STATE(1836), 1, sym_type_parameters, - STATE(2230), 1, + STATE(2149), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57582] = 7, - ACTIONS(3874), 1, + [57731] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4131), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4171), 1, + ACTIONS(4162), 1, anon_sym_SEMI, - ACTIONS(4173), 1, + ACTIONS(4164), 1, anon_sym_DASH_GT, - STATE(927), 1, + STATE(875), 1, sym_block, - STATE(2083), 1, + STATE(1990), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57605] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3965), 1, + [57754] = 5, + ACTIONS(4168), 1, anon_sym_COLON, - STATE(930), 1, - sym_declaration_list, - STATE(1836), 1, - sym_trait_bounds, - STATE(2215), 1, - sym_where_clause, + ACTIONS(4170), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57628] = 7, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4166), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57773] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4175), 1, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(4172), 1, anon_sym_SEMI, - STATE(403), 1, - sym_declaration_list, - STATE(1979), 1, + STATE(842), 1, + sym_block, + STATE(1997), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57651] = 7, - ACTIONS(3965), 1, - anon_sym_COLON, - ACTIONS(4177), 1, - anon_sym_COMMA, - ACTIONS(4179), 1, - anon_sym_GT, - STATE(2030), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, - STATE(2102), 1, - sym_trait_bounds, + [57796] = 7, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(929), 1, + sym_field_declaration_list, + STATE(1834), 1, + sym_type_parameters, + STATE(2143), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57674] = 7, - ACTIONS(3874), 1, + [57819] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4181), 1, + ACTIONS(4174), 1, anon_sym_SEMI, - STATE(940), 1, - sym_declaration_list, - STATE(2097), 1, + ACTIONS(4176), 1, + anon_sym_DASH_GT, + STATE(298), 1, + sym_block, + STATE(1924), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57697] = 7, - ACTIONS(2496), 1, - anon_sym_PLUS, - ACTIONS(3965), 1, - anon_sym_COLON, - ACTIONS(4183), 1, - anon_sym_COMMA, - ACTIONS(4185), 1, - anon_sym_GT, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, - STATE(2102), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57720] = 7, - ACTIONS(3874), 1, + [57842] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4187), 1, - anon_sym_SEMI, - STATE(960), 1, + ACTIONS(3914), 1, + anon_sym_COLON, + STATE(446), 1, sym_declaration_list, - STATE(2163), 1, + STATE(1824), 1, + sym_trait_bounds, + STATE(2230), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57743] = 7, - ACTIONS(3830), 1, + [57865] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4189), 1, + ACTIONS(4178), 1, anon_sym_SEMI, - STATE(399), 1, + STATE(1016), 1, sym_declaration_list, - STATE(2035), 1, + STATE(2000), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57766] = 7, - ACTIONS(3874), 1, + [57888] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4191), 1, + ACTIONS(4180), 1, anon_sym_SEMI, - STATE(965), 1, - sym_declaration_list, - STATE(2160), 1, + ACTIONS(4182), 1, + anon_sym_DASH_GT, + STATE(439), 1, + sym_block, + STATE(2029), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57789] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4137), 1, + [57911] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4193), 1, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4184), 1, anon_sym_SEMI, - ACTIONS(4195), 1, - anon_sym_DASH_GT, - STATE(486), 1, - sym_block, - STATE(1942), 1, + STATE(1033), 1, + sym_declaration_list, + STATE(2001), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57812] = 4, - ACTIONS(3582), 1, + [57934] = 4, + ACTIONS(4186), 1, anon_sym_COLON_COLON, - ACTIONS(3848), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2628), 3, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, + [57951] = 7, + ACTIONS(3850), 1, anon_sym_where, - [57829] = 4, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(319), 1, + sym_enum_variant_list, + STATE(1881), 1, + sym_type_parameters, + STATE(2308), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3748), 2, + [57974] = 5, + ACTIONS(4186), 1, + anon_sym_COLON_COLON, + ACTIONS(4190), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4197), 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4188), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57846] = 6, - ACTIONS(3237), 1, - anon_sym_COLON_COLON, - ACTIONS(4183), 1, + [57993] = 7, + ACTIONS(3590), 1, + anon_sym_EQ, + ACTIONS(3914), 1, + anon_sym_COLON, + ACTIONS(4192), 1, anon_sym_COMMA, - ACTIONS(4185), 1, + ACTIONS(4194), 1, anon_sym_GT, + STATE(1918), 1, + sym_trait_bounds, STATE(2096), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 2, - anon_sym_PLUS, - anon_sym_as, - [57867] = 6, - ACTIONS(3551), 1, - anon_sym_PIPE, - ACTIONS(3553), 1, - anon_sym_COLON, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3760), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3559), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57888] = 7, - ACTIONS(3874), 1, + [58016] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4131), 1, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(3888), 1, anon_sym_LBRACE, - ACTIONS(4200), 1, - anon_sym_SEMI, - ACTIONS(4202), 1, - anon_sym_DASH_GT, - STATE(1130), 1, - sym_block, - STATE(1945), 1, + STATE(329), 1, + sym_field_declaration_list, + STATE(1889), 1, + sym_type_parameters, + STATE(2340), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57911] = 4, - ACTIONS(3582), 1, + [58039] = 4, + ACTIONS(4117), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3702), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2724), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [58056] = 4, + ACTIONS(3570), 1, anon_sym_COLON_COLON, - ACTIONS(3840), 1, + ACTIONS(3892), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2628), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57928] = 7, - ACTIONS(3874), 1, + [58073] = 4, + ACTIONS(4196), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3718), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2750), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [58090] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4204), 1, + ACTIONS(4199), 1, anon_sym_SEMI, - STATE(1101), 1, + STATE(402), 1, sym_declaration_list, - STATE(1951), 1, + STATE(2021), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57951] = 5, - ACTIONS(4208), 1, - anon_sym_COLON, - ACTIONS(4210), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4206), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57970] = 4, - ACTIONS(3582), 1, + [58113] = 4, + ACTIONS(3570), 1, anon_sym_COLON_COLON, - ACTIONS(3852), 1, + ACTIONS(3890), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2628), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57987] = 7, - ACTIONS(3874), 1, + [58130] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4137), 1, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4212), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4201), 1, anon_sym_SEMI, - ACTIONS(4214), 1, - anon_sym_DASH_GT, - STATE(298), 1, + STATE(314), 1, sym_block, - STATE(1977), 1, + STATE(1927), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58010] = 7, - ACTIONS(3874), 1, + [58153] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4131), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4216), 1, + ACTIONS(4203), 1, anon_sym_SEMI, - STATE(1131), 1, + ACTIONS(4205), 1, + anon_sym_DASH_GT, + STATE(903), 1, sym_block, - STATE(1936), 1, + STATE(2118), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58033] = 7, - ACTIONS(3874), 1, + [58176] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4131), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4218), 1, + ACTIONS(4207), 1, anon_sym_SEMI, - ACTIONS(4220), 1, - anon_sym_DASH_GT, - STATE(1035), 1, + STATE(854), 1, sym_block, - STATE(2114), 1, + STATE(2014), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58056] = 7, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, + [58199] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3965), 1, - anon_sym_COLON, - STATE(283), 1, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4209), 1, + anon_sym_SEMI, + STATE(327), 1, sym_declaration_list, - STATE(1895), 1, - sym_trait_bounds, - STATE(2301), 1, + STATE(1936), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58079] = 7, - ACTIONS(3874), 1, + [58222] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4131), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4222), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4211), 1, anon_sym_SEMI, - ACTIONS(4224), 1, - anon_sym_DASH_GT, - STATE(975), 1, - sym_block, - STATE(2157), 1, + STATE(332), 1, + sym_declaration_list, + STATE(1941), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58102] = 7, - ACTIONS(3830), 1, + [58245] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3965), 1, - anon_sym_COLON, - STATE(490), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4213), 1, + anon_sym_SEMI, + STATE(887), 1, sym_declaration_list, - STATE(1882), 1, - sym_trait_bounds, - STATE(2271), 1, + STATE(2107), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58125] = 4, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3854), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2622), 4, - anon_sym_SEMI, + [58268] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58142] = 7, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4137), 1, - anon_sym_LBRACE, - ACTIONS(4226), 1, + ACTIONS(4215), 1, anon_sym_SEMI, - STATE(448), 1, - sym_block, - STATE(2007), 1, + STATE(877), 1, + sym_declaration_list, + STATE(2097), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58165] = 7, - ACTIONS(3874), 1, + [58291] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4228), 1, - anon_sym_SEMI, - STATE(886), 1, + ACTIONS(3914), 1, + anon_sym_COLON, + STATE(408), 1, sym_declaration_list, - STATE(2020), 1, + STATE(1857), 1, + sym_trait_bounds, + STATE(2231), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58188] = 7, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, + [58314] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4230), 1, + ACTIONS(4217), 1, anon_sym_SEMI, - STATE(397), 1, + STATE(348), 1, sym_declaration_list, - STATE(2131), 1, + STATE(2139), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58211] = 6, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3937), 1, - sym_identifier, - ACTIONS(3943), 1, - anon_sym_ref, - ACTIONS(3945), 1, - sym_mutable_specifier, + [58337] = 7, + ACTIONS(3914), 1, + anon_sym_COLON, + ACTIONS(4219), 1, + anon_sym_COMMA, + ACTIONS(4221), 1, + anon_sym_GT, + STATE(1910), 1, + sym_trait_bounds, + STATE(1912), 1, + aux_sym_type_parameters_repeat1, + STATE(2058), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2168), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [58232] = 7, - ACTIONS(3874), 1, + [58360] = 7, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4137), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, + ACTIONS(4223), 1, anon_sym_SEMI, - STATE(434), 1, - sym_block, - STATE(1941), 1, + STATE(847), 1, + sym_declaration_list, + STATE(2080), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58255] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(4234), 1, - anon_sym_LBRACE, - STATE(442), 1, - sym_enum_variant_list, - STATE(1814), 1, - sym_type_parameters, - STATE(2192), 1, - sym_where_clause, + [58383] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58278] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(3718), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2750), 4, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(4137), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + [58398] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4236), 1, - anon_sym_SEMI, - STATE(332), 1, - sym_block, - STATE(2154), 1, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3914), 1, + anon_sym_COLON, + STATE(831), 1, + sym_declaration_list, + STATE(1830), 1, + sym_trait_bounds, + STATE(2187), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58301] = 7, - ACTIONS(3874), 1, + [58421] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4131), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4238), 1, + ACTIONS(4225), 1, anon_sym_SEMI, - STATE(1000), 1, + ACTIONS(4227), 1, + anon_sym_DASH_GT, + STATE(897), 1, sym_block, - STATE(1957), 1, + STATE(2020), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58324] = 7, - ACTIONS(3600), 1, - anon_sym_EQ, - ACTIONS(3965), 1, - anon_sym_COLON, - ACTIONS(4240), 1, - anon_sym_COMMA, - ACTIONS(4242), 1, - anon_sym_GT, - STATE(2084), 1, - sym_trait_bounds, - STATE(2122), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58347] = 7, - ACTIONS(3874), 1, + [58444] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4131), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4244), 1, + ACTIONS(4229), 1, anon_sym_SEMI, - STATE(1087), 1, + ACTIONS(4231), 1, + anon_sym_DASH_GT, + STATE(902), 1, sym_block, - STATE(1933), 1, + STATE(2068), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58370] = 4, - ACTIONS(3582), 1, + [58467] = 4, + ACTIONS(3570), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(3872), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2628), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58387] = 7, - ACTIONS(3874), 1, + [58484] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4137), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4246), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4233), 1, anon_sym_SEMI, - ACTIONS(4248), 1, - anon_sym_DASH_GT, - STATE(290), 1, - sym_block, - STATE(2034), 1, + STATE(367), 1, + sym_declaration_list, + STATE(1985), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58410] = 4, - ACTIONS(4250), 1, - anon_sym_RBRACK, + [58507] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3712), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2700), 3, - anon_sym_SEMI, + ACTIONS(2750), 2, anon_sym_PLUS, anon_sym_DASH_GT, - [58427] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(3892), 1, - anon_sym_LBRACE, - STATE(395), 1, - sym_field_declaration_list, - STATE(1871), 1, - sym_type_parameters, - STATE(2181), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58450] = 5, - ACTIONS(4143), 1, + ACTIONS(3718), 2, anon_sym_COLON, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4141), 2, + anon_sym_PIPE, + ACTIONS(4196), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58469] = 4, - ACTIONS(4253), 1, + [58524] = 4, + ACTIONS(3570), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2622), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [58486] = 7, - ACTIONS(3874), 1, - anon_sym_where, ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(4234), 1, - anon_sym_LBRACE, - STATE(275), 1, - sym_enum_variant_list, - STATE(1901), 1, - sym_type_parameters, - STATE(2303), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58509] = 4, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3856), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2628), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58526] = 4, - ACTIONS(3582), 1, + [58541] = 4, + ACTIONS(3570), 1, anon_sym_COLON_COLON, - ACTIONS(3918), 1, + ACTIONS(3832), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 4, + ACTIONS(2628), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58543] = 7, - ACTIONS(3874), 1, + [58558] = 7, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4131), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4255), 1, + ACTIONS(4235), 1, anon_sym_SEMI, - STATE(1153), 1, + ACTIONS(4237), 1, + anon_sym_DASH_GT, + STATE(1068), 1, sym_block, - STATE(1939), 1, + STATE(2031), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58566] = 7, - ACTIONS(3371), 1, + [58581] = 7, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(4257), 1, - sym_identifier, - ACTIONS(4259), 1, - anon_sym_STAR, - STATE(1914), 1, - sym_use_list, - STATE(2523), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58589] = 3, + ACTIONS(4239), 1, + anon_sym_SEMI, + ACTIONS(4241), 1, + anon_sym_DASH_GT, + STATE(416), 1, + sym_block, + STATE(2051), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3748), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2778), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, [58604] = 7, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4137), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4261), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4243), 1, anon_sym_SEMI, - STATE(459), 1, - sym_block, - STATE(1988), 1, + STATE(279), 1, + sym_declaration_list, + STATE(1955), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58627] = 7, - ACTIONS(3830), 1, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4263), 1, + ACTIONS(4245), 1, anon_sym_SEMI, - STATE(347), 1, + STATE(1088), 1, sym_declaration_list, - STATE(2106), 1, + STATE(2032), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58650] = 7, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4137), 1, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4265), 1, + ACTIONS(4247), 1, anon_sym_SEMI, - STATE(311), 1, + STATE(1058), 1, sym_block, - STATE(1962), 1, + STATE(2053), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58673] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4137), 1, - anon_sym_LBRACE, - ACTIONS(4267), 1, - anon_sym_SEMI, - ACTIONS(4269), 1, - anon_sym_DASH_GT, - STATE(385), 1, - sym_block, - STATE(1980), 1, - sym_where_clause, + ACTIONS(2513), 1, + anon_sym_PLUS, + ACTIONS(3914), 1, + anon_sym_COLON, + ACTIONS(4249), 1, + anon_sym_COMMA, + ACTIONS(4251), 1, + anon_sym_GT, + STATE(1910), 1, + sym_trait_bounds, + STATE(1912), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58696] = 7, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4271), 1, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4253), 1, anon_sym_SEMI, - STATE(343), 1, - sym_declaration_list, - STATE(2029), 1, + ACTIONS(4255), 1, + anon_sym_DASH_GT, + STATE(351), 1, + sym_block, + STATE(1943), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58719] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4273), 1, - anon_sym_SEMI, - STATE(1026), 1, - sym_declaration_list, - STATE(2126), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58742] = 7, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4275), 1, + ACTIONS(4257), 1, anon_sym_SEMI, - STATE(888), 1, + STATE(1121), 1, sym_declaration_list, - STATE(2028), 1, + STATE(2034), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58765] = 7, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(4257), 1, - sym_identifier, - ACTIONS(4259), 1, - anon_sym_STAR, - STATE(1914), 1, - sym_use_list, - STATE(2368), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58788] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3965), 1, + [58742] = 7, + ACTIONS(3590), 1, + anon_sym_EQ, + ACTIONS(3592), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, + anon_sym_GT, + ACTIONS(3914), 1, anon_sym_COLON, - STATE(1010), 1, - sym_declaration_list, - STATE(1821), 1, + STATE(1914), 1, + aux_sym_type_parameters_repeat1, + STATE(1918), 1, sym_trait_bounds, - STATE(2172), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58811] = 4, - ACTIONS(4277), 1, + [58765] = 4, + ACTIONS(4259), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, + ACTIONS(3465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2622), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2628), 3, + anon_sym_RPAREN, anon_sym_PLUS, - [58828] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, + anon_sym_COMMA, + [58782] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4279), 1, + ACTIONS(4261), 1, anon_sym_SEMI, - STATE(1004), 1, + STATE(1120), 1, sym_declaration_list, - STATE(2136), 1, + STATE(2049), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58851] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(4281), 1, + [58805] = 7, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(1085), 1, - sym_enum_variant_list, - STATE(1860), 1, - sym_type_parameters, - STATE(2242), 1, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4263), 1, + anon_sym_SEMI, + STATE(1128), 1, + sym_declaration_list, + STATE(2048), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58874] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3712), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2700), 4, - anon_sym_RPAREN, - anon_sym_PLUS, + [58828] = 6, + ACTIONS(3181), 1, + anon_sym_COLON_COLON, + ACTIONS(4249), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [58889] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(4281), 1, - anon_sym_LBRACE, - STATE(997), 1, - sym_enum_variant_list, - STATE(1818), 1, - sym_type_parameters, - STATE(2194), 1, - sym_where_clause, + ACTIONS(4251), 1, + anon_sym_GT, + STATE(1912), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58912] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(2628), 2, anon_sym_PLUS, - ACTIONS(4283), 1, - anon_sym_SEMI, - STATE(1065), 1, - sym_declaration_list, - STATE(2061), 1, - sym_where_clause, + anon_sym_as, + [58849] = 4, + ACTIONS(3570), 1, + anon_sym_COLON_COLON, + ACTIONS(3826), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58935] = 7, - ACTIONS(3872), 1, + ACTIONS(2628), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3874), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3876), 1, - anon_sym_LT, - STATE(991), 1, - sym_field_declaration_list, - STATE(1816), 1, - sym_type_parameters, - STATE(2200), 1, - sym_where_clause, + [58866] = 5, + ACTIONS(4190), 1, + anon_sym_COLON, + ACTIONS(4259), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58958] = 4, - ACTIONS(4197), 1, - anon_sym_RBRACK, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4188), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58885] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3748), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2778), 3, + ACTIONS(4265), 5, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [58975] = 7, - ACTIONS(3874), 1, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4285), 1, - anon_sym_SEMI, - STATE(1096), 1, - sym_declaration_list, - STATE(1953), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [58897] = 5, + ACTIONS(4267), 1, + anon_sym_RPAREN, + ACTIONS(4269), 1, + anon_sym_COMMA, + STATE(1934), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58998] = 7, - ACTIONS(3965), 1, + ACTIONS(3453), 2, anon_sym_COLON, - ACTIONS(3967), 1, - anon_sym_LT, - ACTIONS(4287), 1, + anon_sym_PIPE, + [58915] = 6, + ACTIONS(4271), 1, anon_sym_SEMI, - ACTIONS(4289), 1, + ACTIONS(4273), 1, + anon_sym_COLON, + ACTIONS(4275), 1, anon_sym_EQ, - STATE(1833), 1, - sym_type_parameters, - STATE(2612), 1, + ACTIONS(4277), 1, + anon_sym_else, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58935] = 6, + ACTIONS(3914), 1, + anon_sym_COLON, + ACTIONS(4249), 1, + anon_sym_COMMA, + ACTIONS(4251), 1, + anon_sym_GT, + STATE(1910), 1, sym_trait_bounds, + STATE(1912), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59021] = 4, + [58955] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2700), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3712), 2, + ACTIONS(3088), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3453), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4250), 2, + ACTIONS(2628), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [59038] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4291), 1, - anon_sym_SEMI, - ACTIONS(4293), 1, - anon_sym_DASH_GT, - STATE(860), 1, - sym_block, - STATE(1994), 1, - sym_where_clause, + [58981] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59061] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4137), 1, - anon_sym_LBRACE, - ACTIONS(4295), 1, + ACTIONS(4281), 5, anon_sym_SEMI, - STATE(496), 1, - sym_block, - STATE(1918), 1, - sym_where_clause, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58993] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59084] = 7, - ACTIONS(3830), 1, + ACTIONS(3092), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3874), 1, + anon_sym_COLON, anon_sym_where, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4297), 1, - anon_sym_SEMI, - STATE(376), 1, - sym_declaration_list, - STATE(2087), 1, - sym_where_clause, + anon_sym_EQ, + [59005] = 5, + ACTIONS(796), 1, + anon_sym_RPAREN, + ACTIONS(4283), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59107] = 7, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(3892), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_field_declaration_list, - STATE(1835), 1, - sym_type_parameters, - STATE(2351), 1, - sym_where_clause, + ACTIONS(3453), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59023] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59130] = 6, - ACTIONS(2592), 1, - anon_sym_LPAREN, - ACTIONS(3491), 1, + ACTIONS(4285), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [59035] = 6, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3497), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - STATE(835), 1, - sym_parameters, - STATE(1392), 1, + ACTIONS(3588), 1, + anon_sym_COLON, + STATE(1382), 1, sym_type_arguments, + STATE(1931), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59150] = 4, - ACTIONS(4299), 1, - anon_sym_RBRACK, + [59055] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(4287), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3704), 2, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + [59067] = 6, + ACTIONS(4279), 1, anon_sym_PIPE, - [59166] = 5, - ACTIONS(3600), 1, - anon_sym_EQ, - ACTIONS(3965), 1, + ACTIONS(4289), 1, + anon_sym_RPAREN, + ACTIONS(4291), 1, anon_sym_COLON, - STATE(2084), 1, - sym_trait_bounds, + ACTIONS(4293), 1, + anon_sym_COMMA, + STATE(1950), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59087] = 4, + ACTIONS(4259), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4302), 2, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4295), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [59184] = 2, + [59103] = 4, + ACTIONS(4297), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3076), 5, + ACTIONS(2628), 2, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(3453), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [59119] = 6, + ACTIONS(3660), 1, + anon_sym_PIPE, + ACTIONS(4300), 1, + anon_sym_SEMI, + ACTIONS(4302), 1, anon_sym_COLON, - anon_sym_where, + ACTIONS(4304), 1, anon_sym_EQ, - [59196] = 2, + ACTIONS(4306), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3102), 5, - anon_sym_SEMI, + [59139] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [59208] = 5, - ACTIONS(4304), 1, + ACTIONS(4308), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(894), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59155] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3936), 5, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(4306), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [59167] = 5, + ACTIONS(4310), 1, + anon_sym_RPAREN, + ACTIONS(4312), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3453), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59185] = 4, + ACTIONS(4314), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2996), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3627), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [59201] = 6, + ACTIONS(3914), 1, + anon_sym_COLON, + ACTIONS(4317), 1, anon_sym_COMMA, - STATE(1982), 1, - aux_sym_parameters_repeat1, + ACTIONS(4319), 1, + anon_sym_GT, + STATE(1910), 1, + sym_trait_bounds, + STATE(2098), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, - anon_sym_COLON, - anon_sym_PIPE, - [59226] = 5, - ACTIONS(4308), 1, + [59221] = 5, + ACTIONS(4321), 1, anon_sym_RPAREN, - ACTIONS(4311), 1, + ACTIONS(4324), 1, anon_sym_COMMA, - STATE(1982), 1, + STATE(1934), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, + ACTIONS(3453), 2, anon_sym_COLON, anon_sym_PIPE, - [59244] = 6, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_COLON_COLON, - STATE(1392), 1, - sym_type_arguments, - STATE(1399), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59264] = 4, - ACTIONS(4316), 1, - anon_sym_as, - ACTIONS(4318), 1, - anon_sym_COLON_COLON, + [59239] = 4, + ACTIONS(2628), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4314), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3453), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4297), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [59280] = 2, + [59255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4320), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3627), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2996), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [59292] = 3, - ACTIONS(4322), 1, - anon_sym_EQ, + [59269] = 4, + ACTIONS(4259), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 4, - anon_sym_PLUS, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4166), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [59306] = 4, - ACTIONS(4326), 1, - anon_sym_as, - ACTIONS(4328), 1, - anon_sym_COLON_COLON, + [59285] = 5, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4327), 1, + anon_sym_COMMA, + STATE(2130), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4324), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [59322] = 4, - ACTIONS(4326), 1, - anon_sym_as, - ACTIONS(4330), 1, - anon_sym_COLON_COLON, + ACTIONS(3453), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59303] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4324), 3, + ACTIONS(3112), 5, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [59338] = 2, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [59315] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4332), 5, + ACTIONS(3125), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [59350] = 4, - ACTIONS(4253), 1, + [59327] = 4, + ACTIONS(4186), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, + ACTIONS(3465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4334), 2, + ACTIONS(4295), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59366] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4336), 5, + [59343] = 6, + ACTIONS(3660), 1, + anon_sym_PIPE, + ACTIONS(4329), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + ACTIONS(4331), 1, + anon_sym_COLON, + ACTIONS(4333), 1, anon_sym_EQ, - anon_sym_COMMA, - [59378] = 4, - ACTIONS(2622), 1, - anon_sym_PLUS, + ACTIONS(4335), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4338), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59394] = 2, + [59363] = 6, + ACTIONS(2582), 1, + anon_sym_LPAREN, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + STATE(793), 1, + sym_parameters, + STATE(1382), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4341), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + [59383] = 3, + ACTIONS(4337), 1, anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2692), 4, + anon_sym_PLUS, anon_sym_COMMA, - [59406] = 6, - ACTIONS(3491), 1, + anon_sym_GT, + anon_sym_COLON_COLON, + [59397] = 6, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3497), 1, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - ACTIONS(3598), 1, - anon_sym_COLON, - STATE(1392), 1, + STATE(1382), 1, sym_type_arguments, - STATE(2092), 1, - sym_trait_bounds, + STATE(1389), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59426] = 2, + [59417] = 4, + ACTIONS(4341), 1, + anon_sym_as, + ACTIONS(4343), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4343), 5, + ACTIONS(4339), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59438] = 2, + [59433] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -126149,17 +123846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59450] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3955), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [59462] = 2, + [59445] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -126169,9064 +123856,8765 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59474] = 4, - ACTIONS(4145), 1, - anon_sym_COLON_COLON, + [59457] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4334), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59490] = 4, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, + ACTIONS(3121), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [59469] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4206), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59506] = 6, - ACTIONS(3677), 1, - anon_sym_PIPE, - ACTIONS(4349), 1, + ACTIONS(4349), 5, anon_sym_SEMI, - ACTIONS(4351), 1, - anon_sym_COLON, - ACTIONS(4353), 1, + anon_sym_RBRACE, + anon_sym_where, anon_sym_EQ, - ACTIONS(4355), 1, - anon_sym_else, + anon_sym_COMMA, + [59481] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59526] = 2, + ACTIONS(3102), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [59493] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4357), 5, + ACTIONS(4351), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59538] = 6, - ACTIONS(4359), 1, - anon_sym_RPAREN, - ACTIONS(4361), 1, - anon_sym_COLON, - ACTIONS(4363), 1, - anon_sym_COMMA, - ACTIONS(4365), 1, - anon_sym_PIPE, - STATE(1981), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59558] = 4, - ACTIONS(562), 1, + [59505] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4367), 1, + ACTIONS(4353), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(252), 3, + STATE(115), 3, sym_if_expression, sym_if_let_expression, sym_block, - [59574] = 6, - ACTIONS(3965), 1, + [59521] = 5, + ACTIONS(3590), 1, + anon_sym_EQ, + ACTIONS(3914), 1, anon_sym_COLON, - ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(4371), 1, - anon_sym_GT, - STATE(2102), 1, + STATE(1918), 1, sym_trait_bounds, - STATE(2123), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59594] = 6, - ACTIONS(3677), 1, - anon_sym_PIPE, - ACTIONS(4373), 1, - anon_sym_SEMI, - ACTIONS(4375), 1, - anon_sym_COLON, - ACTIONS(4377), 1, - anon_sym_EQ, - ACTIONS(4379), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59614] = 4, - ACTIONS(4326), 1, - anon_sym_as, - ACTIONS(4381), 1, - anon_sym_COLON_COLON, + ACTIONS(4355), 2, + anon_sym_COMMA, + anon_sym_GT, + [59539] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4324), 3, + ACTIONS(4357), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [59630] = 2, + [59551] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4383), 5, + ACTIONS(4359), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59642] = 5, - ACTIONS(4385), 1, - anon_sym_RPAREN, - ACTIONS(4387), 1, - anon_sym_COMMA, - STATE(2153), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3477), 2, - anon_sym_COLON, - anon_sym_PIPE, - [59660] = 6, - ACTIONS(3965), 1, - anon_sym_COLON, - ACTIONS(4183), 1, - anon_sym_COMMA, - ACTIONS(4185), 1, - anon_sym_GT, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, - STATE(2102), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59680] = 2, + [59563] = 4, + ACTIONS(4363), 1, + anon_sym_as, + ACTIONS(4365), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4389), 5, + ACTIONS(4361), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59692] = 4, - ACTIONS(284), 1, + [59579] = 4, + ACTIONS(574), 1, anon_sym_LBRACE, - ACTIONS(4391), 1, + ACTIONS(4367), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(971), 3, + STATE(234), 3, sym_if_expression, sym_if_let_expression, sym_block, - [59708] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4393), 1, - anon_sym_if, + [59595] = 4, + ACTIONS(4363), 1, + anon_sym_as, + ACTIONS(4369), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(89), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59724] = 5, - ACTIONS(798), 1, - anon_sym_RPAREN, - ACTIONS(4395), 1, + ACTIONS(4361), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2159), 1, - aux_sym_parameters_repeat1, + [59611] = 4, + ACTIONS(2996), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, + ACTIONS(3627), 2, anon_sym_COLON, anon_sym_PIPE, - [59742] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 5, + ACTIONS(4314), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59627] = 6, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(4371), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4373), 1, anon_sym_COLON, - anon_sym_where, + ACTIONS(4375), 1, anon_sym_EQ, - [59754] = 2, + ACTIONS(4377), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3108), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [59766] = 2, + [59647] = 4, + ACTIONS(4363), 1, + anon_sym_as, + ACTIONS(4379), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4397), 5, + ACTIONS(4361), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59778] = 4, - ACTIONS(4145), 1, + [59663] = 4, + ACTIONS(4186), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, + ACTIONS(3465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4206), 2, + ACTIONS(4166), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59794] = 2, + [59679] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 5, + ACTIONS(4381), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59806] = 6, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(4401), 1, - anon_sym_SEMI, - ACTIONS(4403), 1, - anon_sym_COLON, - ACTIONS(4405), 1, - anon_sym_EQ, - ACTIONS(4407), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59826] = 2, + [59691] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4409), 5, + ACTIONS(4383), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59838] = 4, - ACTIONS(2978), 1, - anon_sym_PLUS, + [59703] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4299), 2, - anon_sym_RPAREN, + ACTIONS(4385), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [59854] = 3, + [59715] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2978), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4387), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [59868] = 4, - ACTIONS(4338), 1, - anon_sym_RBRACK, + [59727] = 4, + ACTIONS(4391), 1, + anon_sym_COMMA, + STATE(1887), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3477), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [59884] = 6, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(4411), 1, + ACTIONS(4389), 2, anon_sym_SEMI, - ACTIONS(4413), 1, - anon_sym_COLON, - ACTIONS(4415), 1, - anon_sym_EQ, - ACTIONS(4417), 1, - anon_sym_else, + anon_sym_LBRACE, + [59742] = 5, + ACTIONS(4393), 1, + anon_sym_LPAREN, + ACTIONS(4395), 1, + anon_sym_LBRACE, + ACTIONS(4397), 1, + anon_sym_LBRACK, + STATE(2079), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59904] = 3, + [59759] = 4, + ACTIONS(4399), 1, + anon_sym_DQUOTE, + STATE(1883), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, + ACTIONS(4401), 2, + sym__string_content, + sym_escape_sequence, + [59774] = 5, + ACTIONS(4291), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2622), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [59918] = 5, - ACTIONS(796), 1, - anon_sym_RPAREN, - ACTIONS(4419), 1, + ACTIONS(4403), 1, anon_sym_COMMA, - STATE(2038), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3477), 2, - anon_sym_COLON, + ACTIONS(4405), 1, anon_sym_PIPE, - [59936] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4421), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59948] = 2, + STATE(1946), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3112), 5, + [59791] = 5, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4407), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4409), 1, anon_sym_EQ, - [59960] = 2, + ACTIONS(4411), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3139), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [59972] = 4, + [59808] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1004), 1, + ACTIONS(942), 1, sym_line_comment, - ACTIONS(4423), 1, + ACTIONS(4413), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4425), 3, + ACTIONS(4415), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59987] = 5, - ACTIONS(4427), 1, + [59823] = 4, + ACTIONS(4170), 1, + anon_sym_COLON_COLON, + ACTIONS(4190), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59838] = 5, + ACTIONS(4417), 1, anon_sym_LPAREN, - ACTIONS(4429), 1, + ACTIONS(4419), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, + ACTIONS(4421), 1, anon_sym_LBRACK, - STATE(1384), 1, + STATE(1037), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60004] = 5, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, - anon_sym_where, - STATE(267), 1, - sym_declaration_list, - STATE(2249), 1, - sym_where_clause, + [59855] = 4, + ACTIONS(4423), 1, + anon_sym_DQUOTE, + STATE(1883), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60021] = 5, - ACTIONS(796), 1, - anon_sym_RPAREN, - ACTIONS(4121), 1, - anon_sym_PLUS, + ACTIONS(4401), 2, + sym__string_content, + sym_escape_sequence, + [59870] = 5, + ACTIONS(4417), 1, + anon_sym_LPAREN, ACTIONS(4419), 1, - anon_sym_COMMA, - STATE(2038), 1, - aux_sym_parameters_repeat1, + anon_sym_LBRACE, + ACTIONS(4421), 1, + anon_sym_LBRACK, + STATE(1045), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60038] = 5, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4433), 1, - anon_sym_RPAREN, - ACTIONS(4435), 1, - anon_sym_COMMA, - STATE(2067), 1, - aux_sym_tuple_type_repeat1, + [59887] = 4, + ACTIONS(4425), 1, + anon_sym_DQUOTE, + STATE(1803), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60055] = 5, - ACTIONS(3874), 1, + ACTIONS(4427), 2, + sym__string_content, + sym_escape_sequence, + [59902] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(942), 1, + sym_line_comment, + ACTIONS(4429), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4431), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59917] = 5, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4234), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(286), 1, + STATE(420), 1, sym_enum_variant_list, - STATE(2331), 1, + STATE(2257), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60072] = 5, - ACTIONS(4437), 1, + [59934] = 5, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(4439), 1, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1671), 1, + sym_parameters, + STATE(2208), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59951] = 5, + ACTIONS(4433), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, anon_sym_LBRACE, - ACTIONS(4441), 1, + ACTIONS(4437), 1, anon_sym_LBRACK, - STATE(133), 1, + STATE(1370), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60089] = 5, - ACTIONS(3872), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, - anon_sym_where, - STATE(914), 1, - sym_field_declaration_list, - STATE(2227), 1, - sym_where_clause, + [59968] = 4, + ACTIONS(4439), 1, + anon_sym_DQUOTE, + STATE(1883), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60106] = 5, - ACTIONS(4183), 1, - anon_sym_COMMA, - ACTIONS(4185), 1, - anon_sym_GT, + ACTIONS(4401), 2, + sym__string_content, + sym_escape_sequence, + [59983] = 5, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(4441), 1, + anon_sym_RPAREN, ACTIONS(4443), 1, - anon_sym_EQ, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, + anon_sym_COMMA, + STATE(2088), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60123] = 5, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4281), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_enum_variant_list, - STATE(2222), 1, - sym_where_clause, - ACTIONS(3), 2, + [60000] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(942), 1, sym_line_comment, - [60140] = 5, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(4445), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4447), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60015] = 5, + ACTIONS(4433), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, anon_sym_LBRACE, - STATE(932), 1, - sym_declaration_list, - STATE(2214), 1, - sym_where_clause, + ACTIONS(4437), 1, + anon_sym_LBRACK, + STATE(1372), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60157] = 5, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4445), 1, - anon_sym_SEMI, - ACTIONS(4447), 1, - anon_sym_EQ, + [60032] = 5, + ACTIONS(4279), 1, + anon_sym_PIPE, ACTIONS(4449), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60174] = 5, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, - anon_sym_LBRACE, - STATE(945), 1, - sym_declaration_list, - STATE(2209), 1, - sym_where_clause, + anon_sym_RBRACK, + ACTIONS(4451), 1, + anon_sym_COMMA, + STATE(2099), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60191] = 5, - ACTIONS(4121), 1, + [60049] = 5, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4451), 1, - anon_sym_SEMI, ACTIONS(4453), 1, - anon_sym_EQ, + anon_sym_RPAREN, ACTIONS(4455), 1, - anon_sym_else, + anon_sym_COMMA, + STATE(2009), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60208] = 5, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(3495), 1, - anon_sym_LPAREN, - STATE(1387), 1, - sym_type_arguments, - STATE(1411), 1, - sym_parameters, + [60066] = 4, + ACTIONS(4457), 1, + anon_sym_DQUOTE, + STATE(1810), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60225] = 5, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4457), 1, - anon_sym_SEMI, - ACTIONS(4459), 1, - anon_sym_EQ, + ACTIONS(4459), 2, + sym__string_content, + sym_escape_sequence, + [60081] = 4, ACTIONS(4461), 1, - anon_sym_else, + anon_sym_DQUOTE, + STATE(1797), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4463), 2, + sym__string_content, + sym_escape_sequence, + [60096] = 3, + ACTIONS(4465), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4467), 3, + sym_self, + sym_super, + sym_crate, + [60109] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60242] = 4, - ACTIONS(4143), 1, + ACTIONS(3453), 2, anon_sym_COLON, - ACTIONS(4210), 1, - anon_sym_COLON_COLON, + anon_sym_PIPE, + ACTIONS(4469), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60122] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(942), 1, + sym_line_comment, + ACTIONS(4471), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4473), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60137] = 5, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + STATE(869), 1, + sym_declaration_list, + STATE(2261), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60257] = 5, - ACTIONS(2496), 1, + [60154] = 5, + ACTIONS(2513), 1, anon_sym_PLUS, - ACTIONS(4463), 1, + ACTIONS(4475), 1, anon_sym_COMMA, - ACTIONS(4465), 1, + ACTIONS(4477), 1, anon_sym_GT, - STATE(2158), 1, + STATE(1953), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60274] = 5, - ACTIONS(4121), 1, + [60171] = 5, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4463), 1, + ACTIONS(4475), 1, anon_sym_COMMA, - ACTIONS(4465), 1, + ACTIONS(4477), 1, anon_sym_GT, - STATE(2158), 1, + STATE(1953), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60291] = 5, - ACTIONS(4121), 1, + [60188] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(307), 1, + sym_declaration_list, + STATE(2311), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60205] = 5, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4385), 1, + ACTIONS(4479), 1, anon_sym_RPAREN, - ACTIONS(4387), 1, + ACTIONS(4481), 1, anon_sym_COMMA, - STATE(2153), 1, - aux_sym_parameters_repeat1, + STATE(1958), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60308] = 5, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3876), 1, - anon_sym_LT, - STATE(1701), 1, - sym_parameters, - STATE(2305), 1, - sym_type_parameters, + [60222] = 4, + ACTIONS(3914), 1, + anon_sym_COLON, + STATE(1910), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60325] = 5, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3876), 1, - anon_sym_LT, - STATE(1674), 1, - sym_parameters, - STATE(2240), 1, - sym_type_parameters, + ACTIONS(4483), 2, + anon_sym_COMMA, + anon_sym_GT, + [60237] = 5, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4486), 1, + anon_sym_RPAREN, + ACTIONS(4488), 1, + anon_sym_COMMA, + STATE(1954), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60342] = 5, - ACTIONS(3830), 1, + [60254] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - STATE(285), 1, + STATE(904), 1, sym_declaration_list, - STATE(2296), 1, + STATE(2237), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60359] = 4, - ACTIONS(4467), 1, - anon_sym_DQUOTE, - STATE(1858), 1, - aux_sym_string_literal_repeat1, + [60271] = 3, + ACTIONS(4490), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4469), 2, - sym__string_content, - sym_escape_sequence, - [60374] = 5, - ACTIONS(3965), 1, - anon_sym_COLON, - ACTIONS(4471), 1, + ACTIONS(4492), 3, + sym_self, + sym_super, + sym_crate, + [60284] = 5, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + STATE(1078), 1, + sym_declaration_list, + STATE(2232), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60301] = 5, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4494), 1, anon_sym_SEMI, - ACTIONS(4473), 1, + ACTIONS(4496), 1, anon_sym_EQ, - STATE(2411), 1, - sym_trait_bounds, + ACTIONS(4498), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60391] = 5, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3876), 1, - anon_sym_LT, - STATE(1682), 1, - sym_parameters, - STATE(2178), 1, - sym_type_parameters, + [60318] = 5, + ACTIONS(4249), 1, + anon_sym_COMMA, + ACTIONS(4251), 1, + anon_sym_GT, + ACTIONS(4500), 1, + anon_sym_EQ, + STATE(1912), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60408] = 5, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3892), 1, + [60335] = 5, + ACTIONS(796), 1, + anon_sym_RPAREN, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4283), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60352] = 5, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(274), 1, + ACTIONS(3850), 1, + anon_sym_where, + STATE(995), 1, sym_field_declaration_list, - STATE(2318), 1, + STATE(2199), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60425] = 5, - ACTIONS(3874), 1, + [60369] = 5, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(864), 1, + STATE(392), 1, sym_declaration_list, - STATE(2260), 1, + STATE(2245), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60442] = 5, - ACTIONS(4437), 1, - anon_sym_LPAREN, - ACTIONS(4439), 1, + [60386] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4120), 1, anon_sym_LBRACE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - STATE(110), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60459] = 3, + STATE(907), 1, + sym_enum_variant_list, + STATE(2194), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, - anon_sym_COLON, + [60403] = 5, + ACTIONS(4279), 1, anon_sym_PIPE, - ACTIONS(4475), 2, + ACTIONS(4289), 1, anon_sym_RPAREN, + ACTIONS(4293), 1, anon_sym_COMMA, - [60472] = 4, - ACTIONS(4479), 1, - anon_sym_COMMA, - STATE(1839), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4477), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60487] = 5, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(4482), 1, - sym_identifier, - ACTIONS(4484), 1, - anon_sym_STAR, - STATE(2069), 1, - sym_use_list, + STATE(1950), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60504] = 5, - ACTIONS(3872), 1, + [60420] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3850), 1, anon_sym_where, - STATE(1006), 1, - sym_field_declaration_list, - STATE(2179), 1, + STATE(832), 1, + sym_declaration_list, + STATE(2186), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60521] = 5, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, + [60437] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(848), 1, + ACTIONS(3850), 1, + anon_sym_where, + STATE(853), 1, sym_declaration_list, - STATE(2265), 1, + STATE(2181), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60538] = 5, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(4257), 1, - sym_identifier, - ACTIONS(4259), 1, - anon_sym_STAR, - STATE(1914), 1, - sym_use_list, + [60454] = 5, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1719), 1, + sym_parameters, + STATE(2254), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60555] = 5, - ACTIONS(3965), 1, - anon_sym_COLON, - ACTIONS(4486), 1, - anon_sym_SEMI, - ACTIONS(4488), 1, - anon_sym_EQ, - STATE(2483), 1, - sym_trait_bounds, + [60471] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60572] = 5, - ACTIONS(3874), 1, + ACTIONS(3453), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4502), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60484] = 5, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3888), 1, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(1011), 1, + STATE(407), 1, sym_declaration_list, - STATE(2171), 1, + STATE(2141), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60589] = 5, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4490), 1, - anon_sym_RPAREN, - ACTIONS(4492), 1, - anon_sym_COMMA, - STATE(2042), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60606] = 5, - ACTIONS(4121), 1, + [60501] = 5, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4494), 1, - anon_sym_RPAREN, - ACTIONS(4496), 1, - anon_sym_COMMA, - STATE(2073), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4504), 1, + anon_sym_SEMI, + ACTIONS(4506), 1, + anon_sym_EQ, + ACTIONS(4508), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60623] = 4, - ACTIONS(4498), 1, + [60518] = 4, + ACTIONS(4512), 1, anon_sym_COMMA, - STATE(1839), 1, + STATE(1844), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3054), 2, + ACTIONS(4510), 2, anon_sym_SEMI, anon_sym_LBRACE, - [60638] = 5, - ACTIONS(4113), 1, - anon_sym_LPAREN, - ACTIONS(4500), 1, - anon_sym_RBRACK, - ACTIONS(4502), 1, - anon_sym_EQ, - STATE(2412), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60655] = 5, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3876), 1, - anon_sym_LT, - STATE(1733), 1, - sym_parameters, - STATE(2287), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60672] = 5, - ACTIONS(2592), 1, - anon_sym_LPAREN, - ACTIONS(3491), 1, + [60533] = 5, + ACTIONS(3467), 1, anon_sym_LT2, - STATE(834), 1, - sym_parameters, - STATE(1387), 1, + ACTIONS(3471), 1, + anon_sym_LPAREN, + STATE(1383), 1, sym_type_arguments, + STATE(1395), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60689] = 5, - ACTIONS(4121), 1, + [60550] = 5, + ACTIONS(2513), 1, anon_sym_PLUS, - ACTIONS(4504), 1, - anon_sym_RPAREN, - ACTIONS(4506), 1, + ACTIONS(4515), 1, anon_sym_COMMA, - STATE(1932), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60706] = 4, - ACTIONS(4208), 1, - anon_sym_COLON, - ACTIONS(4210), 1, - anon_sym_COLON_COLON, + ACTIONS(4517), 1, + anon_sym_GT, + STATE(2115), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60721] = 3, - ACTIONS(4508), 1, - anon_sym_COLON, + [60567] = 5, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4515), 1, + anon_sym_COMMA, + ACTIONS(4517), 1, + anon_sym_GT, + STATE(2115), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3677), 3, + [60584] = 5, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4310), 1, anon_sym_RPAREN, + ACTIONS(4312), 1, anon_sym_COMMA, - anon_sym_PIPE, - [60734] = 5, - ACTIONS(4369), 1, - anon_sym_COMMA, - ACTIONS(4371), 1, - anon_sym_GT, - ACTIONS(4443), 1, - anon_sym_EQ, STATE(2123), 1, - aux_sym_type_parameters_repeat1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60751] = 4, - ACTIONS(3), 1, + [60601] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_declaration_list, + STATE(2229), 1, + sym_where_clause, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4510), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4512), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60766] = 5, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4514), 1, - anon_sym_RPAREN, - ACTIONS(4516), 1, - anon_sym_COMMA, - STATE(2121), 1, - aux_sym_tuple_type_repeat1, + [60618] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(458), 1, + sym_declaration_list, + STATE(2201), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60783] = 4, - ACTIONS(4518), 1, - anon_sym_DQUOTE, - STATE(1858), 1, - aux_sym_string_literal_repeat1, + [60635] = 5, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3850), 1, + anon_sym_where, + STATE(956), 1, + sym_field_declaration_list, + STATE(2154), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4520), 2, - sym__string_content, - sym_escape_sequence, - [60798] = 4, - ACTIONS(3965), 1, + [60652] = 5, + ACTIONS(3914), 1, anon_sym_COLON, - STATE(2102), 1, + ACTIONS(4519), 1, + anon_sym_SEMI, + ACTIONS(4521), 1, + anon_sym_EQ, + STATE(2432), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4523), 2, - anon_sym_COMMA, - anon_sym_GT, - [60813] = 5, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4281), 1, + [60669] = 5, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(1037), 1, - sym_enum_variant_list, - STATE(2206), 1, + ACTIONS(3850), 1, + anon_sym_where, + STATE(966), 1, + sym_declaration_list, + STATE(2159), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60830] = 5, - ACTIONS(4071), 1, - anon_sym_LPAREN, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_LBRACK, - STATE(1051), 1, - sym_delim_token_tree, + [60686] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60847] = 4, - ACTIONS(4525), 1, - anon_sym_DQUOTE, - STATE(1858), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4523), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60699] = 5, + ACTIONS(2582), 1, + anon_sym_LPAREN, + ACTIONS(3467), 1, + anon_sym_LT2, + STATE(810), 1, + sym_parameters, + STATE(1383), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4469), 2, - sym__string_content, - sym_escape_sequence, - [60862] = 5, - ACTIONS(2496), 1, + [60716] = 5, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4527), 1, + ACTIONS(4267), 1, + anon_sym_RPAREN, + ACTIONS(4269), 1, anon_sym_COMMA, - ACTIONS(4529), 1, - anon_sym_GT, - STATE(1999), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60879] = 4, - ACTIONS(2357), 1, - anon_sym_POUND, - ACTIONS(4531), 1, - sym_identifier, + STATE(1934), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1178), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [60894] = 5, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4535), 1, + [60733] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4537), 1, - anon_sym_LBRACK, - STATE(953), 1, - sym_delim_token_tree, + STATE(471), 1, + sym_declaration_list, + STATE(2214), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60911] = 4, - ACTIONS(4539), 1, - anon_sym_DQUOTE, - STATE(1858), 1, - aux_sym_string_literal_repeat1, + [60750] = 5, + ACTIONS(3914), 1, + anon_sym_COLON, + ACTIONS(4525), 1, + anon_sym_SEMI, + ACTIONS(4527), 1, + anon_sym_EQ, + STATE(2535), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4469), 2, - sym__string_content, - sym_escape_sequence, - [60926] = 5, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4527), 1, + [60767] = 5, + ACTIONS(4317), 1, anon_sym_COMMA, - ACTIONS(4529), 1, + ACTIONS(4319), 1, anon_sym_GT, - STATE(1999), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60943] = 5, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4535), 1, - anon_sym_LBRACE, - ACTIONS(4537), 1, - anon_sym_LBRACK, - STATE(954), 1, - sym_delim_token_tree, + ACTIONS(4500), 1, + anon_sym_EQ, + STATE(2098), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60960] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1004), 1, - sym_line_comment, - ACTIONS(4541), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4543), 3, + [60784] = 5, + ACTIONS(4093), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60975] = 4, - ACTIONS(4545), 1, - anon_sym_DQUOTE, - STATE(1832), 1, - aux_sym_string_literal_repeat1, + ACTIONS(4529), 1, + anon_sym_RPAREN, + ACTIONS(4531), 1, + anon_sym_COMMA, + STATE(2094), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4547), 2, - sym__string_content, - sym_escape_sequence, - [60990] = 5, - ACTIONS(3874), 1, + [60801] = 5, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(3892), 1, + ACTIONS(4120), 1, anon_sym_LBRACE, - STATE(284), 1, - sym_field_declaration_list, - STATE(2299), 1, + STATE(1049), 1, + sym_enum_variant_list, + STATE(2184), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61007] = 5, - ACTIONS(4359), 1, + [60818] = 5, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4533), 1, anon_sym_RPAREN, - ACTIONS(4363), 1, + ACTIONS(4535), 1, anon_sym_COMMA, - ACTIONS(4365), 1, - anon_sym_PIPE, - STATE(1981), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2078), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61024] = 5, - ACTIONS(4071), 1, + [60835] = 5, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_LBRACK, - STATE(1086), 1, - sym_delim_token_tree, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1718), 1, + sym_parameters, + STATE(2289), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61041] = 3, - ACTIONS(4121), 1, + [60852] = 3, + ACTIONS(4093), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4549), 3, + ACTIONS(4537), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [61054] = 4, - ACTIONS(4551), 1, - anon_sym_DQUOTE, - STATE(1866), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4553), 2, - sym__string_content, - sym_escape_sequence, - [61069] = 5, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(3888), 1, + [60865] = 5, + ACTIONS(4035), 1, + anon_sym_LPAREN, + ACTIONS(4037), 1, anon_sym_LBRACE, - STATE(1124), 1, - sym_declaration_list, - STATE(2289), 1, - sym_where_clause, + ACTIONS(4039), 1, + anon_sym_LBRACK, + STATE(1098), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61086] = 4, - ACTIONS(4555), 1, + [60882] = 4, + ACTIONS(4539), 1, anon_sym_DQUOTE, - STATE(1862), 1, + STATE(1883), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4557), 2, + ACTIONS(4401), 2, sym__string_content, sym_escape_sequence, - [61101] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4559), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [61114] = 3, - ACTIONS(4561), 1, - anon_sym_in, + [60897] = 5, + ACTIONS(3289), 1, + anon_sym_LBRACE, + ACTIONS(4541), 1, + sym_identifier, + ACTIONS(4543), 1, + anon_sym_STAR, + STATE(1947), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4563), 3, - sym_self, - sym_super, - sym_crate, - [61127] = 5, - ACTIONS(4121), 1, + [60914] = 5, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4565), 1, + ACTIONS(4545), 1, anon_sym_SEMI, - ACTIONS(4567), 1, + ACTIONS(4547), 1, anon_sym_EQ, - ACTIONS(4569), 1, + ACTIONS(4549), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61144] = 5, - ACTIONS(4361), 1, - anon_sym_COLON, - ACTIONS(4571), 1, - anon_sym_COMMA, - ACTIONS(4573), 1, - anon_sym_PIPE, - STATE(2062), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61161] = 5, - ACTIONS(3830), 1, + [60931] = 5, + ACTIONS(3289), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, - anon_sym_where, - STATE(495), 1, - sym_declaration_list, - STATE(2333), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61178] = 4, - ACTIONS(4577), 1, - anon_sym_COMMA, - STATE(1883), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4575), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [61193] = 5, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4304), 1, - anon_sym_RPAREN, - ACTIONS(4306), 1, - anon_sym_COMMA, - STATE(1982), 1, - aux_sym_parameters_repeat1, + ACTIONS(4113), 1, + sym_identifier, + ACTIONS(4115), 1, + anon_sym_STAR, + STATE(2044), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61210] = 4, - ACTIONS(3965), 1, + [60948] = 4, + ACTIONS(3914), 1, anon_sym_COLON, - STATE(2102), 1, + STATE(1910), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4580), 2, + ACTIONS(4551), 2, anon_sym_COMMA, anon_sym_GT, - [61225] = 5, - ACTIONS(3830), 1, + [60963] = 5, + ACTIONS(4035), 1, + anon_sym_LPAREN, + ACTIONS(4037), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, - anon_sym_where, - STATE(324), 1, - sym_declaration_list, - STATE(2288), 1, - sym_where_clause, + ACTIONS(4039), 1, + anon_sym_LBRACK, + STATE(1133), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61242] = 3, + [60980] = 5, + ACTIONS(3471), 1, + anon_sym_LPAREN, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1663), 1, + sym_parameters, + STATE(2291), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3477), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4583), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61255] = 5, - ACTIONS(3491), 1, + [60997] = 5, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3965), 1, + ACTIONS(3914), 1, anon_sym_COLON, - STATE(1387), 1, + STATE(1383), 1, sym_type_arguments, - STATE(2124), 1, + STATE(1930), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61272] = 3, - ACTIONS(4585), 1, - anon_sym_in, + [61014] = 4, + ACTIONS(4553), 1, + anon_sym_DQUOTE, + STATE(1866), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4587), 3, - sym_self, - sym_super, - sym_crate, - [61285] = 4, - ACTIONS(4591), 1, - anon_sym_COMMA, - STATE(1848), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4555), 2, + sym__string_content, + sym_escape_sequence, + [61029] = 5, + ACTIONS(4557), 1, + anon_sym_LPAREN, + ACTIONS(4559), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_LBRACK, + STATE(95), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4589), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [61300] = 5, - ACTIONS(3830), 1, + [61046] = 5, + ACTIONS(4557), 1, + anon_sym_LPAREN, + ACTIONS(4559), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(4561), 1, + anon_sym_LBRACK, + STATE(173), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61063] = 5, + ACTIONS(3850), 1, anon_sym_where, - STATE(489), 1, - sym_declaration_list, - STATE(2268), 1, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(293), 1, + sym_field_declaration_list, + STATE(2151), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61317] = 4, - ACTIONS(3), 1, + [61080] = 4, + ACTIONS(4168), 1, + anon_sym_COLON, + ACTIONS(4170), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4593), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4595), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61332] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61095] = 3, + ACTIONS(4563), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4575), 3, + ACTIONS(3660), 3, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [61345] = 5, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACE, - ACTIONS(4601), 1, - anon_sym_LBRACK, - STATE(1998), 1, - sym_token_tree, + anon_sym_PIPE, + [61108] = 4, + ACTIONS(4567), 1, + anon_sym_COMMA, + STATE(1880), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61362] = 5, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(4565), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [61123] = 5, + ACTIONS(3850), 1, anon_sym_where, - STATE(407), 1, - sym_declaration_list, - STATE(2322), 1, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_enum_variant_list, + STATE(2216), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61379] = 4, - ACTIONS(4603), 1, + [61140] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4565), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61153] = 4, + ACTIONS(4570), 1, anon_sym_DQUOTE, - STATE(1858), 1, + STATE(1883), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4469), 2, + ACTIONS(4572), 2, sym__string_content, sym_escape_sequence, - [61394] = 5, - ACTIONS(798), 1, + [61168] = 5, + ACTIONS(790), 1, anon_sym_RPAREN, - ACTIONS(4121), 1, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4395), 1, + ACTIONS(4327), 1, anon_sym_COMMA, - STATE(2159), 1, + STATE(2130), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61411] = 5, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3876), 1, - anon_sym_LT, - STATE(1719), 1, - sym_parameters, - STATE(2195), 1, - sym_type_parameters, + [61185] = 4, + ACTIONS(2347), 1, + anon_sym_POUND, + ACTIONS(4575), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61428] = 5, - ACTIONS(4427), 1, + STATE(1170), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [61200] = 5, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(4429), 1, - anon_sym_LBRACE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - STATE(1385), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61445] = 4, - ACTIONS(4605), 1, - anon_sym_DQUOTE, - STATE(1896), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4607), 2, - sym__string_content, - sym_escape_sequence, - [61460] = 5, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4234), 1, - anon_sym_LBRACE, - STATE(321), 1, - sym_enum_variant_list, - STATE(2282), 1, - sym_where_clause, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(1726), 1, + sym_parameters, + STATE(2288), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61477] = 5, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(4609), 1, - anon_sym_RPAREN, - ACTIONS(4611), 1, + [61217] = 4, + ACTIONS(4577), 1, anon_sym_COMMA, - STATE(1978), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1844), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61494] = 5, - ACTIONS(3495), 1, + ACTIONS(3066), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [61232] = 5, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(3876), 1, + ACTIONS(3852), 1, anon_sym_LT, - STATE(1703), 1, + STATE(1693), 1, sym_parameters, - STATE(2250), 1, + STATE(2189), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61511] = 5, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(4613), 1, - anon_sym_RBRACK, - ACTIONS(4615), 1, - anon_sym_COMMA, - STATE(1938), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61528] = 3, - ACTIONS(4619), 1, - anon_sym_COLON, + [61249] = 5, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(431), 1, + sym_field_declaration_list, + STATE(2206), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4617), 2, + [61266] = 4, + ACTIONS(4579), 1, anon_sym_RBRACE, + ACTIONS(4581), 1, anon_sym_COMMA, - [61540] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4621), 2, - anon_sym_COMMA, - anon_sym_GT, - [61552] = 4, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(4623), 1, - anon_sym_EQ, - STATE(2588), 1, - sym_type_parameters, + [61280] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4584), 1, + anon_sym_SEMI, + STATE(2425), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61566] = 4, - ACTIONS(3491), 1, + [61294] = 4, + ACTIONS(2590), 1, anon_sym_LT2, - ACTIONS(4625), 1, + ACTIONS(4586), 1, sym_identifier, - STATE(2368), 1, + STATE(818), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61580] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_PLUS, - STATE(895), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61594] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4627), 1, - anon_sym_SEMI, - STATE(329), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61608] = 4, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4629), 1, - anon_sym_SEMI, - ACTIONS(4631), 1, - anon_sym_EQ, + [61308] = 4, + ACTIONS(552), 1, + anon_sym_RBRACK, + ACTIONS(4588), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61622] = 4, - ACTIONS(3491), 1, + [61322] = 4, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(4625), 1, + ACTIONS(4590), 1, sym_identifier, - STATE(2523), 1, + STATE(2512), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61636] = 4, - ACTIONS(3491), 1, + [61336] = 4, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(4633), 1, + ACTIONS(4590), 1, sym_identifier, - STATE(2368), 1, + STATE(2511), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61650] = 2, + [61350] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4635), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4592), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [61660] = 4, - ACTIONS(798), 1, + [61362] = 4, + ACTIONS(388), 1, anon_sym_RPAREN, - ACTIONS(4395), 1, + ACTIONS(3227), 1, anon_sym_COMMA, - STATE(2159), 1, - aux_sym_parameters_repeat1, + STATE(2074), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61674] = 4, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(4637), 1, + [61376] = 4, + ACTIONS(4594), 1, sym_identifier, - STATE(2523), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61688] = 4, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4639), 1, - anon_sym_SEMI, - ACTIONS(4641), 1, - anon_sym_EQ, + ACTIONS(4596), 1, + anon_sym_ref, + ACTIONS(4598), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61702] = 4, - ACTIONS(4137), 1, + [61390] = 4, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4643), 1, + ACTIONS(4600), 1, anon_sym_SEMI, - STATE(457), 1, + STATE(341), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61716] = 4, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(4637), 1, - sym_identifier, - STATE(2368), 1, - sym_type_arguments, + [61404] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61730] = 4, - ACTIONS(4645), 1, - anon_sym_RPAREN, - ACTIONS(4647), 1, + ACTIONS(4602), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1920), 1, - aux_sym_meta_arguments_repeat1, + [61416] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61744] = 4, - ACTIONS(3491), 1, + ACTIONS(2425), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [61426] = 4, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(4257), 1, + ACTIONS(4604), 1, sym_identifier, - STATE(2368), 1, + STATE(2512), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61758] = 4, - ACTIONS(2634), 1, - anon_sym_LBRACE, - ACTIONS(4650), 1, - anon_sym_COLON_COLON, - STATE(934), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61772] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4652), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61782] = 4, - ACTIONS(3874), 1, + [61440] = 4, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4654), 1, + ACTIONS(4606), 1, anon_sym_SEMI, - STATE(2535), 1, + STATE(2557), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4656), 1, - anon_sym_SEMI, - STATE(461), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61810] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4658), 1, - anon_sym_SEMI, - STATE(463), 1, - sym_declaration_list, + [61454] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61824] = 4, - ACTIONS(3325), 1, - anon_sym_RBRACK, - ACTIONS(4660), 1, + ACTIONS(4608), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1927), 1, - aux_sym_array_expression_repeat1, + [61466] = 4, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4604), 1, + sym_identifier, + STATE(2511), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61838] = 4, - ACTIONS(512), 1, - anon_sym_RBRACK, - ACTIONS(4663), 1, + [61480] = 4, + ACTIONS(4403), 1, anon_sym_COMMA, - STATE(1927), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61852] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, + ACTIONS(4610), 1, + anon_sym_PIPE, + STATE(1946), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4665), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61864] = 4, - ACTIONS(3491), 1, + [61494] = 4, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(4257), 1, + ACTIONS(4612), 1, sym_identifier, - STATE(2523), 1, + STATE(2511), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61878] = 4, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4667), 1, - anon_sym_SEMI, - ACTIONS(4669), 1, - anon_sym_EQ, + [61508] = 4, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(4614), 1, + anon_sym_EQ_GT, + ACTIONS(4616), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61892] = 4, - ACTIONS(4671), 1, - anon_sym_RPAREN, - ACTIONS(4673), 1, - anon_sym_COMMA, - STATE(2064), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61522] = 4, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4612), 1, + sym_identifier, + STATE(2512), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61906] = 4, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_SEMI, - STATE(985), 1, - sym_block, + [61536] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61920] = 4, - ACTIONS(4137), 1, + ACTIONS(4618), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [61546] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_SEMI, - STATE(326), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + STATE(972), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61934] = 3, - ACTIONS(4145), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61946] = 4, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4679), 1, - anon_sym_SEMI, - STATE(1044), 1, - sym_block, + [61560] = 4, + ACTIONS(3866), 1, + anon_sym_GT, + ACTIONS(4620), 1, + anon_sym_COMMA, + STATE(1982), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61960] = 3, - ACTIONS(4121), 1, + [61574] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, + ACTIONS(4622), 1, + anon_sym_as, + ACTIONS(4624), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4681), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61972] = 4, - ACTIONS(2425), 1, - anon_sym_RBRACK, - ACTIONS(4683), 1, + [61588] = 4, + ACTIONS(3818), 1, + anon_sym_GT, + ACTIONS(4626), 1, anon_sym_COMMA, - STATE(1883), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1982), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61986] = 4, - ACTIONS(4131), 1, + [61602] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4685), 1, - anon_sym_SEMI, - STATE(1097), 1, + ACTIONS(4628), 1, + anon_sym_move, + STATE(1026), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62000] = 4, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3598), 1, - anon_sym_COLON, - STATE(2124), 1, - sym_trait_bounds, + [61616] = 4, + ACTIONS(4630), 1, + sym_identifier, + ACTIONS(4632), 1, + anon_sym_await, + ACTIONS(4634), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62014] = 4, - ACTIONS(4137), 1, - anon_sym_LBRACE, - ACTIONS(4687), 1, - anon_sym_SEMI, - STATE(421), 1, - sym_block, + [61630] = 4, + ACTIONS(2590), 1, + anon_sym_LT2, + ACTIONS(4586), 1, + sym_identifier, + STATE(802), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62028] = 4, - ACTIONS(4137), 1, - anon_sym_LBRACE, - ACTIONS(4689), 1, - anon_sym_SEMI, - STATE(450), 1, - sym_block, + [61644] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62042] = 4, - ACTIONS(514), 1, - anon_sym_RBRACK, - ACTIONS(3219), 1, + ACTIONS(4636), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1927), 1, - aux_sym_array_expression_repeat1, + anon_sym_GT, + [61654] = 4, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4638), 1, + anon_sym_EQ, + STATE(2544), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61668] = 4, + ACTIONS(4640), 1, + anon_sym_for, + ACTIONS(4642), 1, + anon_sym_loop, + ACTIONS(4644), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62056] = 2, + [61682] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4691), 3, + ACTIONS(4646), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [62066] = 4, - ACTIONS(4131), 1, + [61692] = 4, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4693), 1, + ACTIONS(4648), 1, anon_sym_SEMI, - STATE(1152), 1, - sym_block, + STATE(322), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62080] = 2, + [61706] = 3, + ACTIONS(4652), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2443), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4650), 2, anon_sym_RBRACE, - [62090] = 4, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4695), 1, + anon_sym_COMMA, + [61718] = 4, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4654), 1, anon_sym_SEMI, - ACTIONS(4697), 1, - anon_sym_EQ, + STATE(306), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62104] = 4, - ACTIONS(4131), 1, + [61732] = 4, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4699), 1, + ACTIONS(4656), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(354), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62118] = 4, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(3598), 1, - anon_sym_COLON, - STATE(2124), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62132] = 4, - ACTIONS(3355), 1, - anon_sym_RPAREN, - ACTIONS(4701), 1, - anon_sym_COMMA, - STATE(1950), 1, - aux_sym_arguments_repeat1, + [61746] = 4, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4658), 1, + anon_sym_SEMI, + ACTIONS(4660), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62146] = 4, - ACTIONS(3888), 1, + [61760] = 4, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4704), 1, + ACTIONS(4662), 1, anon_sym_SEMI, - STATE(1150), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62160] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, + STATE(283), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4706), 2, + [61774] = 4, + ACTIONS(3904), 1, anon_sym_RBRACE, + ACTIONS(4664), 1, anon_sym_COMMA, - [62172] = 4, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(4708), 1, - anon_sym_SEMI, - STATE(1148), 1, - sym_declaration_list, + STATE(2095), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62186] = 4, - ACTIONS(4710), 1, - anon_sym_for, - ACTIONS(4712), 1, - anon_sym_loop, - ACTIONS(4714), 1, - anon_sym_while, + [61788] = 4, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + ACTIONS(3960), 1, + anon_sym_BANG, + ACTIONS(4666), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62200] = 3, - ACTIONS(4716), 1, - sym_identifier, + [61802] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4718), 2, - anon_sym_default, - anon_sym_union, - [62212] = 4, - ACTIONS(388), 1, - anon_sym_RPAREN, - ACTIONS(4720), 1, + ACTIONS(4668), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1950), 1, - aux_sym_arguments_repeat1, + [61812] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62226] = 4, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4722), 1, + ACTIONS(4670), 3, anon_sym_SEMI, - STATE(1141), 1, - sym_block, + anon_sym_LBRACE, + anon_sym_COMMA, + [61822] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62240] = 3, - ACTIONS(4121), 1, + ACTIONS(4672), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61832] = 4, + ACTIONS(3551), 1, + anon_sym_COLON_COLON, + ACTIONS(3588), 1, + anon_sym_COLON, + STATE(1930), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4724), 2, + [61846] = 4, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4327), 1, anon_sym_COMMA, - anon_sym_GT, - [62252] = 4, - ACTIONS(2600), 1, - anon_sym_LT2, - ACTIONS(4726), 1, - sym_identifier, - STATE(831), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62266] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, + STATE(2124), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4728), 2, - anon_sym_RBRACE, + [61860] = 4, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4327), 1, anon_sym_COMMA, - [62278] = 4, - ACTIONS(4730), 1, - sym_identifier, - ACTIONS(4732), 1, - anon_sym_ref, - ACTIONS(4734), 1, - sym_mutable_specifier, + STATE(2130), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62292] = 4, - ACTIONS(4137), 1, + [61874] = 4, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4736), 1, + ACTIONS(4674), 1, anon_sym_SEMI, - STATE(477), 1, - sym_block, + STATE(264), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62306] = 2, + [61888] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4676), 1, + anon_sym_SEMI, + STATE(2561), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4738), 3, - anon_sym_SEMI, + [61902] = 4, + ACTIONS(4678), 1, anon_sym_RBRACE, + ACTIONS(4680), 1, anon_sym_COMMA, - [62316] = 4, - ACTIONS(4740), 1, - sym_identifier, - ACTIONS(4742), 1, - anon_sym_await, - ACTIONS(4744), 1, - sym_integer_literal, + STATE(1980), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62330] = 3, - ACTIONS(3237), 1, - anon_sym_COLON_COLON, + [61916] = 3, + ACTIONS(4684), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4746), 2, - anon_sym_RPAREN, + ACTIONS(4682), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [62342] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, + [61928] = 4, + ACTIONS(2612), 1, + anon_sym_LBRACE, + ACTIONS(4686), 1, + anon_sym_COLON_COLON, + STATE(866), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4583), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62354] = 4, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(4748), 1, + [61942] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4688), 1, anon_sym_SEMI, - STATE(2421), 1, - sym_where_clause, + STATE(261), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62368] = 2, + [61956] = 4, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4690), 1, + sym_identifier, + STATE(2512), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4750), 3, + [61970] = 4, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4692), 1, anon_sym_SEMI, + STATE(440), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61984] = 4, + ACTIONS(4694), 1, anon_sym_RBRACE, + ACTIONS(4696), 1, anon_sym_COMMA, - [62378] = 4, - ACTIONS(3371), 1, + STATE(1969), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61998] = 4, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(4752), 1, - sym_identifier, - STATE(2088), 1, - sym_use_list, + ACTIONS(4698), 1, + anon_sym_COLON_COLON, + STATE(866), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62392] = 4, - ACTIONS(4304), 1, - anon_sym_RPAREN, - ACTIONS(4306), 1, + [62012] = 4, + ACTIONS(4403), 1, anon_sym_COMMA, - STATE(1982), 1, - aux_sym_parameters_repeat1, + ACTIONS(4700), 1, + anon_sym_PIPE, + STATE(1986), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62406] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, + [62026] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4754), 2, - anon_sym_RPAREN, + ACTIONS(4702), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [62418] = 4, - ACTIONS(2496), 1, - anon_sym_PLUS, - ACTIONS(4756), 1, - sym_mutable_specifier, - ACTIONS(4758), 1, - sym_self, + [62036] = 4, + ACTIONS(3289), 1, + anon_sym_LBRACE, + ACTIONS(4704), 1, + sym_identifier, + STATE(1988), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62432] = 4, - ACTIONS(3491), 1, + [62050] = 4, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(3804), 1, - anon_sym_LBRACE, - STATE(1387), 1, + ACTIONS(4690), 1, + sym_identifier, + STATE(2511), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62446] = 2, + [62064] = 4, + ACTIONS(2451), 1, + anon_sym_RPAREN, + ACTIONS(4706), 1, + anon_sym_COMMA, + STATE(1880), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4760), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [62078] = 4, + ACTIONS(4708), 1, anon_sym_COMMA, - [62456] = 3, - ACTIONS(4277), 1, - anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_GT, + STATE(2058), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62468] = 2, + [62092] = 3, + ACTIONS(4714), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2413), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4712), 2, anon_sym_RBRACE, - [62478] = 4, - ACTIONS(4137), 1, - anon_sym_LBRACE, - ACTIONS(4762), 1, - anon_sym_SEMI, - STATE(330), 1, - sym_block, + anon_sym_COMMA, + [62104] = 4, + ACTIONS(914), 1, + anon_sym_GT, + ACTIONS(4716), 1, + anon_sym_COMMA, + STATE(2121), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62492] = 4, - ACTIONS(2393), 1, + [62118] = 4, + ACTIONS(4718), 1, anon_sym_RPAREN, - ACTIONS(4764), 1, + ACTIONS(4720), 1, anon_sym_COMMA, - STATE(1883), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2070), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62506] = 4, - ACTIONS(3830), 1, + [62132] = 4, + ACTIONS(3858), 1, anon_sym_LBRACE, - ACTIONS(4766), 1, + ACTIONS(4722), 1, anon_sym_SEMI, - STATE(426), 1, + STATE(365), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62520] = 4, - ACTIONS(4137), 1, + [62146] = 4, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4768), 1, + ACTIONS(4724), 1, anon_sym_SEMI, - STATE(484), 1, + STATE(399), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62534] = 4, - ACTIONS(2465), 1, - anon_sym_RPAREN, - ACTIONS(4770), 1, - anon_sym_COMMA, - STATE(1883), 1, - aux_sym_tuple_pattern_repeat1, + [62160] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62548] = 4, - ACTIONS(798), 1, + ACTIONS(4726), 2, anon_sym_RPAREN, - ACTIONS(4395), 1, anon_sym_COMMA, - STATE(2162), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62562] = 3, - ACTIONS(4774), 1, - anon_sym_COLON, + [62172] = 4, + ACTIONS(2550), 1, + anon_sym_RPAREN, + ACTIONS(4728), 1, + anon_sym_COMMA, + STATE(1966), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4772), 2, + [62186] = 4, + ACTIONS(4061), 1, anon_sym_RBRACE, + ACTIONS(4730), 1, anon_sym_COMMA, - [62574] = 4, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4776), 1, - anon_sym_SEMI, - STATE(1133), 1, - sym_block, + STATE(2135), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62588] = 2, + [62200] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4778), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62598] = 4, - ACTIONS(4780), 1, - anon_sym_RBRACE, - ACTIONS(4782), 1, - anon_sym_COMMA, - STATE(1986), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4732), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62210] = 3, + ACTIONS(4259), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62612] = 4, - ACTIONS(4045), 1, - anon_sym_RBRACE, - ACTIONS(4785), 1, - anon_sym_COMMA, - STATE(2143), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62222] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62626] = 4, - ACTIONS(4137), 1, + ACTIONS(4734), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62234] = 4, + ACTIONS(574), 1, anon_sym_LBRACE, - ACTIONS(4787), 1, - anon_sym_SEMI, - STATE(437), 1, + ACTIONS(4736), 1, + anon_sym_move, + STATE(222), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62640] = 4, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(4789), 1, - anon_sym_EQ, - STATE(2485), 1, - sym_type_parameters, + [62248] = 3, + ACTIONS(4128), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62654] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4791), 1, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62260] = 4, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4738), 1, anon_sym_SEMI, - STATE(364), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62668] = 4, - ACTIONS(562), 1, - anon_sym_LBRACE, - ACTIONS(4793), 1, - anon_sym_move, - STATE(244), 1, - sym_block, + ACTIONS(4740), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62682] = 4, - ACTIONS(3896), 1, - anon_sym_RBRACE, - ACTIONS(4795), 1, + [62274] = 4, + ACTIONS(4734), 1, + anon_sym_RPAREN, + ACTIONS(4742), 1, anon_sym_COMMA, - STATE(2041), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1966), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62696] = 4, - ACTIONS(4797), 1, - anon_sym_RBRACE, - ACTIONS(4799), 1, - anon_sym_COMMA, - STATE(2008), 1, - aux_sym_field_declaration_list_repeat1, + [62288] = 4, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(4745), 1, + anon_sym_GT, + STATE(2160), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62710] = 4, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, - anon_sym_SEMI, - STATE(1111), 1, - sym_block, + [62302] = 4, + ACTIONS(3570), 1, + anon_sym_COLON_COLON, + ACTIONS(3588), 1, + anon_sym_COLON, + STATE(1930), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62724] = 4, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(4803), 1, - anon_sym_SEMI, - STATE(1104), 1, - sym_declaration_list, + [62316] = 4, + ACTIONS(3904), 1, + anon_sym_RBRACE, + ACTIONS(4664), 1, + anon_sym_COMMA, + STATE(2102), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62738] = 4, - ACTIONS(4805), 1, - anon_sym_for, - ACTIONS(4807), 1, - anon_sym_loop, - ACTIONS(4809), 1, - anon_sym_while, + [62330] = 4, + ACTIONS(4747), 1, + anon_sym_RBRACE, + ACTIONS(4749), 1, + anon_sym_COMMA, + STATE(1959), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62752] = 4, - ACTIONS(4811), 1, - anon_sym_for, - ACTIONS(4813), 1, - anon_sym_loop, - ACTIONS(4815), 1, - anon_sym_while, + [62344] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62766] = 2, + ACTIONS(4751), 2, + anon_sym_COMMA, + anon_sym_GT, + [62356] = 3, + ACTIONS(4755), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4817), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4753), 2, anon_sym_RBRACE, - [62776] = 4, - ACTIONS(926), 1, - anon_sym_GT, - ACTIONS(4819), 1, anon_sym_COMMA, - STATE(2127), 1, - aux_sym_type_arguments_repeat1, + [62368] = 3, + ACTIONS(4757), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62790] = 4, - ACTIONS(3830), 1, + ACTIONS(4759), 2, + anon_sym_default, + anon_sym_union, + [62380] = 4, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4821), 1, + ACTIONS(4761), 1, anon_sym_SEMI, - STATE(454), 1, - sym_declaration_list, + STATE(1027), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62804] = 4, - ACTIONS(3830), 1, + [62394] = 4, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4823), 1, + ACTIONS(4763), 1, anon_sym_SEMI, - STATE(401), 1, - sym_declaration_list, + STATE(1004), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62818] = 3, - ACTIONS(4253), 1, - anon_sym_COLON_COLON, + [62408] = 3, + ACTIONS(4500), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62830] = 4, - ACTIONS(4047), 1, - anon_sym_RBRACE, - ACTIONS(4825), 1, + ACTIONS(4551), 2, anon_sym_COMMA, - STATE(2143), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62844] = 4, - ACTIONS(3888), 1, + anon_sym_GT, + [62420] = 4, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, + ACTIONS(4765), 1, anon_sym_SEMI, - STATE(1094), 1, - sym_declaration_list, + STATE(985), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62858] = 4, - ACTIONS(3904), 1, - anon_sym_RBRACE, - ACTIONS(4829), 1, - anon_sym_COMMA, - STATE(2045), 1, - aux_sym_field_declaration_list_repeat1, + [62434] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62872] = 3, - ACTIONS(4121), 1, + ACTIONS(4767), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62444] = 3, + ACTIONS(4093), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4831), 2, - anon_sym_RPAREN, + ACTIONS(4769), 2, + anon_sym_COMMA, + anon_sym_GT, + [62456] = 4, + ACTIONS(3838), 1, + anon_sym_RBRACE, + ACTIONS(4771), 1, anon_sym_COMMA, - [62884] = 4, - ACTIONS(4137), 1, + STATE(2050), 1, + aux_sym_field_initializer_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62470] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4833), 1, - anon_sym_SEMI, - STATE(432), 1, + ACTIONS(4093), 1, + anon_sym_PLUS, + STATE(1007), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62898] = 4, - ACTIONS(3896), 1, - anon_sym_RBRACE, - ACTIONS(4795), 1, + [62484] = 4, + ACTIONS(4551), 1, + anon_sym_GT, + ACTIONS(4773), 1, anon_sym_COMMA, - STATE(2045), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1982), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62912] = 3, - ACTIONS(4837), 1, - anon_sym_COLON, + [62498] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4835), 2, - anon_sym_RBRACE, + ACTIONS(4776), 2, anon_sym_COMMA, - [62924] = 4, - ACTIONS(4839), 1, - anon_sym_RBRACE, - ACTIONS(4841), 1, - anon_sym_COMMA, - STATE(1987), 1, - aux_sym_struct_pattern_repeat1, + anon_sym_GT, + [62510] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, + anon_sym_SEMI, + STATE(452), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62938] = 4, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, - ACTIONS(3993), 1, - anon_sym_BANG, - ACTIONS(4843), 1, - sym_identifier, + [62524] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4780), 1, + anon_sym_SEMI, + STATE(488), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62952] = 4, - ACTIONS(4831), 1, - anon_sym_RPAREN, - ACTIONS(4845), 1, + [62538] = 4, + ACTIONS(4782), 1, anon_sym_COMMA, - STATE(2012), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4785), 1, + anon_sym_PIPE, + STATE(1986), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62966] = 4, - ACTIONS(4137), 1, + [62552] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4848), 1, + ACTIONS(4787), 1, anon_sym_SEMI, - STATE(481), 1, - sym_block, + STATE(1115), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62980] = 4, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(4850), 1, + [62566] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4789), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1920), 1, - aux_sym_meta_arguments_repeat1, + [62576] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62994] = 4, - ACTIONS(3888), 1, + ACTIONS(4791), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62588] = 4, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, + ACTIONS(4793), 1, anon_sym_SEMI, - STATE(1060), 1, - sym_declaration_list, + STATE(974), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63008] = 4, - ACTIONS(4121), 1, + [62602] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4854), 1, + ACTIONS(4795), 1, anon_sym_SEMI, - ACTIONS(4856), 1, + ACTIONS(4797), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63022] = 2, + [62616] = 4, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4799), 1, + anon_sym_SEMI, + ACTIONS(4801), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4858), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [63032] = 3, - ACTIONS(4210), 1, - anon_sym_COLON_COLON, + [62630] = 3, + ACTIONS(4803), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63044] = 2, + ACTIONS(4805), 2, + anon_sym_default, + anon_sym_union, + [62642] = 3, + ACTIONS(4291), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4860), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4785), 2, anon_sym_COMMA, - [63054] = 4, - ACTIONS(3888), 1, + anon_sym_PIPE, + [62654] = 4, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4862), 1, + ACTIONS(4807), 1, anon_sym_SEMI, - STATE(1072), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63068] = 4, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(4864), 1, - anon_sym_GT, - STATE(2197), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63082] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4866), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63092] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4868), 1, - anon_sym_move, - STATE(1113), 1, + STATE(284), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63106] = 4, - ACTIONS(4527), 1, + [62668] = 4, + ACTIONS(4809), 1, + anon_sym_RBRACE, + ACTIONS(4811), 1, anon_sym_COMMA, - ACTIONS(4529), 1, - anon_sym_GT, - STATE(1999), 1, - aux_sym_type_arguments_repeat1, + STATE(2104), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63120] = 4, - ACTIONS(4870), 1, - anon_sym_RBRACE, - ACTIONS(4872), 1, - anon_sym_COMMA, - STATE(2090), 1, - aux_sym_field_initializer_list_repeat1, + [62682] = 4, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(4813), 1, + anon_sym_SEMI, + STATE(964), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63134] = 3, - ACTIONS(4876), 1, - anon_sym_COLON, + [62696] = 3, + ACTIONS(3181), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4874), 2, - anon_sym_RBRACE, + ACTIONS(4815), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [63146] = 4, - ACTIONS(2600), 1, + [62708] = 4, + ACTIONS(2590), 1, anon_sym_LT2, - ACTIONS(4878), 1, + ACTIONS(4817), 1, sym_identifier, - STATE(1227), 1, + STATE(1214), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63160] = 4, - ACTIONS(3888), 1, + [62722] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4880), 1, + ACTIONS(4819), 1, anon_sym_SEMI, - STATE(1069), 1, + STATE(945), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63174] = 4, - ACTIONS(3830), 1, + [62736] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4882), 1, + ACTIONS(4821), 1, anon_sym_SEMI, - STATE(333), 1, + STATE(940), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63188] = 4, - ACTIONS(4864), 1, - anon_sym_GT, - ACTIONS(4884), 1, - anon_sym_COMMA, - STATE(2118), 1, - aux_sym_for_lifetimes_repeat1, + [62750] = 4, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4823), 1, + sym_identifier, + STATE(2512), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63202] = 3, - ACTIONS(4361), 1, - anon_sym_COLON, + [62764] = 3, + ACTIONS(4170), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4886), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [63214] = 4, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(3243), 1, - anon_sym_COMMA, - STATE(1950), 1, - aux_sym_arguments_repeat1, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62776] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63228] = 4, - ACTIONS(2600), 1, + ACTIONS(4469), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62788] = 4, + ACTIONS(2590), 1, anon_sym_LT2, - ACTIONS(4878), 1, + ACTIONS(4817), 1, sym_identifier, - STATE(1226), 1, + STATE(1213), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63242] = 4, - ACTIONS(4137), 1, - anon_sym_LBRACE, - ACTIONS(4888), 1, - anon_sym_SEMI, - STATE(431), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63256] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4890), 1, - anon_sym_SEMI, - STATE(392), 1, - sym_declaration_list, + [62802] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63270] = 4, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4892), 1, + ACTIONS(4825), 3, anon_sym_SEMI, - STATE(1028), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [62812] = 4, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4823), 1, + sym_identifier, + STATE(2511), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63284] = 4, - ACTIONS(4894), 1, - anon_sym_RBRACE, - ACTIONS(4896), 1, - anon_sym_COMMA, - STATE(2003), 1, - aux_sym_struct_pattern_repeat1, + [62826] = 4, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4827), 1, + sym_identifier, + STATE(2511), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63298] = 4, - ACTIONS(794), 1, + [62840] = 4, + ACTIONS(4829), 1, anon_sym_RPAREN, - ACTIONS(4898), 1, + ACTIONS(4831), 1, anon_sym_COMMA, - STATE(2162), 1, - aux_sym_parameters_repeat1, + STATE(2070), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63312] = 4, - ACTIONS(4886), 1, - anon_sym_PIPE, - ACTIONS(4900), 1, + [62854] = 4, + ACTIONS(3870), 1, + anon_sym_RBRACE, + ACTIONS(4833), 1, anon_sym_COMMA, - STATE(2039), 1, - aux_sym_closure_parameters_repeat1, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63326] = 4, - ACTIONS(4903), 1, - sym_identifier, - ACTIONS(4905), 1, - anon_sym_ref, - ACTIONS(4907), 1, - sym_mutable_specifier, + [62868] = 4, + ACTIONS(3852), 1, + anon_sym_LT, + ACTIONS(4835), 1, + anon_sym_EQ, + STATE(2560), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63340] = 4, - ACTIONS(3850), 1, + [62882] = 4, + ACTIONS(3870), 1, anon_sym_RBRACE, - ACTIONS(4909), 1, + ACTIONS(4833), 1, anon_sym_COMMA, - STATE(2045), 1, + STATE(2063), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63354] = 4, - ACTIONS(4911), 1, - anon_sym_RPAREN, - ACTIONS(4913), 1, - anon_sym_COMMA, - STATE(2064), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62896] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63368] = 4, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(4915), 1, + ACTIONS(4837), 3, anon_sym_SEMI, - ACTIONS(4917), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63382] = 4, - ACTIONS(2634), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + [62906] = 4, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(4919), 1, - anon_sym_COLON_COLON, - STATE(934), 1, - sym_field_initializer_list, + ACTIONS(4839), 1, + anon_sym_SEMI, + STATE(921), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63396] = 4, - ACTIONS(4921), 1, + [62920] = 4, + ACTIONS(4841), 1, anon_sym_RBRACE, - ACTIONS(4923), 1, + ACTIONS(4843), 1, anon_sym_COMMA, - STATE(2045), 1, + STATE(2010), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63410] = 3, - ACTIONS(4443), 1, - anon_sym_EQ, + [62934] = 4, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4827), 1, + sym_identifier, + STATE(2512), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4523), 2, - anon_sym_COMMA, - anon_sym_GT, - [63422] = 4, - ACTIONS(3491), 1, + [62948] = 4, + ACTIONS(4845), 1, + sym_identifier, + ACTIONS(4847), 1, + anon_sym_ref, + ACTIONS(4849), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62962] = 4, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(4926), 1, + ACTIONS(3802), 1, + anon_sym_LBRACE, + STATE(1383), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62976] = 4, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4851), 1, sym_identifier, - STATE(2368), 1, + STATE(2511), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63436] = 2, + [62990] = 4, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(4853), 1, + anon_sym_SEMI, + STATE(880), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4928), 3, + [63004] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4855), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63446] = 4, - ACTIONS(3878), 1, - anon_sym_RBRACE, - ACTIONS(4930), 1, - anon_sym_COMMA, - STATE(2054), 1, - aux_sym_enum_variant_list_repeat2, + STATE(476), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63460] = 4, - ACTIONS(4523), 1, - anon_sym_GT, - ACTIONS(4932), 1, - anon_sym_COMMA, - STATE(2050), 1, - aux_sym_type_parameters_repeat1, + [63018] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63474] = 4, - ACTIONS(3491), 1, + ACTIONS(2433), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [63028] = 4, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(4926), 1, + ACTIONS(4851), 1, sym_identifier, - STATE(2523), 1, + STATE(2512), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63488] = 4, - ACTIONS(3491), 1, + [63042] = 4, + ACTIONS(3467), 1, anon_sym_LT2, - ACTIONS(4633), 1, + ACTIONS(4113), 1, sym_identifier, - STATE(2523), 1, + STATE(2512), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63502] = 4, - ACTIONS(4121), 1, + [63056] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_SEMI, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63516] = 4, - ACTIONS(4939), 1, - anon_sym_RBRACE, - ACTIONS(4941), 1, + [63070] = 4, + ACTIONS(4475), 1, anon_sym_COMMA, - STATE(2054), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4477), 1, + anon_sym_GT, + STATE(1953), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63530] = 4, - ACTIONS(4369), 1, + [63084] = 4, + ACTIONS(4317), 1, anon_sym_COMMA, - ACTIONS(4371), 1, + ACTIONS(4319), 1, anon_sym_GT, - STATE(2123), 1, + STATE(2098), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63544] = 4, - ACTIONS(4944), 1, - anon_sym_RBRACE, - ACTIONS(4946), 1, + [63098] = 4, + ACTIONS(3319), 1, + anon_sym_RBRACK, + ACTIONS(4861), 1, anon_sym_COMMA, - STATE(2133), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2028), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63558] = 4, - ACTIONS(284), 1, + [63112] = 4, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, - anon_sym_PLUS, - STATE(1020), 1, + ACTIONS(4864), 1, + anon_sym_SEMI, + STATE(294), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63572] = 3, - ACTIONS(4950), 1, - anon_sym_EQ, + [63126] = 4, + ACTIONS(3467), 1, + anon_sym_LT2, + ACTIONS(4113), 1, + sym_identifier, + STATE(2511), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4948), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63584] = 4, - ACTIONS(3864), 1, - anon_sym_RBRACE, - ACTIONS(4952), 1, - anon_sym_COMMA, - STATE(2054), 1, - aux_sym_enum_variant_list_repeat2, + [63140] = 4, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(4866), 1, + anon_sym_SEMI, + STATE(840), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63598] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, + [63154] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(4868), 1, + anon_sym_SEMI, + STATE(935), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4954), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63610] = 4, - ACTIONS(3888), 1, + [63168] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(4956), 1, + ACTIONS(4870), 1, anon_sym_SEMI, - STATE(1021), 1, + STATE(998), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63624] = 4, - ACTIONS(4571), 1, - anon_sym_COMMA, - ACTIONS(4958), 1, - anon_sym_PIPE, - STATE(2039), 1, - aux_sym_closure_parameters_repeat1, + [63182] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(4872), 1, + anon_sym_SEMI, + STATE(1046), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63638] = 4, - ACTIONS(4960), 1, + [63196] = 4, + ACTIONS(4267), 1, anon_sym_RPAREN, - ACTIONS(4962), 1, + ACTIONS(4269), 1, anon_sym_COMMA, - STATE(2014), 1, - aux_sym_meta_arguments_repeat1, + STATE(1934), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63652] = 4, - ACTIONS(4964), 1, - anon_sym_RPAREN, - ACTIONS(4966), 1, - anon_sym_COMMA, - STATE(2064), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [63210] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63666] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, + ACTIONS(4874), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63220] = 4, + ACTIONS(3894), 1, + anon_sym_RBRACE, + ACTIONS(4876), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4969), 2, - anon_sym_COMMA, - anon_sym_GT, - [63678] = 2, + [63234] = 4, + ACTIONS(4878), 1, + sym_identifier, + ACTIONS(4880), 1, + anon_sym_ref, + ACTIONS(4882), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4971), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63688] = 4, - ACTIONS(2562), 1, - anon_sym_RPAREN, - ACTIONS(4973), 1, + [63248] = 4, + ACTIONS(4884), 1, + anon_sym_RBRACE, + ACTIONS(4886), 1, anon_sym_COMMA, - STATE(2012), 1, - aux_sym_tuple_type_repeat1, + STATE(2039), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63702] = 4, - ACTIONS(3874), 1, + [63262] = 4, + ACTIONS(3850), 1, anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(4889), 1, anon_sym_SEMI, - STATE(2484), 1, + STATE(2436), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63716] = 2, + [63276] = 4, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(4891), 1, + anon_sym_SEMI, + ACTIONS(4893), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4977), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63726] = 3, - ACTIONS(4121), 1, + [63290] = 4, + ACTIONS(2513), 1, anon_sym_PLUS, + ACTIONS(4895), 1, + sym_mutable_specifier, + ACTIONS(4897), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4979), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63738] = 4, - ACTIONS(4981), 1, - sym_identifier, - ACTIONS(4983), 1, - anon_sym_ref, - ACTIONS(4985), 1, - sym_mutable_specifier, + [63304] = 4, + ACTIONS(4899), 1, + anon_sym_for, + ACTIONS(4901), 1, + anon_sym_loop, + ACTIONS(4903), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63752] = 2, + [63318] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4987), 3, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_EQ, - [63762] = 4, - ACTIONS(4989), 1, - anon_sym_RPAREN, - ACTIONS(4991), 1, + ACTIONS(4905), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2064), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [63328] = 4, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4907), 1, + anon_sym_SEMI, + STATE(317), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63776] = 2, + [63342] = 4, + ACTIONS(4023), 1, + anon_sym_RBRACE, + ACTIONS(4909), 1, + anon_sym_COMMA, + STATE(2135), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4477), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [63786] = 2, + [63356] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4993), 3, + ACTIONS(4911), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63796] = 4, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(4995), 1, - sym_identifier, - STATE(2368), 1, - sym_type_arguments, + [63366] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(4913), 1, + anon_sym_SEMI, + STATE(895), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63810] = 2, + [63380] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(4915), 1, + anon_sym_SEMI, + STATE(988), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4997), 3, - anon_sym_SEMI, + [63394] = 4, + ACTIONS(4917), 1, anon_sym_RBRACE, + ACTIONS(4919), 1, anon_sym_COMMA, - [63820] = 4, - ACTIONS(4999), 1, - anon_sym_COMMA, - ACTIONS(5001), 1, - anon_sym_GT, - STATE(2030), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2050), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63834] = 4, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(5003), 1, + [63408] = 4, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_SEMI, - STATE(2438), 1, - sym_where_clause, + STATE(466), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63848] = 4, - ACTIONS(4121), 1, + [63422] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5005), 1, + ACTIONS(4924), 1, anon_sym_SEMI, - ACTIONS(5007), 1, - anon_sym_EQ, + ACTIONS(4926), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63862] = 4, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(5009), 1, + [63436] = 4, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(4928), 1, anon_sym_SEMI, - ACTIONS(5011), 1, - anon_sym_EQ, + STATE(844), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63876] = 4, - ACTIONS(4121), 1, + [63450] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5013), 1, + ACTIONS(4930), 1, anon_sym_SEMI, - ACTIONS(5015), 1, + ACTIONS(4932), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63890] = 4, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(5017), 1, - anon_sym_SEMI, - STATE(858), 1, - sym_block, + [63464] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63904] = 2, + ACTIONS(4934), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63474] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5019), 3, - anon_sym_EQ, + ACTIONS(4936), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [63914] = 4, - ACTIONS(3888), 1, + [63484] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(4938), 1, anon_sym_SEMI, - STATE(995), 1, + STATE(933), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63928] = 4, - ACTIONS(3858), 1, + [63498] = 4, + ACTIONS(4745), 1, anon_sym_GT, - ACTIONS(5023), 1, + ACTIONS(4940), 1, anon_sym_COMMA, - STATE(2050), 1, - aux_sym_type_parameters_repeat1, + STATE(2113), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63942] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5025), 1, - anon_sym_SEMI, - STATE(339), 1, - sym_declaration_list, + [63512] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4942), 1, + anon_sym_COMMA, + STATE(2124), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63956] = 2, + [63526] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4944), 1, + anon_sym_SEMI, + STATE(323), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5027), 3, - anon_sym_SEMI, + [63540] = 4, + ACTIONS(3900), 1, anon_sym_RBRACE, + ACTIONS(4946), 1, anon_sym_COMMA, - [63966] = 3, - ACTIONS(5031), 1, - anon_sym_EQ, + STATE(2102), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5029), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63978] = 4, - ACTIONS(3894), 1, - anon_sym_RBRACE, - ACTIONS(5033), 1, + [63554] = 4, + ACTIONS(520), 1, + anon_sym_RBRACK, + ACTIONS(3185), 1, anon_sym_COMMA, - STATE(1986), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2028), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63992] = 4, - ACTIONS(2600), 1, - anon_sym_LT2, - ACTIONS(4726), 1, - sym_identifier, - STATE(821), 1, - sym_type_arguments, + [63568] = 4, + ACTIONS(3820), 1, + anon_sym_RBRACE, + ACTIONS(4948), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64006] = 2, + [63582] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5035), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [64016] = 4, - ACTIONS(5037), 1, + ACTIONS(4950), 2, anon_sym_RBRACE, - ACTIONS(5039), 1, anon_sym_COMMA, - STATE(2137), 1, - aux_sym_use_list_repeat1, + [63594] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4952), 1, + anon_sym_SEMI, + STATE(2410), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64030] = 4, - ACTIONS(5041), 1, - sym_identifier, - ACTIONS(5043), 1, - anon_sym_ref, - ACTIONS(5045), 1, - sym_mutable_specifier, + [63608] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(4954), 1, + anon_sym_SEMI, + STATE(2531), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64044] = 4, - ACTIONS(4121), 1, + [63622] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5047), 1, + ACTIONS(4956), 1, anon_sym_SEMI, - ACTIONS(5049), 1, + ACTIONS(4958), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64058] = 4, - ACTIONS(3866), 1, - anon_sym_GT, - ACTIONS(5051), 1, - anon_sym_COMMA, - STATE(2050), 1, - aux_sym_type_parameters_repeat1, + [63636] = 4, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(4960), 1, + anon_sym_SEMI, + STATE(1040), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64072] = 4, - ACTIONS(3888), 1, + [63650] = 4, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(4962), 1, anon_sym_SEMI, - STATE(869), 1, - sym_declaration_list, + STATE(356), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64086] = 2, + [63664] = 4, + ACTIONS(4964), 1, + anon_sym_RPAREN, + ACTIONS(4966), 1, + anon_sym_COMMA, + STATE(2070), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5055), 3, + [63678] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(4969), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [64096] = 4, - ACTIONS(3926), 1, - anon_sym_RBRACE, - ACTIONS(5057), 1, - anon_sym_COMMA, - STATE(2005), 1, - aux_sym_field_declaration_list_repeat1, + STATE(364), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64110] = 4, - ACTIONS(4121), 1, + [63692] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5059), 1, + ACTIONS(4971), 1, anon_sym_SEMI, - ACTIONS(5061), 1, + ACTIONS(4973), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64124] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5063), 1, - anon_sym_SEMI, - STATE(341), 1, - sym_declaration_list, + [63706] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64138] = 2, + ACTIONS(4975), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63718] = 4, + ACTIONS(3309), 1, + anon_sym_RPAREN, + ACTIONS(4977), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5065), 3, - anon_sym_EQ, + [63732] = 4, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(4980), 1, anon_sym_COMMA, - anon_sym_GT, - [64148] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5067), 1, - anon_sym_SEMI, - STATE(391), 1, - sym_declaration_list, + STATE(2074), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64162] = 4, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(5069), 1, - sym_identifier, - STATE(2523), 1, - sym_type_arguments, + [63746] = 4, + ACTIONS(4982), 1, + anon_sym_RBRACE, + ACTIONS(4984), 1, + anon_sym_COMMA, + STATE(2046), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64176] = 4, - ACTIONS(5071), 1, + [63760] = 4, + ACTIONS(4986), 1, anon_sym_RBRACE, - ACTIONS(5073), 1, + ACTIONS(4988), 1, anon_sym_COMMA, - STATE(2149), 1, + STATE(2131), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64190] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_SEMI, - STATE(336), 1, - sym_declaration_list, + [63774] = 4, + ACTIONS(4990), 1, + anon_sym_RPAREN, + ACTIONS(4992), 1, + anon_sym_COMMA, + STATE(2070), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64204] = 4, - ACTIONS(3926), 1, - anon_sym_RBRACE, - ACTIONS(5057), 1, - anon_sym_COMMA, - STATE(2045), 1, - aux_sym_field_declaration_list_repeat1, + [63788] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64218] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, + ACTIONS(4994), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [63798] = 4, + ACTIONS(3816), 1, + anon_sym_LBRACE, + ACTIONS(4996), 1, + anon_sym_SEMI, + STATE(1097), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4475), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64230] = 4, - ACTIONS(4121), 1, + [63812] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5077), 1, + ACTIONS(4998), 1, anon_sym_SEMI, - ACTIONS(5079), 1, + ACTIONS(5000), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64244] = 4, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(4995), 1, - sym_identifier, - STATE(2523), 1, - sym_type_arguments, + [63826] = 4, + ACTIONS(3830), 1, + anon_sym_RBRACE, + ACTIONS(5002), 1, + anon_sym_COMMA, + STATE(2037), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63840] = 4, + ACTIONS(3830), 1, + anon_sym_RBRACE, + ACTIONS(5002), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64258] = 4, - ACTIONS(4385), 1, + [63854] = 4, + ACTIONS(4310), 1, anon_sym_RPAREN, - ACTIONS(4387), 1, + ACTIONS(4312), 1, anon_sym_COMMA, - STATE(2153), 1, + STATE(2123), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64272] = 4, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(5069), 1, + [63868] = 4, + ACTIONS(5004), 1, sym_identifier, - STATE(2368), 1, - sym_type_arguments, + ACTIONS(5006), 1, + anon_sym_ref, + ACTIONS(5008), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64286] = 3, - ACTIONS(4121), 1, + [63882] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, + ACTIONS(5010), 1, + anon_sym_SEMI, + ACTIONS(5012), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5081), 2, - anon_sym_COMMA, - anon_sym_GT, - [64298] = 4, - ACTIONS(4131), 1, + [63896] = 4, + ACTIONS(4132), 1, anon_sym_LBRACE, - ACTIONS(5083), 1, + ACTIONS(5014), 1, anon_sym_SEMI, - STATE(973), 1, + STATE(899), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64312] = 4, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(5085), 1, - anon_sym_SEMI, - STATE(2428), 1, - sym_where_clause, + [63910] = 4, + ACTIONS(2397), 1, + anon_sym_RPAREN, + ACTIONS(5016), 1, + anon_sym_COMMA, + STATE(1880), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64326] = 2, + [63924] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5087), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5018), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [64336] = 4, - ACTIONS(4463), 1, + [63934] = 4, + ACTIONS(4515), 1, anon_sym_COMMA, - ACTIONS(4465), 1, + ACTIONS(4517), 1, anon_sym_GT, - STATE(2158), 1, + STATE(2115), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64350] = 4, - ACTIONS(5089), 1, - anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_GT, - STATE(2118), 1, - aux_sym_for_lifetimes_repeat1, + [63948] = 3, + ACTIONS(5022), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64364] = 4, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - ACTIONS(5094), 1, - anon_sym_GT, - STATE(2197), 1, - sym_lifetime, + ACTIONS(5020), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63960] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_SEMI, + STATE(2578), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64378] = 4, - ACTIONS(4571), 1, - anon_sym_COMMA, - ACTIONS(5096), 1, - anon_sym_PIPE, - STATE(2062), 1, - aux_sym_closure_parameters_repeat1, + [63974] = 3, + ACTIONS(5028), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64392] = 4, - ACTIONS(2550), 1, + ACTIONS(5026), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63986] = 4, + ACTIONS(2556), 1, anon_sym_RPAREN, - ACTIONS(5098), 1, + ACTIONS(5030), 1, anon_sym_COMMA, - STATE(2012), 1, + STATE(1966), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64406] = 4, - ACTIONS(3900), 1, - anon_sym_GT, - ACTIONS(5100), 1, + [64000] = 4, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(5032), 1, anon_sym_COMMA, - STATE(2050), 1, - aux_sym_type_parameters_repeat1, + STATE(2102), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64420] = 4, - ACTIONS(3920), 1, + [64014] = 4, + ACTIONS(3810), 1, anon_sym_GT, - ACTIONS(5102), 1, + ACTIONS(5034), 1, anon_sym_COMMA, - STATE(2050), 1, + STATE(1982), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64434] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5104), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [64444] = 4, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(5106), 1, - anon_sym_COMMA, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64458] = 4, - ACTIONS(3888), 1, + [64028] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(5108), 1, + ACTIONS(5036), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(1144), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64472] = 4, - ACTIONS(5110), 1, - anon_sym_COMMA, - ACTIONS(5113), 1, + [64042] = 4, + ACTIONS(3908), 1, anon_sym_GT, - STATE(2127), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5038), 1, + anon_sym_COMMA, + STATE(1982), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64486] = 4, - ACTIONS(5115), 1, - anon_sym_RBRACE, - ACTIONS(5117), 1, + [64056] = 4, + ACTIONS(2405), 1, + anon_sym_RBRACK, + ACTIONS(5040), 1, anon_sym_COMMA, - STATE(2128), 1, - aux_sym_use_list_repeat1, + STATE(1880), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64500] = 4, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(5120), 1, - anon_sym_SEMI, - ACTIONS(5122), 1, - anon_sym_EQ, + [64070] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64514] = 4, - ACTIONS(5124), 1, - anon_sym_RBRACE, - ACTIONS(5126), 1, + ACTIONS(4510), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(2107), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64528] = 4, - ACTIONS(3830), 1, + [64080] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, + ACTIONS(5042), 1, anon_sym_SEMI, - STATE(352), 1, + STATE(881), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64542] = 4, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_SEMI, - STATE(2463), 1, - sym_where_clause, + [64094] = 4, + ACTIONS(5044), 1, + anon_sym_RBRACE, + ACTIONS(5046), 1, + anon_sym_COMMA, + STATE(2102), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64556] = 4, - ACTIONS(3898), 1, + [64108] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5049), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5106), 1, anon_sym_COMMA, - STATE(2054), 1, - aux_sym_enum_variant_list_repeat2, + [64118] = 4, + ACTIONS(3379), 1, + anon_sym_RBRACE, + ACTIONS(5051), 1, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64570] = 2, + [64132] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5132), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64580] = 3, - ACTIONS(2496), 1, - anon_sym_PLUS, + ACTIONS(5053), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [64142] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_SEMI, + STATE(390), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5113), 2, - anon_sym_COMMA, - anon_sym_GT, - [64592] = 4, - ACTIONS(3888), 1, + [64156] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5057), 1, anon_sym_SEMI, - STATE(935), 1, + STATE(1103), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64606] = 4, - ACTIONS(3439), 1, - anon_sym_RBRACE, - ACTIONS(5136), 1, - anon_sym_COMMA, - STATE(2128), 1, - aux_sym_use_list_repeat1, + [64170] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, + anon_sym_SEMI, + STATE(396), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64620] = 3, - ACTIONS(4121), 1, + [64184] = 3, + ACTIONS(4093), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5113), 2, + ACTIONS(5061), 2, anon_sym_COMMA, anon_sym_GT, - [64632] = 4, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(5138), 1, - sym_identifier, - STATE(2368), 1, - sym_type_arguments, + [64196] = 4, + ACTIONS(4249), 1, + anon_sym_COMMA, + ACTIONS(4251), 1, + anon_sym_GT, + STATE(1912), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64646] = 4, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(5140), 1, - anon_sym_SEMI, - STATE(2459), 1, - sym_where_clause, + [64210] = 4, + ACTIONS(5063), 1, + anon_sym_for, + ACTIONS(5065), 1, + anon_sym_loop, + ACTIONS(5067), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64660] = 3, - ACTIONS(4121), 1, + [64224] = 4, + ACTIONS(4093), 1, anon_sym_PLUS, + ACTIONS(5069), 1, + anon_sym_SEMI, + ACTIONS(5071), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5142), 2, + [64238] = 4, + ACTIONS(5073), 1, anon_sym_COMMA, + ACTIONS(5076), 1, anon_sym_GT, - [64672] = 4, - ACTIONS(3491), 1, - anon_sym_LT2, - ACTIONS(5138), 1, - sym_identifier, - STATE(2523), 1, - sym_type_arguments, + STATE(2113), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64686] = 4, - ACTIONS(5144), 1, + [64252] = 4, + ACTIONS(5078), 1, anon_sym_RBRACE, - ACTIONS(5146), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - STATE(2143), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64700] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, + STATE(2083), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5149), 2, - anon_sym_RBRACE, + [64266] = 4, + ACTIONS(890), 1, + anon_sym_GT, + ACTIONS(5082), 1, anon_sym_COMMA, - [64712] = 4, - ACTIONS(3874), 1, - anon_sym_where, - ACTIONS(5151), 1, - anon_sym_SEMI, - STATE(2410), 1, - sym_where_clause, + STATE(2121), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64726] = 3, - ACTIONS(5155), 1, - anon_sym_COLON, + [64280] = 4, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(5084), 1, + anon_sym_SEMI, + ACTIONS(5086), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5153), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64738] = 4, - ACTIONS(4183), 1, - anon_sym_COMMA, - ACTIONS(4185), 1, + [64294] = 4, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + ACTIONS(5088), 1, anon_sym_GT, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, + STATE(2160), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64752] = 3, - ACTIONS(5157), 1, - sym_identifier, + [64308] = 4, + ACTIONS(4132), 1, + anon_sym_LBRACE, + ACTIONS(5090), 1, + anon_sym_SEMI, + STATE(1050), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5159), 2, - anon_sym_default, - anon_sym_union, - [64764] = 4, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(5161), 1, + [64322] = 4, + ACTIONS(796), 1, + anon_sym_RPAREN, + ACTIONS(4283), 1, anon_sym_COMMA, - STATE(2054), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2059), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64778] = 4, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(5161), 1, - anon_sym_COMMA, - STATE(2049), 1, - aux_sym_enum_variant_list_repeat2, + [64336] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(5092), 1, + anon_sym_SEMI, + STATE(404), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64792] = 4, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5163), 1, - anon_sym_EQ_GT, - ACTIONS(5165), 1, - anon_sym_if, + [64350] = 4, + ACTIONS(5094), 1, + anon_sym_COMMA, + ACTIONS(5097), 1, + anon_sym_GT, + STATE(2121), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64806] = 4, - ACTIONS(4121), 1, + [64364] = 3, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5167), 1, - anon_sym_as, - ACTIONS(5169), 1, - anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64820] = 4, + ACTIONS(4502), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64376] = 4, ACTIONS(796), 1, anon_sym_RPAREN, - ACTIONS(4419), 1, + ACTIONS(4283), 1, anon_sym_COMMA, - STATE(2162), 1, + STATE(2124), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64834] = 4, - ACTIONS(4137), 1, - anon_sym_LBRACE, - ACTIONS(5171), 1, - anon_sym_SEMI, - STATE(314), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64848] = 4, - ACTIONS(796), 1, + [64390] = 4, + ACTIONS(4502), 1, anon_sym_RPAREN, - ACTIONS(4419), 1, + ACTIONS(5099), 1, anon_sym_COMMA, - STATE(2038), 1, + STATE(2124), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64862] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5173), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [64872] = 4, - ACTIONS(4131), 1, + [64404] = 4, + ACTIONS(3816), 1, anon_sym_LBRACE, - ACTIONS(5175), 1, + ACTIONS(5102), 1, anon_sym_SEMI, - STATE(903), 1, - sym_block, + STATE(845), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64886] = 4, - ACTIONS(902), 1, - anon_sym_GT, - ACTIONS(5177), 1, - anon_sym_COMMA, - STATE(2127), 1, - aux_sym_type_arguments_repeat1, + [64418] = 3, + ACTIONS(2513), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64900] = 4, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(5179), 1, + ACTIONS(5097), 2, anon_sym_COMMA, - STATE(2162), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64914] = 4, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(5181), 1, - anon_sym_SEMI, - STATE(891), 1, - sym_declaration_list, + anon_sym_GT, + [64430] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64928] = 3, - ACTIONS(3237), 1, + ACTIONS(5097), 2, + anon_sym_COMMA, + anon_sym_GT, + [64442] = 3, + ACTIONS(3181), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4334), 2, + ACTIONS(4295), 2, anon_sym_RPAREN, anon_sym_COMMA, - [64940] = 4, - ACTIONS(4475), 1, + [64454] = 4, + ACTIONS(3868), 1, + anon_sym_RBRACE, + ACTIONS(5104), 1, + anon_sym_COMMA, + STATE(2061), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64468] = 4, + ACTIONS(794), 1, anon_sym_RPAREN, - ACTIONS(5183), 1, + ACTIONS(5106), 1, anon_sym_COMMA, - STATE(2162), 1, + STATE(2124), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64954] = 4, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(5186), 1, - anon_sym_SEMI, - STATE(882), 1, - sym_declaration_list, + [64482] = 4, + ACTIONS(3868), 1, + anon_sym_RBRACE, + ACTIONS(5104), 1, + anon_sym_COMMA, + STATE(2102), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64968] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2585), 1, - sym_block, + [64496] = 3, + ACTIONS(4186), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64979] = 3, - ACTIONS(2592), 1, - anon_sym_LPAREN, - STATE(823), 1, - sym_parameters, + ACTIONS(3465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [64508] = 4, + ACTIONS(3850), 1, + anon_sym_where, + ACTIONS(5108), 1, + anon_sym_SEMI, + STATE(2423), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64990] = 3, - ACTIONS(3495), 1, - anon_sym_LPAREN, - STATE(1415), 1, - sym_parameters, + [64522] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5110), 2, + anon_sym_COMMA, + anon_sym_GT, + [64534] = 4, + ACTIONS(5112), 1, + anon_sym_RBRACE, + ACTIONS(5114), 1, + anon_sym_COMMA, + STATE(2135), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65001] = 3, - ACTIONS(5188), 1, + [64548] = 4, + ACTIONS(3858), 1, + anon_sym_LBRACE, + ACTIONS(5117), 1, anon_sym_SEMI, - ACTIONS(5190), 1, - anon_sym_as, + STATE(335), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65012] = 2, + [64562] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5144), 2, + ACTIONS(5119), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65021] = 3, - ACTIONS(284), 1, + [64574] = 4, + ACTIONS(4091), 1, anon_sym_LBRACE, - STATE(2479), 1, + ACTIONS(5121), 1, + anon_sym_SEMI, + STATE(409), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65032] = 3, - ACTIONS(3872), 1, + [64588] = 4, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(949), 1, - sym_field_declaration_list, + ACTIONS(5123), 1, + anon_sym_SEMI, + STATE(274), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65043] = 3, - ACTIONS(3888), 1, - anon_sym_LBRACE, - STATE(948), 1, - sym_declaration_list, + [64602] = 3, + ACTIONS(5127), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65054] = 3, - ACTIONS(3888), 1, + ACTIONS(5125), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64614] = 3, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(473), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65065] = 3, - ACTIONS(5192), 1, - anon_sym_SEMI, - ACTIONS(5194), 1, - anon_sym_RBRACE, + [64625] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5129), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65076] = 3, - ACTIONS(284), 1, + [64636] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(2496), 1, - sym_block, + STATE(987), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65087] = 3, - ACTIONS(5192), 1, + [64647] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4295), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64656] = 3, + ACTIONS(5131), 1, anon_sym_SEMI, - ACTIONS(5196), 1, + ACTIONS(5133), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65098] = 2, + [64667] = 3, + ACTIONS(3461), 1, + anon_sym_BANG, + ACTIONS(5135), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5113), 2, - anon_sym_COMMA, - anon_sym_GT, - [65107] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(5198), 1, + [64678] = 3, + ACTIONS(5131), 1, anon_sym_SEMI, + ACTIONS(5137), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65118] = 3, - ACTIONS(3495), 1, - anon_sym_LPAREN, - STATE(1750), 1, - sym_parameters, + [64689] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(937), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65129] = 3, - ACTIONS(3872), 1, + [64700] = 3, + ACTIONS(4120), 1, anon_sym_LBRACE, - STATE(942), 1, - sym_field_declaration_list, + STATE(906), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65140] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2498), 1, - sym_block, + [64711] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5139), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65151] = 3, - ACTIONS(3892), 1, + [64722] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(282), 1, + STATE(400), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65162] = 3, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, - ACTIONS(5200), 1, - anon_sym_RPAREN, + [64733] = 3, + ACTIONS(3816), 1, + anon_sym_LBRACE, + STATE(833), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65173] = 3, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - anon_sym_RPAREN, + [64744] = 3, + ACTIONS(3471), 1, + anon_sym_LPAREN, + STATE(1402), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65184] = 3, - ACTIONS(3888), 1, + [64755] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(933), 1, - sym_declaration_list, + STATE(849), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65195] = 3, - ACTIONS(4103), 1, - anon_sym_COLON_COLON, - ACTIONS(5204), 1, - anon_sym_RPAREN, + [64766] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65206] = 3, - ACTIONS(4105), 1, - anon_sym_COLON_COLON, - ACTIONS(5204), 1, - anon_sym_RPAREN, + ACTIONS(5097), 2, + anon_sym_COMMA, + anon_sym_GT, + [64775] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(5141), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65217] = 3, - ACTIONS(284), 1, + [64786] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(2466), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65228] = 3, - ACTIONS(4103), 1, - anon_sym_COLON_COLON, - ACTIONS(5206), 1, - anon_sym_RPAREN, + STATE(855), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65239] = 3, - ACTIONS(4105), 1, - anon_sym_COLON_COLON, - ACTIONS(5206), 1, - anon_sym_RPAREN, + [64797] = 3, + ACTIONS(5143), 1, + sym_identifier, + ACTIONS(5145), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65250] = 3, - ACTIONS(15), 1, + [64808] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(76), 1, - sym_block, + STATE(859), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65261] = 3, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - ACTIONS(5206), 1, - anon_sym_RPAREN, + [64819] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65272] = 3, - ACTIONS(4234), 1, + ACTIONS(5076), 2, + anon_sym_COMMA, + anon_sym_GT, + [64828] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(287), 1, - sym_enum_variant_list, + STATE(860), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65283] = 2, + [64839] = 3, + ACTIONS(5147), 1, + anon_sym_SEMI, + ACTIONS(5149), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4334), 2, + [64850] = 3, + ACTIONS(4075), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [65292] = 3, - ACTIONS(4281), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_enum_variant_list, + ACTIONS(5131), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65303] = 3, - ACTIONS(3495), 1, - anon_sym_LPAREN, - STATE(1665), 1, - sym_parameters, + [64861] = 3, + ACTIONS(4085), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65314] = 3, - ACTIONS(4081), 1, + [64872] = 3, + ACTIONS(4079), 1, anon_sym_COLON_COLON, - ACTIONS(5204), 1, + ACTIONS(5151), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65325] = 2, + [64883] = 3, + ACTIONS(4045), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5092), 2, - anon_sym_COMMA, - anon_sym_GT, - [65334] = 3, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(922), 1, - sym_field_declaration_list, + [64894] = 3, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + ACTIONS(5153), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65345] = 3, - ACTIONS(3892), 1, - anon_sym_LBRACE, - STATE(277), 1, - sym_field_declaration_list, + [64905] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65356] = 3, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(917), 1, - sym_field_declaration_list, + ACTIONS(4502), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64914] = 3, + ACTIONS(4073), 1, + anon_sym_RPAREN, + ACTIONS(5131), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65367] = 3, - ACTIONS(4063), 1, - anon_sym_RPAREN, - ACTIONS(5192), 1, - anon_sym_SEMI, + [64925] = 3, + ACTIONS(2582), 1, + anon_sym_LPAREN, + STATE(823), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65378] = 3, - ACTIONS(4065), 1, - anon_sym_RPAREN, - ACTIONS(5192), 1, - anon_sym_SEMI, + [64936] = 3, + ACTIONS(3999), 1, + anon_sym_COLON, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65389] = 3, - ACTIONS(3872), 1, + [64947] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1015), 1, - sym_field_declaration_list, + STATE(2516), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65400] = 3, + [64958] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1106), 1, + STATE(2587), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65411] = 3, + [64969] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1112), 1, + STATE(2439), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65422] = 3, - ACTIONS(4281), 1, - anon_sym_LBRACE, - STATE(980), 1, - sym_enum_variant_list, + [64980] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5155), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65433] = 3, - ACTIONS(4013), 1, - anon_sym_COLON, - ACTIONS(4121), 1, - anon_sym_PLUS, + [64991] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65444] = 3, - ACTIONS(284), 1, + ACTIONS(5044), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65000] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(2558), 1, - sym_block, + STATE(384), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65455] = 3, - ACTIONS(3888), 1, + [65011] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5157), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65022] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5112), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65031] = 3, + ACTIONS(4845), 1, + sym_identifier, + ACTIONS(4849), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65042] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(874), 1, + STATE(1132), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65466] = 3, - ACTIONS(4121), 1, + [65053] = 3, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5208), 1, + ACTIONS(5159), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65477] = 2, + [65064] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5161), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4475), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65486] = 3, - ACTIONS(4059), 1, - anon_sym_RBRACE, - ACTIONS(5192), 1, - anon_sym_SEMI, + [65075] = 3, + ACTIONS(4120), 1, + anon_sym_LBRACE, + STATE(909), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65497] = 3, - ACTIONS(5192), 1, - anon_sym_SEMI, - ACTIONS(5210), 1, - anon_sym_RPAREN, + [65086] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5163), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65508] = 3, - ACTIONS(3888), 1, + [65097] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(866), 1, + STATE(1087), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65519] = 3, - ACTIONS(3888), 1, + [65108] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(865), 1, + STATE(1081), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65530] = 3, - ACTIONS(4055), 1, - anon_sym_RBRACE, - ACTIONS(5192), 1, - anon_sym_SEMI, + [65119] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5165), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65541] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2563), 1, - sym_block, + [65130] = 3, + ACTIONS(3471), 1, + anon_sym_LPAREN, + STATE(1690), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65552] = 3, - ACTIONS(5192), 1, - anon_sym_SEMI, - ACTIONS(5212), 1, - anon_sym_RPAREN, + [65141] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5167), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65563] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(988), 1, - sym_block, + [65152] = 3, + ACTIONS(4029), 1, + anon_sym_RBRACE, + ACTIONS(5131), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65574] = 3, - ACTIONS(5214), 1, - anon_sym_SEMI, - ACTIONS(5216), 1, - anon_sym_as, + [65163] = 3, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65585] = 3, - ACTIONS(5218), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACE, + [65174] = 3, + ACTIONS(4025), 1, + anon_sym_RBRACE, + ACTIONS(5131), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65596] = 3, - ACTIONS(4281), 1, + [65185] = 3, + ACTIONS(4120), 1, anon_sym_LBRACE, - STATE(856), 1, + STATE(1034), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65607] = 3, - ACTIONS(5222), 1, - anon_sym_SEMI, - ACTIONS(5224), 1, - anon_sym_as, + [65196] = 3, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(391), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65618] = 3, - ACTIONS(284), 1, + [65207] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(2445), 1, - sym_block, + STATE(268), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65629] = 3, - ACTIONS(3872), 1, + [65218] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(852), 1, + STATE(1146), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65640] = 3, - ACTIONS(4121), 1, + [65229] = 3, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5226), 1, + ACTIONS(5169), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65651] = 3, - ACTIONS(3872), 1, + [65240] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(850), 1, + STATE(925), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65662] = 3, - ACTIONS(3888), 1, + [65251] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(849), 1, + STATE(908), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65673] = 3, - ACTIONS(284), 1, + [65262] = 3, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(2443), 1, - sym_block, + STATE(389), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65684] = 3, - ACTIONS(3872), 1, - anon_sym_LBRACE, - STATE(1007), 1, - sym_field_declaration_list, + [65273] = 3, + ACTIONS(5171), 1, + anon_sym_LT, + STATE(672), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65695] = 3, - ACTIONS(5228), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, + [65284] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5173), 2, + sym_float_literal, + sym_integer_literal, + [65293] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4579), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65302] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, + STATE(2551), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65706] = 3, + [65313] = 3, ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(1012), 1, - sym_declaration_list, + STATE(451), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65717] = 3, - ACTIONS(2634), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_field_initializer_list, + [65324] = 3, + ACTIONS(4594), 1, + sym_identifier, + ACTIONS(4598), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65728] = 3, - ACTIONS(2592), 1, + [65335] = 3, + ACTIONS(3471), 1, anon_sym_LPAREN, - STATE(836), 1, + STATE(1706), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65739] = 3, + [65346] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2490), 1, + STATE(920), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65750] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5232), 2, - sym_identifier, - sym_metavariable, - [65759] = 2, + [65357] = 3, + ACTIONS(3471), 1, + anon_sym_LPAREN, + STATE(1386), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5115), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65768] = 2, + [65368] = 3, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(259), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4921), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65777] = 3, - ACTIONS(5192), 1, + [65379] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(5175), 1, anon_sym_SEMI, - ACTIONS(5234), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65788] = 3, - ACTIONS(3495), 1, - anon_sym_LPAREN, - STATE(1696), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65799] = 2, + [65390] = 3, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(1951), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5236), 2, - sym_float_literal, - sym_integer_literal, - [65808] = 3, - ACTIONS(4281), 1, + [65401] = 3, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(1038), 1, - sym_enum_variant_list, + STATE(321), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65819] = 3, - ACTIONS(284), 1, + [65412] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(2426), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65830] = 2, + STATE(456), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4939), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65839] = 3, - ACTIONS(284), 1, + [65423] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(2425), 1, - sym_block, + STATE(461), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65850] = 2, + [65434] = 3, + ACTIONS(5177), 1, + anon_sym_SEMI, + ACTIONS(5179), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4523), 2, - anon_sym_COMMA, - anon_sym_GT, - [65859] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2422), 1, - sym_block, + [65445] = 3, + ACTIONS(3531), 1, + anon_sym_BANG, + ACTIONS(3551), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65870] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2420), 1, - sym_block, + [65456] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(4291), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65881] = 3, - ACTIONS(3830), 1, + [65467] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(445), 1, - sym_declaration_list, + STATE(960), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65892] = 3, - ACTIONS(3495), 1, + [65478] = 3, + ACTIONS(3471), 1, anon_sym_LPAREN, - STATE(1705), 1, + STATE(1401), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65903] = 2, + [65489] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4886), 2, + ACTIONS(4917), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [65912] = 2, + [65498] = 3, + ACTIONS(3816), 1, + anon_sym_LBRACE, + STATE(968), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5238), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65921] = 2, + [65509] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(977), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5240), 2, - anon_sym_RPAREN, + [65520] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4884), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [65930] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(60), 1, - sym_closure_parameters, + [65529] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(5181), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65941] = 3, - ACTIONS(2592), 1, - anon_sym_LPAREN, - STATE(805), 1, - sym_parameters, + [65540] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2427), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65952] = 2, + [65551] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5242), 2, - anon_sym_const, - sym_mutable_specifier, - [65961] = 3, - ACTIONS(5244), 1, - sym_identifier, - ACTIONS(5246), 1, - sym_mutable_specifier, + [65562] = 3, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65972] = 3, - ACTIONS(284), 1, + [65573] = 3, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(1088), 1, - sym_block, + STATE(308), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65983] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5248), 1, - anon_sym_in, + [65584] = 3, + ACTIONS(3858), 1, + anon_sym_LBRACE, + STATE(472), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65994] = 3, - ACTIONS(3888), 1, + [65595] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(1105), 1, + STATE(924), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66005] = 3, - ACTIONS(5250), 1, - anon_sym_LBRACK, - ACTIONS(5252), 1, - anon_sym_BANG, + [65606] = 3, + ACTIONS(2582), 1, + anon_sym_LPAREN, + STATE(813), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66016] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(5254), 1, - anon_sym_SEMI, + [65617] = 3, + ACTIONS(5185), 1, + anon_sym_LBRACK, + ACTIONS(5187), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66027] = 3, - ACTIONS(562), 1, + [65628] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(234), 1, - sym_block, + STATE(292), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66038] = 3, - ACTIONS(4121), 1, + [65639] = 3, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5256), 1, + ACTIONS(5189), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66049] = 3, - ACTIONS(3888), 1, + [65650] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(1121), 1, + STATE(861), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66060] = 3, - ACTIONS(3888), 1, + [65661] = 3, + ACTIONS(3816), 1, anon_sym_LBRACE, - STATE(1123), 1, + STATE(867), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66071] = 3, - ACTIONS(892), 1, - anon_sym_LBRACE, - STATE(1482), 1, - sym_block, + [65672] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66082] = 3, - ACTIONS(3830), 1, + ACTIONS(5191), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65681] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5193), 2, + anon_sym_const, + sym_mutable_specifier, + [65690] = 3, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(500), 1, + STATE(406), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66093] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(61), 1, - sym_closure_parameters, + [65701] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(5195), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66104] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_block, + [65712] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66115] = 3, - ACTIONS(3830), 1, + ACTIONS(5197), 2, + sym_identifier, + sym_metavariable, + [65721] = 3, + ACTIONS(4093), 1, + anon_sym_PLUS, + ACTIONS(5199), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65732] = 3, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(497), 1, + STATE(481), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66126] = 3, - ACTIONS(5258), 1, - anon_sym_BANG, - ACTIONS(5260), 1, - anon_sym_COLON_COLON, + [65743] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66137] = 3, - ACTIONS(4361), 1, - anon_sym_COLON, - ACTIONS(4365), 1, + ACTIONS(5201), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65752] = 3, + ACTIONS(4279), 1, anon_sym_PIPE, + ACTIONS(5203), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66148] = 2, + [65763] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5262), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66157] = 3, - ACTIONS(3892), 1, + ACTIONS(5205), 2, + sym_identifier, + sym_metavariable, + [65772] = 3, + ACTIONS(4120), 1, anon_sym_LBRACE, - STATE(414), 1, - sym_field_declaration_list, + STATE(1051), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66168] = 2, + [65783] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2586), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4583), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66177] = 2, + [65794] = 3, + ACTIONS(5207), 1, + anon_sym_BANG, + ACTIONS(5209), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5264), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66186] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, - anon_sym_EQ, + [65805] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66197] = 3, - ACTIONS(4121), 1, + ACTIONS(5211), 2, + sym_identifier, + sym_metavariable, + [65814] = 3, + ACTIONS(4093), 1, anon_sym_PLUS, - ACTIONS(5268), 1, + ACTIONS(5213), 1, anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66208] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5270), 1, - anon_sym_in, + [65825] = 3, + ACTIONS(3471), 1, + anon_sym_LPAREN, + STATE(1725), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66219] = 3, - ACTIONS(5272), 1, - anon_sym_LT, - STATE(738), 1, - sym_type_parameters, + [65836] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66230] = 3, - ACTIONS(4234), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_enum_variant_list, + ACTIONS(4785), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [65845] = 3, + ACTIONS(5131), 1, + anon_sym_SEMI, + ACTIONS(5215), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66241] = 3, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(2197), 1, - sym_lifetime, + [65856] = 3, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66252] = 3, - ACTIONS(2600), 1, - anon_sym_LT2, - STATE(981), 1, - sym_type_arguments, + [65867] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66263] = 2, + ACTIONS(2463), 2, + anon_sym_COMMA, + anon_sym_GT, + [65876] = 3, + ACTIONS(5131), 1, + anon_sym_SEMI, + ACTIONS(5217), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5274), 2, - sym_identifier, - sym_metavariable, - [66272] = 3, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_BANG, + [65887] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5219), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66283] = 3, - ACTIONS(3495), 1, - anon_sym_LPAREN, - STATE(1691), 1, - sym_parameters, + [65898] = 3, + ACTIONS(3816), 1, + anon_sym_LBRACE, + STATE(970), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66294] = 3, - ACTIONS(3830), 1, + [65909] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(404), 1, - sym_declaration_list, + STATE(2575), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66305] = 3, - ACTIONS(3888), 1, + [65920] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1159), 1, - sym_declaration_list, + STATE(2572), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66316] = 3, - ACTIONS(3965), 1, - anon_sym_COLON, - STATE(2124), 1, - sym_trait_bounds, + [65931] = 3, + ACTIONS(2582), 1, + anon_sym_LPAREN, + STATE(797), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66327] = 3, - ACTIONS(2698), 1, + [65942] = 3, + ACTIONS(2758), 1, anon_sym_COLON_COLON, - ACTIONS(3999), 1, + ACTIONS(3964), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66338] = 3, - ACTIONS(3876), 1, - anon_sym_LT, - STATE(669), 1, - sym_type_parameters, + [65953] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2412), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66349] = 2, + [65964] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5280), 2, + ACTIONS(5221), 2, anon_sym_const, sym_mutable_specifier, - [66358] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(488), 1, - sym_declaration_list, + [65973] = 3, + ACTIONS(2343), 1, + anon_sym_SQUOTE, + STATE(2160), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66369] = 3, - ACTIONS(4365), 1, + [65984] = 3, + ACTIONS(4279), 1, anon_sym_PIPE, - ACTIONS(5282), 1, - anon_sym_in, + ACTIONS(5223), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66380] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_declaration_list, + [65995] = 3, + ACTIONS(5225), 1, + sym_identifier, + ACTIONS(5227), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66391] = 3, - ACTIONS(2353), 1, - anon_sym_SQUOTE, - STATE(2078), 1, - sym_lifetime, + [66006] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66402] = 2, + [66017] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2411), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5284), 2, - sym_identifier, - sym_metavariable, - [66411] = 3, - ACTIONS(3892), 1, + [66028] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(487), 1, - sym_field_declaration_list, + STATE(2570), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66422] = 3, - ACTIONS(2894), 1, - anon_sym_COLON, - ACTIONS(4121), 1, - anon_sym_PLUS, + [66039] = 3, + ACTIONS(574), 1, + anon_sym_LBRACE, + STATE(226), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66433] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(411), 1, - sym_declaration_list, + [66050] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66444] = 3, - ACTIONS(562), 1, + ACTIONS(4551), 2, + anon_sym_COMMA, + anon_sym_GT, + [66059] = 3, + ACTIONS(574), 1, anon_sym_LBRACE, - STATE(237), 1, + STATE(244), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66455] = 3, - ACTIONS(4234), 1, - anon_sym_LBRACE, - STATE(322), 1, - sym_enum_variant_list, + [66070] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66466] = 3, - ACTIONS(562), 1, + ACTIONS(5229), 2, + anon_sym_const, + sym_mutable_specifier, + [66079] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(248), 1, + STATE(1122), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66477] = 3, - ACTIONS(3495), 1, - anon_sym_LPAREN, - STATE(1677), 1, - sym_parameters, + [66090] = 3, + ACTIONS(574), 1, + anon_sym_LBRACE, + STATE(246), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66488] = 2, + [66101] = 3, + ACTIONS(574), 1, + anon_sym_LBRACE, + STATE(243), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5286), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66497] = 3, - ACTIONS(562), 1, + [66112] = 3, + ACTIONS(880), 1, anon_sym_LBRACE, - STATE(235), 1, + STATE(1458), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66508] = 3, - ACTIONS(2938), 1, - anon_sym_COLON, - ACTIONS(4121), 1, - anon_sym_PLUS, + [66123] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66519] = 3, - ACTIONS(2942), 1, + ACTIONS(5231), 2, + sym_identifier, + sym_metavariable, + [66132] = 3, + ACTIONS(3914), 1, anon_sym_COLON, - ACTIONS(4121), 1, - anon_sym_PLUS, + STATE(1930), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66530] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(5288), 1, - anon_sym_SEMI, + [66143] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(69), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66541] = 3, - ACTIONS(5290), 1, - anon_sym_LPAREN, - ACTIONS(5292), 1, + [66154] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, + STATE(1065), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66552] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(5294), 1, - anon_sym_SEMI, + [66165] = 3, + ACTIONS(4085), 1, + anon_sym_COLON_COLON, + ACTIONS(5233), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66563] = 3, - ACTIONS(3892), 1, - anon_sym_LBRACE, - STATE(470), 1, - sym_field_declaration_list, + [66176] = 3, + ACTIONS(4079), 1, + anon_sym_COLON_COLON, + ACTIONS(5233), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66574] = 3, - ACTIONS(5192), 1, - anon_sym_SEMI, - ACTIONS(5296), 1, - anon_sym_RBRACE, + [66187] = 3, + ACTIONS(3471), 1, + anon_sym_LPAREN, + STATE(1677), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66585] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, - anon_sym_EQ, + [66198] = 3, + ACTIONS(3471), 1, + anon_sym_LPAREN, + STATE(1686), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66596] = 3, - ACTIONS(4097), 1, - anon_sym_RBRACE, - ACTIONS(5192), 1, - anon_sym_SEMI, + [66209] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5235), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66607] = 3, - ACTIONS(5300), 1, + [66220] = 3, + ACTIONS(3471), 1, anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACE, + STATE(1731), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66618] = 3, - ACTIONS(3892), 1, - anon_sym_LBRACE, - STATE(359), 1, - sym_field_declaration_list, + [66231] = 3, + ACTIONS(5237), 1, + anon_sym_SEMI, + ACTIONS(5239), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66629] = 2, + [66242] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(94), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4206), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66638] = 3, - ACTIONS(2966), 1, - anon_sym_COLON, - ACTIONS(4121), 1, - anon_sym_PLUS, + [66253] = 3, + ACTIONS(3852), 1, + anon_sym_LT, + STATE(706), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66649] = 2, + [66264] = 3, + ACTIONS(5241), 1, + anon_sym_LPAREN, + ACTIONS(5243), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4645), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66658] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(379), 1, - sym_declaration_list, + [66275] = 3, + ACTIONS(2984), 1, + anon_sym_COLON, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66669] = 2, + [66286] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(66), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5304), 2, - anon_sym_const, - sym_mutable_specifier, - [66678] = 3, - ACTIONS(4053), 1, - anon_sym_RPAREN, - ACTIONS(5192), 1, - anon_sym_SEMI, + [66297] = 3, + ACTIONS(5245), 1, + anon_sym_LPAREN, + ACTIONS(5247), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66689] = 3, - ACTIONS(4121), 1, - anon_sym_PLUS, - ACTIONS(5306), 1, - anon_sym_SEMI, + [66308] = 3, + ACTIONS(574), 1, + anon_sym_LBRACE, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66700] = 3, - ACTIONS(3495), 1, - anon_sym_LPAREN, - STATE(1395), 1, - sym_parameters, + [66319] = 3, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66711] = 3, - ACTIONS(562), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_block, + [66330] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66722] = 3, - ACTIONS(4049), 1, + ACTIONS(5249), 2, anon_sym_RBRACE, - ACTIONS(5192), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [66339] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66733] = 3, - ACTIONS(4107), 1, + ACTIONS(4469), 2, anon_sym_RPAREN, - ACTIONS(5192), 1, - anon_sym_SEMI, + anon_sym_COMMA, + [66348] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66744] = 3, - ACTIONS(4903), 1, - sym_identifier, - ACTIONS(4907), 1, - sym_mutable_specifier, + ACTIONS(4166), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66357] = 3, + ACTIONS(2612), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66755] = 3, - ACTIONS(4234), 1, + [66368] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(446), 1, - sym_enum_variant_list, + STATE(2394), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66766] = 3, - ACTIONS(5192), 1, - anon_sym_SEMI, - ACTIONS(5308), 1, + [66379] = 3, + ACTIONS(4045), 1, + anon_sym_COLON_COLON, + ACTIONS(5233), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66777] = 3, - ACTIONS(3830), 1, + [66390] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(452), 1, - sym_declaration_list, + STATE(2399), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66788] = 3, - ACTIONS(15), 1, + [66401] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(84), 1, - sym_block, + STATE(417), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66799] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5310), 1, - anon_sym_EQ, + [66412] = 3, + ACTIONS(3614), 1, + anon_sym_COLON_COLON, + ACTIONS(5251), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66810] = 2, + [66423] = 3, + ACTIONS(3600), 1, + anon_sym_COLON_COLON, + ACTIONS(5251), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2435), 2, - anon_sym_COMMA, - anon_sym_GT, - [66819] = 3, - ACTIONS(3830), 1, + [66434] = 3, + ACTIONS(3858), 1, anon_sym_LBRACE, - STATE(327), 1, + STATE(297), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66830] = 3, + [66445] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2595), 1, + STATE(2398), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66841] = 2, + [66456] = 3, + ACTIONS(5253), 1, + sym_identifier, + ACTIONS(5255), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5312), 2, - sym_identifier, - sym_metavariable, - [66850] = 3, - ACTIONS(5192), 1, + [66467] = 3, + ACTIONS(2590), 1, + anon_sym_LT2, + STATE(1141), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66478] = 3, + ACTIONS(5131), 1, anon_sym_SEMI, - ACTIONS(5314), 1, + ACTIONS(5257), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66861] = 2, + [66489] = 3, + ACTIONS(5131), 1, + anon_sym_SEMI, + ACTIONS(5259), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5316), 2, - sym_identifier, - sym_metavariable, - [66870] = 2, + [66500] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1075), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4780), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66879] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5318), 1, - anon_sym_in, + [66511] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1038), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66890] = 3, - ACTIONS(5320), 1, - sym_identifier, - ACTIONS(5322), 1, - sym_mutable_specifier, + [66522] = 3, + ACTIONS(5131), 1, + anon_sym_SEMI, + ACTIONS(5261), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66901] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5324), 1, - anon_sym_EQ, + [66533] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66912] = 3, - ACTIONS(3630), 1, + ACTIONS(5263), 2, + sym_identifier, + sym_metavariable, + [66542] = 3, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, - anon_sym_BANG, + ACTIONS(5265), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66923] = 3, - ACTIONS(3638), 1, - anon_sym_COLON_COLON, - ACTIONS(5326), 1, - anon_sym_BANG, + [66553] = 3, + ACTIONS(5267), 1, + anon_sym_LPAREN, + ACTIONS(5269), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66934] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5328), 1, - anon_sym_in, + [66564] = 3, + ACTIONS(5131), 1, + anon_sym_SEMI, + ACTIONS(5271), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66945] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5330), 1, - anon_sym_EQ, + [66575] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(72), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66956] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5332), 1, - anon_sym_EQ, + [66586] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2396), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66967] = 3, - ACTIONS(3892), 1, - anon_sym_LBRACE, - STATE(273), 1, - sym_field_declaration_list, + [66597] = 3, + ACTIONS(2834), 1, + anon_sym_COLON, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66978] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5334), 1, - anon_sym_in, + [66608] = 3, + ACTIONS(4051), 1, + anon_sym_RPAREN, + ACTIONS(5131), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66989] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5336), 1, - anon_sym_EQ, + [66619] = 3, + ACTIONS(5273), 1, + anon_sym_LPAREN, + ACTIONS(5275), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67000] = 3, - ACTIONS(3485), 1, + [66630] = 3, + ACTIONS(5277), 1, + anon_sym_LBRACK, + ACTIONS(5279), 1, anon_sym_BANG, - ACTIONS(5338), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67011] = 3, - ACTIONS(5340), 1, + [66641] = 3, + ACTIONS(4059), 1, + anon_sym_RBRACE, + ACTIONS(5131), 1, anon_sym_SEMI, - ACTIONS(5342), 1, - anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67022] = 3, - ACTIONS(4365), 1, + [66652] = 3, + ACTIONS(4279), 1, anon_sym_PIPE, - ACTIONS(5344), 1, + ACTIONS(5281), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67033] = 3, - ACTIONS(5041), 1, - sym_identifier, - ACTIONS(5045), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67044] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(149), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67055] = 3, - ACTIONS(5346), 1, - sym_identifier, - ACTIONS(5348), 1, - sym_mutable_specifier, + [66663] = 3, + ACTIONS(4279), 1, + anon_sym_PIPE, + ACTIONS(5283), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67066] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(289), 1, - sym_declaration_list, + [66674] = 3, + ACTIONS(2882), 1, + anon_sym_COLON, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67077] = 3, - ACTIONS(3892), 1, + [66685] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(306), 1, - sym_field_declaration_list, + STATE(2590), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67088] = 2, + [66696] = 3, + ACTIONS(2890), 1, + anon_sym_COLON, + ACTIONS(4093), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5350), 2, - sym_identifier, - sym_metavariable, - [67097] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2480), 1, - sym_block, + [66707] = 3, + ACTIONS(4071), 1, + anon_sym_RPAREN, + ACTIONS(5131), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67108] = 3, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, + [66718] = 3, + ACTIONS(4083), 1, + anon_sym_RBRACE, + ACTIONS(5131), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67119] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, - ACTIONS(5352), 1, - anon_sym_EQ, + [66729] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67130] = 3, - ACTIONS(3495), 1, - anon_sym_LPAREN, - STATE(1410), 1, - sym_parameters, + ACTIONS(5285), 2, + sym_identifier, + sym_metavariable, + [66738] = 3, + ACTIONS(5287), 1, + anon_sym_SEMI, + ACTIONS(5289), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67141] = 3, - ACTIONS(3830), 1, + [66749] = 3, + ACTIONS(3888), 1, anon_sym_LBRACE, - STATE(416), 1, - sym_declaration_list, + STATE(430), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67152] = 2, - ACTIONS(2740), 1, - anon_sym_COLON_COLON, + [66760] = 3, + ACTIONS(3888), 1, + anon_sym_LBRACE, + STATE(424), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67160] = 2, - ACTIONS(5354), 1, - anon_sym_fn, + [66771] = 2, + ACTIONS(5261), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67168] = 2, - ACTIONS(5356), 1, + [66779] = 2, + ACTIONS(5291), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67176] = 2, - ACTIONS(5358), 1, - anon_sym_COLON, + [66787] = 2, + ACTIONS(5293), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67184] = 2, - ACTIONS(5360), 1, + [66795] = 2, + ACTIONS(5295), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67192] = 2, - ACTIONS(5362), 1, - anon_sym_COLON, + [66803] = 2, + ACTIONS(4590), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67200] = 2, - ACTIONS(5069), 1, + [66811] = 2, + ACTIONS(5297), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67208] = 2, - ACTIONS(5364), 1, + [66819] = 2, + ACTIONS(5299), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67216] = 2, - ACTIONS(5366), 1, + [66827] = 2, + ACTIONS(5301), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67224] = 2, - ACTIONS(5368), 1, - anon_sym_RBRACK, + [66835] = 2, + ACTIONS(4586), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67232] = 2, - ACTIONS(5370), 1, + [66843] = 2, + ACTIONS(5303), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67240] = 2, - ACTIONS(4995), 1, + [66851] = 2, + ACTIONS(5305), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67248] = 2, - ACTIONS(5372), 1, + [66859] = 2, + ACTIONS(5307), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67256] = 2, - ACTIONS(4960), 1, - anon_sym_RPAREN, + [66867] = 2, + ACTIONS(5309), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67264] = 2, - ACTIONS(5374), 1, + [66875] = 2, + ACTIONS(5311), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67272] = 2, - ACTIONS(5376), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67280] = 2, - ACTIONS(5378), 1, + [66883] = 2, + ACTIONS(5313), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67288] = 2, - ACTIONS(5380), 1, - anon_sym_RPAREN, + [66891] = 2, + ACTIONS(4604), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67296] = 2, - ACTIONS(5382), 1, + [66899] = 2, + ACTIONS(5315), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67304] = 2, - ACTIONS(5384), 1, - anon_sym_RBRACE, + [66907] = 2, + ACTIONS(5317), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67312] = 2, - ACTIONS(4625), 1, + [66915] = 2, + ACTIONS(4612), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67320] = 2, - ACTIONS(5386), 1, + [66923] = 2, + ACTIONS(5319), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67328] = 2, - ACTIONS(5388), 1, - anon_sym_RBRACE, + [66931] = 2, + ACTIONS(5321), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67336] = 2, - ACTIONS(5390), 1, + [66939] = 2, + ACTIONS(4113), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67344] = 2, - ACTIONS(5392), 1, + [66947] = 2, + ACTIONS(5323), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67352] = 2, - ACTIONS(5394), 1, - anon_sym_LT, + [66955] = 2, + ACTIONS(4624), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67360] = 2, - ACTIONS(5396), 1, - anon_sym_COLON, + [66963] = 2, + ACTIONS(5325), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67368] = 2, - ACTIONS(4482), 1, - sym_identifier, + [66971] = 2, + ACTIONS(5327), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67376] = 2, - ACTIONS(5398), 1, + [66979] = 2, + ACTIONS(5329), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67384] = 2, - ACTIONS(5400), 1, + [66987] = 2, + ACTIONS(5331), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67392] = 2, - ACTIONS(5402), 1, + [66995] = 2, + ACTIONS(5333), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67400] = 2, - ACTIONS(5404), 1, + [67003] = 2, + ACTIONS(5335), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67408] = 2, - ACTIONS(5406), 1, + [67011] = 2, + ACTIONS(5337), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67416] = 2, - ACTIONS(5408), 1, - anon_sym_RBRACK, + [67019] = 2, + ACTIONS(5339), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67424] = 2, - ACTIONS(5410), 1, - anon_sym_RBRACK, + [67027] = 2, + ACTIONS(5341), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67432] = 2, - ACTIONS(5412), 1, - anon_sym_COLON, + [67035] = 2, + ACTIONS(5343), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67440] = 2, - ACTIONS(5414), 1, - sym_identifier, + [67043] = 2, + ACTIONS(5345), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67448] = 2, - ACTIONS(3249), 1, + [67051] = 2, + ACTIONS(3217), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67456] = 2, - ACTIONS(4637), 1, - sym_identifier, + [67059] = 2, + ACTIONS(5347), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67464] = 2, - ACTIONS(3588), 1, + [67067] = 2, + ACTIONS(3568), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67472] = 2, - ACTIONS(5416), 1, - sym_identifier, + [67075] = 2, + ACTIONS(5349), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67480] = 2, - ACTIONS(5418), 1, - anon_sym_RBRACK, + [67083] = 2, + ACTIONS(5351), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67488] = 2, - ACTIONS(5420), 1, - anon_sym_SEMI, + [67091] = 2, + ACTIONS(520), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67496] = 2, - ACTIONS(5422), 1, - anon_sym_SEMI, + [67099] = 2, + ACTIONS(5353), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67504] = 2, - ACTIONS(5424), 1, - anon_sym_RBRACK, + [67107] = 2, + ACTIONS(5355), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67512] = 2, - ACTIONS(5426), 1, + [67115] = 2, + ACTIONS(4690), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67520] = 2, - ACTIONS(5428), 1, + [67123] = 2, + ACTIONS(5357), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67528] = 2, - ACTIONS(5430), 1, - sym_identifier, + [67131] = 2, + ACTIONS(4441), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67536] = 2, - ACTIONS(3237), 1, + [67139] = 2, + ACTIONS(3181), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67544] = 2, - ACTIONS(5432), 1, + [67147] = 2, + ACTIONS(5359), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67552] = 2, - ACTIONS(5434), 1, - anon_sym_RBRACK, + [67155] = 2, + ACTIONS(5361), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67560] = 2, - ACTIONS(5436), 1, - sym_identifier, + [67163] = 2, + ACTIONS(4449), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67568] = 2, - ACTIONS(5438), 1, - anon_sym_SEMI, + [67171] = 2, + ACTIONS(5363), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67576] = 2, - ACTIONS(5440), 1, - anon_sym_SEMI, + [67179] = 2, + ACTIONS(5365), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67584] = 2, - ACTIONS(5442), 1, + [67187] = 2, + ACTIONS(5367), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67592] = 2, - ACTIONS(5444), 1, + [67195] = 2, + ACTIONS(5369), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67600] = 2, - ACTIONS(5446), 1, - sym_identifier, + [67203] = 2, + ACTIONS(5371), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67608] = 2, - ACTIONS(5448), 1, - anon_sym_SEMI, + [67211] = 2, + ACTIONS(5373), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67616] = 2, - ACTIONS(5450), 1, + [67219] = 2, + ACTIONS(5375), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67624] = 2, - ACTIONS(2451), 1, - anon_sym_EQ_GT, + [67227] = 2, + ACTIONS(5377), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67632] = 2, - ACTIONS(5452), 1, - anon_sym_SEMI, + [67235] = 2, + ACTIONS(4827), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67640] = 2, - ACTIONS(5454), 1, + [67243] = 2, + ACTIONS(5379), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67648] = 2, - ACTIONS(5456), 1, + [67251] = 2, + ACTIONS(5381), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67656] = 2, - ACTIONS(5458), 1, - anon_sym_COLON_COLON, + [67259] = 2, + ACTIONS(5383), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67664] = 2, - ACTIONS(5460), 1, + [67267] = 2, + ACTIONS(5385), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67672] = 2, - ACTIONS(5462), 1, + [67275] = 2, + ACTIONS(5387), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67680] = 2, - ACTIONS(5464), 1, + [67283] = 2, + ACTIONS(5389), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67688] = 2, - ACTIONS(5466), 1, + [67291] = 2, + ACTIONS(5391), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67696] = 2, - ACTIONS(5468), 1, + [67299] = 2, + ACTIONS(5393), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67704] = 2, - ACTIONS(5470), 1, + [67307] = 2, + ACTIONS(5395), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67712] = 2, - ACTIONS(5472), 1, + [67315] = 2, + ACTIONS(5397), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67720] = 2, - ACTIONS(5474), 1, - anon_sym_COLON, + [67323] = 2, + ACTIONS(5399), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67728] = 2, - ACTIONS(5476), 1, + [67331] = 2, + ACTIONS(5401), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67736] = 2, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, + [67339] = 2, + ACTIONS(5403), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67744] = 2, - ACTIONS(5192), 1, - anon_sym_SEMI, + [67347] = 2, + ACTIONS(5405), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67752] = 2, - ACTIONS(5478), 1, - anon_sym_SEMI, + [67355] = 2, + ACTIONS(3551), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67760] = 2, - ACTIONS(4210), 1, - anon_sym_COLON_COLON, + [67363] = 2, + ACTIONS(5407), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67768] = 2, - ACTIONS(5480), 1, + [67371] = 2, + ACTIONS(5409), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67776] = 2, - ACTIONS(2698), 1, + [67379] = 2, + ACTIONS(2758), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67784] = 2, - ACTIONS(4797), 1, - anon_sym_RBRACE, + [67387] = 2, + ACTIONS(5411), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67792] = 2, - ACTIONS(5260), 1, + [67395] = 2, + ACTIONS(5209), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67800] = 2, - ACTIONS(5482), 1, - anon_sym_SEMI, + [67403] = 2, + ACTIONS(5135), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67808] = 2, - ACTIONS(5484), 1, + [67411] = 2, + ACTIONS(5413), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67816] = 2, - ACTIONS(5486), 1, - anon_sym_RPAREN, + [67419] = 2, + ACTIONS(5415), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67824] = 2, - ACTIONS(5488), 1, + [67427] = 2, + ACTIONS(5417), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67832] = 2, - ACTIONS(2496), 1, - anon_sym_PLUS, + [67435] = 2, + ACTIONS(5419), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67840] = 2, - ACTIONS(5490), 1, - anon_sym_SEMI, + [67443] = 2, + ACTIONS(5421), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67848] = 2, - ACTIONS(5492), 1, + [67451] = 2, + ACTIONS(5423), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67856] = 2, - ACTIONS(5494), 1, - sym_identifier, + [67459] = 2, + ACTIONS(5137), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67864] = 2, - ACTIONS(5496), 1, - anon_sym_LBRACK, + [67467] = 2, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67872] = 2, - ACTIONS(5498), 1, - anon_sym_RPAREN, + [67475] = 2, + ACTIONS(2513), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67880] = 2, - ACTIONS(5500), 1, - anon_sym_SEMI, + [67483] = 2, + ACTIONS(5425), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67888] = 2, - ACTIONS(5502), 1, + [67491] = 2, + ACTIONS(5427), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67896] = 2, - ACTIONS(5504), 1, + [67499] = 2, + ACTIONS(5429), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67904] = 2, - ACTIONS(5506), 1, + [67507] = 2, + ACTIONS(5431), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67912] = 2, - ACTIONS(5508), 1, + [67515] = 2, + ACTIONS(5433), 1, + anon_sym_fn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67523] = 2, + ACTIONS(5435), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67920] = 2, - ACTIONS(5510), 1, + [67531] = 2, + ACTIONS(5078), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67928] = 2, - ACTIONS(5512), 1, + [67539] = 2, + ACTIONS(5437), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67936] = 2, - ACTIONS(5514), 1, + [67547] = 2, + ACTIONS(5439), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67944] = 2, - ACTIONS(5516), 1, - anon_sym_EQ_GT, + [67555] = 2, + ACTIONS(5441), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67952] = 2, - ACTIONS(5518), 1, - anon_sym_COLON_COLON, + [67563] = 2, + ACTIONS(4310), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67960] = 2, - ACTIONS(5520), 1, - anon_sym_RPAREN, + [67571] = 2, + ACTIONS(4986), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67968] = 2, - ACTIONS(5522), 1, + [67579] = 2, + ACTIONS(5443), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67976] = 2, - ACTIONS(5169), 1, - anon_sym_GT, + [67587] = 2, + ACTIONS(5445), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67984] = 2, - ACTIONS(5524), 1, - anon_sym_EQ_GT, + [67595] = 2, + ACTIONS(4029), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67992] = 2, - ACTIONS(5196), 1, + [67603] = 2, + ACTIONS(4025), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68000] = 2, - ACTIONS(5526), 1, + [67611] = 2, + ACTIONS(5447), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68008] = 2, - ACTIONS(5528), 1, - anon_sym_COLON, + [67619] = 2, + ACTIONS(5449), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68016] = 2, - ACTIONS(5194), 1, - anon_sym_SEMI, + [67627] = 2, + ACTIONS(5451), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68024] = 2, - ACTIONS(5530), 1, - anon_sym_RBRACE, + [67635] = 2, + ACTIONS(5453), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68032] = 2, - ACTIONS(5532), 1, + [67643] = 2, + ACTIONS(5455), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68040] = 2, - ACTIONS(5534), 1, - anon_sym_SEMI, + [67651] = 2, + ACTIONS(5457), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68048] = 2, - ACTIONS(5536), 1, + [67659] = 2, + ACTIONS(5459), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68056] = 2, - ACTIONS(5538), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68064] = 2, - ACTIONS(368), 1, - anon_sym_RBRACK, + [67667] = 2, + ACTIONS(5461), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68072] = 2, - ACTIONS(5540), 1, - anon_sym_SEMI, + [67675] = 2, + ACTIONS(5463), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68080] = 2, - ACTIONS(5542), 1, - anon_sym_SEMI, + [67683] = 2, + ACTIONS(5465), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68088] = 2, - ACTIONS(5544), 1, - anon_sym_EQ, + [67691] = 2, + ACTIONS(4851), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68096] = 2, - ACTIONS(5124), 1, - anon_sym_RBRACE, + [67699] = 2, + ACTIONS(5467), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68104] = 2, - ACTIONS(5546), 1, - anon_sym_LBRACK, + [67707] = 2, + ACTIONS(3570), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68112] = 2, - ACTIONS(5548), 1, + [67715] = 2, + ACTIONS(5469), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68120] = 2, - ACTIONS(5550), 1, - anon_sym_RBRACE, + [67723] = 2, + ACTIONS(5471), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68128] = 2, - ACTIONS(5552), 1, - anon_sym_SEMI, + [67731] = 2, + ACTIONS(4170), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68136] = 2, - ACTIONS(4385), 1, - anon_sym_RPAREN, + [67739] = 2, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68144] = 2, - ACTIONS(5554), 1, - anon_sym_SEMI, + [67747] = 2, + ACTIONS(4823), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68152] = 2, - ACTIONS(5071), 1, + [67755] = 2, + ACTIONS(4809), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68160] = 2, - ACTIONS(4059), 1, - anon_sym_SEMI, + [67763] = 2, + ACTIONS(4817), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68168] = 2, - ACTIONS(4055), 1, - anon_sym_SEMI, + [67771] = 2, + ACTIONS(5473), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68176] = 2, - ACTIONS(5556), 1, + [67779] = 2, + ACTIONS(5475), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68184] = 2, - ACTIONS(5558), 1, - anon_sym_SEMI, + [67787] = 2, + ACTIONS(5477), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68192] = 2, - ACTIONS(5560), 1, - anon_sym_SEMI, + [67795] = 2, + ACTIONS(2485), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68200] = 2, - ACTIONS(5562), 1, - anon_sym_EQ_GT, + [67803] = 2, + ACTIONS(5479), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68208] = 2, - ACTIONS(5564), 1, - anon_sym_RBRACK, + [67811] = 2, + ACTIONS(5481), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68216] = 2, - ACTIONS(5566), 1, - anon_sym_COLON, + [67819] = 2, + ACTIONS(5483), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68224] = 2, - ACTIONS(4257), 1, + [67827] = 2, + ACTIONS(5485), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68232] = 2, - ACTIONS(5568), 1, - anon_sym_COLON, + [67835] = 2, + ACTIONS(5487), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68240] = 2, - ACTIONS(5570), 1, - anon_sym_RPAREN, + [67843] = 2, + ACTIONS(4704), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68248] = 2, - ACTIONS(4726), 1, + [67851] = 2, + ACTIONS(5489), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68256] = 2, - ACTIONS(5572), 1, - sym_identifier, + [67859] = 2, + ACTIONS(5491), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68264] = 2, - ACTIONS(5574), 1, + [67867] = 2, + ACTIONS(5493), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68272] = 2, - ACTIONS(5576), 1, + [67875] = 2, + ACTIONS(5495), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68280] = 2, - ACTIONS(5578), 1, - sym_identifier, + [67883] = 2, + ACTIONS(5497), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68288] = 2, - ACTIONS(4926), 1, - sym_identifier, + [67891] = 2, + ACTIONS(5499), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68296] = 2, - ACTIONS(5580), 1, + [67899] = 2, + ACTIONS(5501), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68304] = 2, - ACTIONS(5582), 1, - sym_identifier, + [67907] = 2, + ACTIONS(4678), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68312] = 2, - ACTIONS(5584), 1, - sym_identifier, + [67915] = 2, + ACTIONS(5503), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68320] = 2, - ACTIONS(4105), 1, - anon_sym_COLON_COLON, + [67923] = 2, + ACTIONS(368), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68328] = 2, - ACTIONS(5586), 1, - sym_identifier, + [67931] = 2, + ACTIONS(5505), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68336] = 2, - ACTIONS(4894), 1, - anon_sym_RBRACE, + [67939] = 2, + ACTIONS(5507), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68344] = 2, - ACTIONS(3529), 1, - anon_sym_fn, + [67947] = 2, + ACTIONS(5509), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68352] = 2, - ACTIONS(5588), 1, - ts_builtin_sym_end, + [67955] = 2, + ACTIONS(5511), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68360] = 2, - ACTIONS(5590), 1, + [67963] = 2, + ACTIONS(5513), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68368] = 2, - ACTIONS(5592), 1, - sym_identifier, + [67971] = 2, + ACTIONS(3213), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68376] = 2, - ACTIONS(2844), 1, - anon_sym_COLON_COLON, + [67979] = 2, + ACTIONS(4059), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68384] = 2, - ACTIONS(5138), 1, - sym_identifier, + [67987] = 2, + ACTIONS(5515), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68392] = 2, - ACTIONS(2776), 1, - anon_sym_COLON_COLON, + [67995] = 2, + ACTIONS(4083), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68400] = 2, - ACTIONS(4878), 1, - sym_identifier, + [68003] = 2, + ACTIONS(5517), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68408] = 2, - ACTIONS(5594), 1, - anon_sym_SEMI, + [68011] = 2, + ACTIONS(4694), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68416] = 2, - ACTIONS(2506), 1, - anon_sym_PLUS, + [68019] = 2, + ACTIONS(3179), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68424] = 2, - ACTIONS(3596), 1, + [68027] = 2, + ACTIONS(4079), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68432] = 2, - ACTIONS(5596), 1, + [68035] = 2, + ACTIONS(5519), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68440] = 2, - ACTIONS(5598), 1, + [68043] = 2, + ACTIONS(5521), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68448] = 2, - ACTIONS(4839), 1, - anon_sym_RBRACE, + [68051] = 2, + ACTIONS(4267), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68456] = 2, - ACTIONS(2696), 1, + [68059] = 2, + ACTIONS(2756), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68464] = 2, - ACTIONS(5600), 1, + [68067] = 2, + ACTIONS(5523), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68472] = 2, - ACTIONS(5602), 1, - sym_identifier, + [68075] = 2, + ACTIONS(4289), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68480] = 2, - ACTIONS(5604), 1, - sym_identifier, + [68083] = 2, + ACTIONS(3481), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68488] = 2, - ACTIONS(5606), 1, - anon_sym_SEMI, + [68091] = 2, + ACTIONS(4982), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68496] = 2, - ACTIONS(5608), 1, - sym_identifier, + [68099] = 2, + ACTIONS(5525), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68504] = 2, - ACTIONS(4359), 1, - anon_sym_RPAREN, + [68107] = 2, + ACTIONS(2950), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68512] = 2, - ACTIONS(5610), 1, - anon_sym_fn, + [68115] = 2, + ACTIONS(5527), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68520] = 2, - ACTIONS(2461), 1, - anon_sym_EQ_GT, + [68123] = 2, + ACTIONS(2760), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68528] = 2, - ACTIONS(5612), 1, - sym_identifier, + [68131] = 2, + ACTIONS(2704), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68536] = 2, - ACTIONS(5614), 1, - sym_identifier, + [68139] = 2, + ACTIONS(4747), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68544] = 2, - ACTIONS(5616), 1, + [68147] = 2, + ACTIONS(5529), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68552] = 2, - ACTIONS(5618), 1, - sym_identifier, + [68155] = 2, + ACTIONS(5531), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68560] = 2, - ACTIONS(5620), 1, - sym_identifier, + [68163] = 2, + ACTIONS(5533), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68568] = 2, - ACTIONS(5622), 1, - anon_sym_LPAREN, + [68171] = 2, + ACTIONS(5535), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68576] = 2, - ACTIONS(5624), 1, - anon_sym_SEMI, + [68179] = 2, + ACTIONS(5537), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68584] = 2, - ACTIONS(4145), 1, + [68187] = 2, + ACTIONS(4259), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68592] = 2, - ACTIONS(5626), 1, + [68195] = 2, + ACTIONS(5539), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68600] = 2, - ACTIONS(5628), 1, - anon_sym_LPAREN, + [68203] = 2, + ACTIONS(5541), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68608] = 2, - ACTIONS(5630), 1, - sym_identifier, + [68211] = 2, + ACTIONS(5543), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68616] = 2, - ACTIONS(4253), 1, + [68219] = 2, + ACTIONS(4186), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68624] = 2, - ACTIONS(5632), 1, + [68227] = 2, + ACTIONS(5545), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68632] = 2, - ACTIONS(5634), 1, + [68235] = 2, + ACTIONS(5547), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68640] = 2, - ACTIONS(4277), 1, + [68243] = 2, + ACTIONS(4128), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68648] = 2, - ACTIONS(5636), 1, + [68251] = 2, + ACTIONS(5549), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68656] = 2, - ACTIONS(4304), 1, - anon_sym_RPAREN, + [68259] = 2, + ACTIONS(4841), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68664] = 2, - ACTIONS(5638), 1, - sym_identifier, + [68267] = 2, + ACTIONS(5551), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68672] = 2, - ACTIONS(5640), 1, - anon_sym_SEMI, + [68275] = 2, + ACTIONS(5553), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68680] = 2, - ACTIONS(5296), 1, + [68283] = 2, + ACTIONS(5555), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68688] = 2, - ACTIONS(5642), 1, + [68291] = 2, + ACTIONS(5557), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68696] = 2, - ACTIONS(5644), 1, + [68299] = 2, + ACTIONS(5559), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68704] = 2, - ACTIONS(5646), 1, + [68307] = 2, + ACTIONS(5561), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68712] = 2, - ACTIONS(5648), 1, + [68315] = 2, + ACTIONS(5563), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68720] = 2, - ACTIONS(5338), 1, - anon_sym_COLON_COLON, + [68323] = 2, + ACTIONS(4541), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68728] = 2, - ACTIONS(5650), 1, - anon_sym_EQ_GT, + [68331] = 2, + ACTIONS(5565), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68736] = 2, - ACTIONS(514), 1, + [68339] = 2, + ACTIONS(5567), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68744] = 2, - ACTIONS(5652), 1, + [68347] = 2, + ACTIONS(5569), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68752] = 2, - ACTIONS(5654), 1, + [68355] = 2, + ACTIONS(5571), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68760] = 2, - ACTIONS(5656), 1, - sym_identifier, + [68363] = 2, + ACTIONS(5573), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68768] = 2, - ACTIONS(3215), 1, + [68371] = 2, + ACTIONS(5575), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68776] = 2, - ACTIONS(4944), 1, - anon_sym_RBRACE, + [68379] = 2, + ACTIONS(5577), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68784] = 2, - ACTIONS(4609), 1, - anon_sym_RPAREN, + [68387] = 2, + ACTIONS(5579), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68792] = 2, - ACTIONS(5314), 1, - anon_sym_SEMI, + [68395] = 2, + ACTIONS(2455), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68800] = 2, - ACTIONS(4613), 1, - anon_sym_RBRACK, + [68403] = 2, + ACTIONS(5581), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68808] = 2, - ACTIONS(5658), 1, - sym_self, + [68411] = 2, + ACTIONS(5257), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68816] = 2, - ACTIONS(5660), 1, + [68419] = 2, + ACTIONS(5583), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68824] = 2, - ACTIONS(5662), 1, - sym_identifier, + [68427] = 2, + ACTIONS(5585), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68832] = 2, - ACTIONS(4097), 1, - anon_sym_SEMI, + [68435] = 2, + ACTIONS(5587), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68840] = 2, - ACTIONS(5664), 1, - anon_sym_EQ_GT, + [68443] = 2, + ACTIONS(5589), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68848] = 2, - ACTIONS(4049), 1, - anon_sym_SEMI, + [68451] = 2, + ACTIONS(5591), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68856] = 2, - ACTIONS(5666), 1, + [68459] = 2, + ACTIONS(5593), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68864] = 2, - ACTIONS(4633), 1, - sym_identifier, + [68467] = 2, + ACTIONS(5595), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68872] = 2, - ACTIONS(5668), 1, - sym_identifier, + [68475] = 2, + ACTIONS(5597), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68880] = 2, - ACTIONS(5670), 1, + [68483] = 2, + ACTIONS(5599), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68888] = 2, - ACTIONS(5672), 1, + [68491] = 2, + ACTIONS(5601), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68896] = 2, - ACTIONS(3239), 1, - anon_sym_RPAREN, + [68499] = 2, + ACTIONS(5603), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68904] = 2, - ACTIONS(5674), 1, - sym_identifier, + [68507] = 2, + ACTIONS(5605), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68912] = 2, - ACTIONS(5676), 1, + [68515] = 2, + ACTIONS(5607), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68920] = 2, - ACTIONS(5678), 1, + [68523] = 2, + ACTIONS(5609), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68928] = 2, - ACTIONS(5680), 1, + [68531] = 2, + ACTIONS(5611), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68936] = 2, - ACTIONS(5682), 1, + [68539] = 2, + ACTIONS(5613), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68944] = 2, - ACTIONS(5684), 1, + [68547] = 2, + ACTIONS(5615), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68952] = 2, - ACTIONS(5686), 1, + [68555] = 2, + ACTIONS(5617), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68960] = 2, - ACTIONS(5688), 1, - anon_sym_COLON, + [68563] = 2, + ACTIONS(2429), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68968] = 2, - ACTIONS(5690), 1, + [68571] = 2, + ACTIONS(5619), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68976] = 2, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, + [68579] = 2, + ACTIONS(5131), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68984] = 2, - ACTIONS(5692), 1, - sym_identifier, + [68587] = 2, + ACTIONS(5621), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68992] = 2, - ACTIONS(4870), 1, - anon_sym_RBRACE, + [68595] = 2, + ACTIONS(5623), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69000] = 2, - ACTIONS(5694), 1, - anon_sym_COLON_COLON, + [68603] = 2, + ACTIONS(5625), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69008] = 2, - ACTIONS(5696), 1, - anon_sym_RBRACK, + [68611] = 2, + ACTIONS(5627), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69016] = 2, - ACTIONS(3505), 1, + [68619] = 2, + ACTIONS(3507), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69024] = 2, - ACTIONS(5698), 1, + [68627] = 2, + ACTIONS(5629), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69032] = 2, - ACTIONS(4752), 1, - sym_identifier, + [68635] = 2, + ACTIONS(5631), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69040] = 2, - ACTIONS(5700), 1, + [68643] = 2, + ACTIONS(5633), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69048] = 2, - ACTIONS(5702), 1, - sym_identifier, + [68651] = 2, + ACTIONS(5635), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69056] = 2, - ACTIONS(5704), 1, - sym_identifier, + [68659] = 2, + ACTIONS(5637), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69064] = 2, - ACTIONS(5706), 1, - sym_identifier, + [68667] = 2, + ACTIONS(5639), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69072] = 2, - ACTIONS(5708), 1, + [68675] = 2, + ACTIONS(5641), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69080] = 2, - ACTIONS(5710), 1, + [68683] = 2, + ACTIONS(5643), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69088] = 2, - ACTIONS(5712), 1, + [68691] = 2, + ACTIONS(5645), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69096] = 2, - ACTIONS(5037), 1, - anon_sym_RBRACE, + [68699] = 2, + ACTIONS(5647), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69104] = 2, - ACTIONS(5714), 1, - anon_sym_SEMI, + [68707] = 2, + ACTIONS(5649), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69112] = 2, - ACTIONS(5716), 1, + [68715] = 2, + ACTIONS(5651), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69120] = 2, - ACTIONS(5718), 1, - sym_identifier, + [68723] = 2, + ACTIONS(5653), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69128] = 2, - ACTIONS(5720), 1, - anon_sym_COLON, + [68731] = 2, + ACTIONS(5655), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69136] = 2, - ACTIONS(5722), 1, + [68739] = 2, + ACTIONS(5657), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69144] = 2, - ACTIONS(5724), 1, - sym_identifier, + [68747] = 2, + ACTIONS(5659), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69152] = 2, - ACTIONS(5726), 1, - anon_sym_RPAREN, + [68755] = 2, + ACTIONS(5661), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69160] = 2, - ACTIONS(5728), 1, - anon_sym_fn, + [68763] = 2, + ACTIONS(5663), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(667)] = 0, - [SMALL_STATE(668)] = 129, - [SMALL_STATE(669)] = 258, - [SMALL_STATE(670)] = 387, - [SMALL_STATE(671)] = 516, - [SMALL_STATE(672)] = 645, - [SMALL_STATE(673)] = 774, - [SMALL_STATE(674)] = 903, - [SMALL_STATE(675)] = 1032, - [SMALL_STATE(676)] = 1161, - [SMALL_STATE(677)] = 1290, - [SMALL_STATE(678)] = 1361, - [SMALL_STATE(679)] = 1490, - [SMALL_STATE(680)] = 1619, - [SMALL_STATE(681)] = 1750, - [SMALL_STATE(682)] = 1879, - [SMALL_STATE(683)] = 2008, - [SMALL_STATE(684)] = 2137, - [SMALL_STATE(685)] = 2266, - [SMALL_STATE(686)] = 2395, - [SMALL_STATE(687)] = 2524, - [SMALL_STATE(688)] = 2653, - [SMALL_STATE(689)] = 2782, - [SMALL_STATE(690)] = 2911, - [SMALL_STATE(691)] = 3040, - [SMALL_STATE(692)] = 3169, - [SMALL_STATE(693)] = 3298, - [SMALL_STATE(694)] = 3427, - [SMALL_STATE(695)] = 3556, - [SMALL_STATE(696)] = 3685, - [SMALL_STATE(697)] = 3814, - [SMALL_STATE(698)] = 3943, - [SMALL_STATE(699)] = 4072, - [SMALL_STATE(700)] = 4201, - [SMALL_STATE(701)] = 4330, - [SMALL_STATE(702)] = 4459, - [SMALL_STATE(703)] = 4588, - [SMALL_STATE(704)] = 4717, - [SMALL_STATE(705)] = 4846, - [SMALL_STATE(706)] = 4975, - [SMALL_STATE(707)] = 5104, - [SMALL_STATE(708)] = 5233, - [SMALL_STATE(709)] = 5362, - [SMALL_STATE(710)] = 5491, - [SMALL_STATE(711)] = 5620, - [SMALL_STATE(712)] = 5749, - [SMALL_STATE(713)] = 5878, - [SMALL_STATE(714)] = 6007, - [SMALL_STATE(715)] = 6136, - [SMALL_STATE(716)] = 6265, - [SMALL_STATE(717)] = 6394, - [SMALL_STATE(718)] = 6523, - [SMALL_STATE(719)] = 6652, - [SMALL_STATE(720)] = 6781, - [SMALL_STATE(721)] = 6910, - [SMALL_STATE(722)] = 7039, - [SMALL_STATE(723)] = 7168, - [SMALL_STATE(724)] = 7297, - [SMALL_STATE(725)] = 7426, - [SMALL_STATE(726)] = 7555, - [SMALL_STATE(727)] = 7684, - [SMALL_STATE(728)] = 7813, - [SMALL_STATE(729)] = 7942, - [SMALL_STATE(730)] = 8071, - [SMALL_STATE(731)] = 8200, - [SMALL_STATE(732)] = 8329, - [SMALL_STATE(733)] = 8458, - [SMALL_STATE(734)] = 8587, - [SMALL_STATE(735)] = 8716, - [SMALL_STATE(736)] = 8845, - [SMALL_STATE(737)] = 8974, - [SMALL_STATE(738)] = 9103, - [SMALL_STATE(739)] = 9232, - [SMALL_STATE(740)] = 9361, - [SMALL_STATE(741)] = 9490, - [SMALL_STATE(742)] = 9619, - [SMALL_STATE(743)] = 9748, - [SMALL_STATE(744)] = 9877, - [SMALL_STATE(745)] = 10006, - [SMALL_STATE(746)] = 10135, - [SMALL_STATE(747)] = 10264, - [SMALL_STATE(748)] = 10393, - [SMALL_STATE(749)] = 10522, - [SMALL_STATE(750)] = 10651, - [SMALL_STATE(751)] = 10780, - [SMALL_STATE(752)] = 10909, - [SMALL_STATE(753)] = 11038, - [SMALL_STATE(754)] = 11167, - [SMALL_STATE(755)] = 11296, - [SMALL_STATE(756)] = 11425, - [SMALL_STATE(757)] = 11554, - [SMALL_STATE(758)] = 11683, - [SMALL_STATE(759)] = 11812, - [SMALL_STATE(760)] = 11941, - [SMALL_STATE(761)] = 12070, - [SMALL_STATE(762)] = 12199, - [SMALL_STATE(763)] = 12328, - [SMALL_STATE(764)] = 12457, - [SMALL_STATE(765)] = 12586, - [SMALL_STATE(766)] = 12715, - [SMALL_STATE(767)] = 12844, - [SMALL_STATE(768)] = 12973, - [SMALL_STATE(769)] = 13102, - [SMALL_STATE(770)] = 13231, - [SMALL_STATE(771)] = 13360, - [SMALL_STATE(772)] = 13489, - [SMALL_STATE(773)] = 13618, - [SMALL_STATE(774)] = 13747, - [SMALL_STATE(775)] = 13876, - [SMALL_STATE(776)] = 13942, - [SMALL_STATE(777)] = 14008, - [SMALL_STATE(778)] = 14074, - [SMALL_STATE(779)] = 14140, - [SMALL_STATE(780)] = 14202, - [SMALL_STATE(781)] = 14273, - [SMALL_STATE(782)] = 14341, - [SMALL_STATE(783)] = 14409, - [SMALL_STATE(784)] = 14474, - [SMALL_STATE(785)] = 14535, - [SMALL_STATE(786)] = 14600, - [SMALL_STATE(787)] = 14661, - [SMALL_STATE(788)] = 14726, - [SMALL_STATE(789)] = 14787, - [SMALL_STATE(790)] = 14852, - [SMALL_STATE(791)] = 14913, - [SMALL_STATE(792)] = 14971, - [SMALL_STATE(793)] = 15027, - [SMALL_STATE(794)] = 15083, - [SMALL_STATE(795)] = 15143, - [SMALL_STATE(796)] = 15201, - [SMALL_STATE(797)] = 15263, - [SMALL_STATE(798)] = 15321, - [SMALL_STATE(799)] = 15377, - [SMALL_STATE(800)] = 15433, - [SMALL_STATE(801)] = 15489, - [SMALL_STATE(802)] = 15547, - [SMALL_STATE(803)] = 15603, - [SMALL_STATE(804)] = 15658, - [SMALL_STATE(805)] = 15713, - [SMALL_STATE(806)] = 15770, - [SMALL_STATE(807)] = 15825, - [SMALL_STATE(808)] = 15882, - [SMALL_STATE(809)] = 15939, - [SMALL_STATE(810)] = 15994, - [SMALL_STATE(811)] = 16049, - [SMALL_STATE(812)] = 16108, - [SMALL_STATE(813)] = 16163, - [SMALL_STATE(814)] = 16222, - [SMALL_STATE(815)] = 16277, - [SMALL_STATE(816)] = 16334, - [SMALL_STATE(817)] = 16393, - [SMALL_STATE(818)] = 16448, - [SMALL_STATE(819)] = 16503, - [SMALL_STATE(820)] = 16560, - [SMALL_STATE(821)] = 16615, - [SMALL_STATE(822)] = 16672, - [SMALL_STATE(823)] = 16729, - [SMALL_STATE(824)] = 16786, - [SMALL_STATE(825)] = 16845, - [SMALL_STATE(826)] = 16902, - [SMALL_STATE(827)] = 16957, - [SMALL_STATE(828)] = 17012, - [SMALL_STATE(829)] = 17067, - [SMALL_STATE(830)] = 17124, - [SMALL_STATE(831)] = 17183, - [SMALL_STATE(832)] = 17240, - [SMALL_STATE(833)] = 17295, - [SMALL_STATE(834)] = 17352, - [SMALL_STATE(835)] = 17409, - [SMALL_STATE(836)] = 17466, - [SMALL_STATE(837)] = 17523, - [SMALL_STATE(838)] = 17577, - [SMALL_STATE(839)] = 17631, - [SMALL_STATE(840)] = 17687, - [SMALL_STATE(841)] = 17741, - [SMALL_STATE(842)] = 17795, - [SMALL_STATE(843)] = 17849, - [SMALL_STATE(844)] = 17903, - [SMALL_STATE(845)] = 17957, - [SMALL_STATE(846)] = 18011, - [SMALL_STATE(847)] = 18065, - [SMALL_STATE(848)] = 18119, - [SMALL_STATE(849)] = 18173, - [SMALL_STATE(850)] = 18227, - [SMALL_STATE(851)] = 18281, - [SMALL_STATE(852)] = 18335, - [SMALL_STATE(853)] = 18389, - [SMALL_STATE(854)] = 18443, - [SMALL_STATE(855)] = 18497, - [SMALL_STATE(856)] = 18551, - [SMALL_STATE(857)] = 18605, - [SMALL_STATE(858)] = 18659, - [SMALL_STATE(859)] = 18713, - [SMALL_STATE(860)] = 18767, - [SMALL_STATE(861)] = 18821, - [SMALL_STATE(862)] = 18875, - [SMALL_STATE(863)] = 18929, - [SMALL_STATE(864)] = 18983, - [SMALL_STATE(865)] = 19037, - [SMALL_STATE(866)] = 19091, - [SMALL_STATE(867)] = 19145, - [SMALL_STATE(868)] = 19199, - [SMALL_STATE(869)] = 19253, - [SMALL_STATE(870)] = 19307, - [SMALL_STATE(871)] = 19361, - [SMALL_STATE(872)] = 19415, - [SMALL_STATE(873)] = 19469, - [SMALL_STATE(874)] = 19523, - [SMALL_STATE(875)] = 19577, - [SMALL_STATE(876)] = 19631, - [SMALL_STATE(877)] = 19685, - [SMALL_STATE(878)] = 19739, - [SMALL_STATE(879)] = 19793, - [SMALL_STATE(880)] = 19847, - [SMALL_STATE(881)] = 19901, - [SMALL_STATE(882)] = 19955, - [SMALL_STATE(883)] = 20009, - [SMALL_STATE(884)] = 20063, - [SMALL_STATE(885)] = 20117, - [SMALL_STATE(886)] = 20171, - [SMALL_STATE(887)] = 20225, - [SMALL_STATE(888)] = 20279, - [SMALL_STATE(889)] = 20333, - [SMALL_STATE(890)] = 20387, - [SMALL_STATE(891)] = 20441, - [SMALL_STATE(892)] = 20495, - [SMALL_STATE(893)] = 20549, - [SMALL_STATE(894)] = 20603, - [SMALL_STATE(895)] = 20657, - [SMALL_STATE(896)] = 20711, - [SMALL_STATE(897)] = 20765, - [SMALL_STATE(898)] = 20819, - [SMALL_STATE(899)] = 20873, - [SMALL_STATE(900)] = 20927, - [SMALL_STATE(901)] = 20981, - [SMALL_STATE(902)] = 21035, - [SMALL_STATE(903)] = 21089, - [SMALL_STATE(904)] = 21143, - [SMALL_STATE(905)] = 21199, - [SMALL_STATE(906)] = 21253, - [SMALL_STATE(907)] = 21307, - [SMALL_STATE(908)] = 21361, - [SMALL_STATE(909)] = 21415, - [SMALL_STATE(910)] = 21469, - [SMALL_STATE(911)] = 21523, - [SMALL_STATE(912)] = 21577, - [SMALL_STATE(913)] = 21631, - [SMALL_STATE(914)] = 21685, - [SMALL_STATE(915)] = 21739, - [SMALL_STATE(916)] = 21793, - [SMALL_STATE(917)] = 21847, - [SMALL_STATE(918)] = 21901, - [SMALL_STATE(919)] = 21955, - [SMALL_STATE(920)] = 22009, - [SMALL_STATE(921)] = 22063, - [SMALL_STATE(922)] = 22117, - [SMALL_STATE(923)] = 22171, - [SMALL_STATE(924)] = 22225, - [SMALL_STATE(925)] = 22279, - [SMALL_STATE(926)] = 22333, - [SMALL_STATE(927)] = 22387, - [SMALL_STATE(928)] = 22441, - [SMALL_STATE(929)] = 22495, - [SMALL_STATE(930)] = 22549, - [SMALL_STATE(931)] = 22603, - [SMALL_STATE(932)] = 22657, - [SMALL_STATE(933)] = 22711, - [SMALL_STATE(934)] = 22765, - [SMALL_STATE(935)] = 22819, - [SMALL_STATE(936)] = 22873, - [SMALL_STATE(937)] = 22927, - [SMALL_STATE(938)] = 22981, - [SMALL_STATE(939)] = 23035, - [SMALL_STATE(940)] = 23089, - [SMALL_STATE(941)] = 23143, - [SMALL_STATE(942)] = 23197, - [SMALL_STATE(943)] = 23251, - [SMALL_STATE(944)] = 23305, - [SMALL_STATE(945)] = 23359, - [SMALL_STATE(946)] = 23413, - [SMALL_STATE(947)] = 23467, - [SMALL_STATE(948)] = 23521, - [SMALL_STATE(949)] = 23575, - [SMALL_STATE(950)] = 23629, - [SMALL_STATE(951)] = 23683, - [SMALL_STATE(952)] = 23737, - [SMALL_STATE(953)] = 23791, - [SMALL_STATE(954)] = 23845, - [SMALL_STATE(955)] = 23899, - [SMALL_STATE(956)] = 23953, - [SMALL_STATE(957)] = 24007, - [SMALL_STATE(958)] = 24061, - [SMALL_STATE(959)] = 24115, - [SMALL_STATE(960)] = 24169, - [SMALL_STATE(961)] = 24223, - [SMALL_STATE(962)] = 24277, - [SMALL_STATE(963)] = 24331, - [SMALL_STATE(964)] = 24385, - [SMALL_STATE(965)] = 24439, - [SMALL_STATE(966)] = 24493, - [SMALL_STATE(967)] = 24547, - [SMALL_STATE(968)] = 24601, - [SMALL_STATE(969)] = 24655, - [SMALL_STATE(970)] = 24709, - [SMALL_STATE(971)] = 24763, - [SMALL_STATE(972)] = 24817, - [SMALL_STATE(973)] = 24871, - [SMALL_STATE(974)] = 24925, - [SMALL_STATE(975)] = 24979, - [SMALL_STATE(976)] = 25033, - [SMALL_STATE(977)] = 25087, - [SMALL_STATE(978)] = 25141, - [SMALL_STATE(979)] = 25195, - [SMALL_STATE(980)] = 25249, - [SMALL_STATE(981)] = 25303, - [SMALL_STATE(982)] = 25357, - [SMALL_STATE(983)] = 25411, - [SMALL_STATE(984)] = 25465, - [SMALL_STATE(985)] = 25519, - [SMALL_STATE(986)] = 25573, - [SMALL_STATE(987)] = 25627, - [SMALL_STATE(988)] = 25681, - [SMALL_STATE(989)] = 25735, - [SMALL_STATE(990)] = 25789, - [SMALL_STATE(991)] = 25843, - [SMALL_STATE(992)] = 25897, - [SMALL_STATE(993)] = 25951, - [SMALL_STATE(994)] = 26005, - [SMALL_STATE(995)] = 26059, - [SMALL_STATE(996)] = 26113, - [SMALL_STATE(997)] = 26167, - [SMALL_STATE(998)] = 26221, - [SMALL_STATE(999)] = 26275, - [SMALL_STATE(1000)] = 26329, - [SMALL_STATE(1001)] = 26383, - [SMALL_STATE(1002)] = 26437, - [SMALL_STATE(1003)] = 26491, - [SMALL_STATE(1004)] = 26545, - [SMALL_STATE(1005)] = 26599, - [SMALL_STATE(1006)] = 26653, - [SMALL_STATE(1007)] = 26707, - [SMALL_STATE(1008)] = 26761, - [SMALL_STATE(1009)] = 26815, - [SMALL_STATE(1010)] = 26869, - [SMALL_STATE(1011)] = 26923, - [SMALL_STATE(1012)] = 26977, - [SMALL_STATE(1013)] = 27031, - [SMALL_STATE(1014)] = 27085, - [SMALL_STATE(1015)] = 27139, - [SMALL_STATE(1016)] = 27193, - [SMALL_STATE(1017)] = 27247, - [SMALL_STATE(1018)] = 27301, - [SMALL_STATE(1019)] = 27355, - [SMALL_STATE(1020)] = 27409, - [SMALL_STATE(1021)] = 27463, - [SMALL_STATE(1022)] = 27517, - [SMALL_STATE(1023)] = 27571, - [SMALL_STATE(1024)] = 27625, - [SMALL_STATE(1025)] = 27679, - [SMALL_STATE(1026)] = 27733, - [SMALL_STATE(1027)] = 27787, - [SMALL_STATE(1028)] = 27841, - [SMALL_STATE(1029)] = 27895, - [SMALL_STATE(1030)] = 27949, - [SMALL_STATE(1031)] = 28003, - [SMALL_STATE(1032)] = 28057, - [SMALL_STATE(1033)] = 28111, - [SMALL_STATE(1034)] = 28165, - [SMALL_STATE(1035)] = 28219, - [SMALL_STATE(1036)] = 28273, - [SMALL_STATE(1037)] = 28327, - [SMALL_STATE(1038)] = 28381, - [SMALL_STATE(1039)] = 28435, - [SMALL_STATE(1040)] = 28489, - [SMALL_STATE(1041)] = 28543, - [SMALL_STATE(1042)] = 28597, - [SMALL_STATE(1043)] = 28651, - [SMALL_STATE(1044)] = 28705, - [SMALL_STATE(1045)] = 28759, - [SMALL_STATE(1046)] = 28813, - [SMALL_STATE(1047)] = 28867, - [SMALL_STATE(1048)] = 28921, - [SMALL_STATE(1049)] = 28975, - [SMALL_STATE(1050)] = 29029, - [SMALL_STATE(1051)] = 29083, - [SMALL_STATE(1052)] = 29137, - [SMALL_STATE(1053)] = 29191, - [SMALL_STATE(1054)] = 29245, - [SMALL_STATE(1055)] = 29299, - [SMALL_STATE(1056)] = 29353, - [SMALL_STATE(1057)] = 29407, - [SMALL_STATE(1058)] = 29461, - [SMALL_STATE(1059)] = 29515, - [SMALL_STATE(1060)] = 29569, - [SMALL_STATE(1061)] = 29623, - [SMALL_STATE(1062)] = 29677, - [SMALL_STATE(1063)] = 29731, - [SMALL_STATE(1064)] = 29785, - [SMALL_STATE(1065)] = 29839, - [SMALL_STATE(1066)] = 29893, - [SMALL_STATE(1067)] = 29947, - [SMALL_STATE(1068)] = 30001, - [SMALL_STATE(1069)] = 30055, - [SMALL_STATE(1070)] = 30109, - [SMALL_STATE(1071)] = 30163, - [SMALL_STATE(1072)] = 30217, - [SMALL_STATE(1073)] = 30271, - [SMALL_STATE(1074)] = 30325, - [SMALL_STATE(1075)] = 30379, - [SMALL_STATE(1076)] = 30433, - [SMALL_STATE(1077)] = 30487, - [SMALL_STATE(1078)] = 30541, - [SMALL_STATE(1079)] = 30595, - [SMALL_STATE(1080)] = 30649, - [SMALL_STATE(1081)] = 30703, - [SMALL_STATE(1082)] = 30757, - [SMALL_STATE(1083)] = 30811, - [SMALL_STATE(1084)] = 30865, - [SMALL_STATE(1085)] = 30919, - [SMALL_STATE(1086)] = 30973, - [SMALL_STATE(1087)] = 31027, - [SMALL_STATE(1088)] = 31081, - [SMALL_STATE(1089)] = 31135, - [SMALL_STATE(1090)] = 31189, - [SMALL_STATE(1091)] = 31243, - [SMALL_STATE(1092)] = 31297, - [SMALL_STATE(1093)] = 31351, - [SMALL_STATE(1094)] = 31405, - [SMALL_STATE(1095)] = 31459, - [SMALL_STATE(1096)] = 31513, - [SMALL_STATE(1097)] = 31567, - [SMALL_STATE(1098)] = 31621, - [SMALL_STATE(1099)] = 31675, - [SMALL_STATE(1100)] = 31729, - [SMALL_STATE(1101)] = 31783, - [SMALL_STATE(1102)] = 31837, - [SMALL_STATE(1103)] = 31891, - [SMALL_STATE(1104)] = 31945, - [SMALL_STATE(1105)] = 31999, - [SMALL_STATE(1106)] = 32053, - [SMALL_STATE(1107)] = 32107, - [SMALL_STATE(1108)] = 32161, - [SMALL_STATE(1109)] = 32215, - [SMALL_STATE(1110)] = 32269, - [SMALL_STATE(1111)] = 32323, - [SMALL_STATE(1112)] = 32377, - [SMALL_STATE(1113)] = 32431, - [SMALL_STATE(1114)] = 32485, - [SMALL_STATE(1115)] = 32539, - [SMALL_STATE(1116)] = 32593, - [SMALL_STATE(1117)] = 32647, - [SMALL_STATE(1118)] = 32701, - [SMALL_STATE(1119)] = 32755, - [SMALL_STATE(1120)] = 32809, - [SMALL_STATE(1121)] = 32863, - [SMALL_STATE(1122)] = 32917, - [SMALL_STATE(1123)] = 32971, - [SMALL_STATE(1124)] = 33025, - [SMALL_STATE(1125)] = 33079, - [SMALL_STATE(1126)] = 33133, - [SMALL_STATE(1127)] = 33187, - [SMALL_STATE(1128)] = 33241, - [SMALL_STATE(1129)] = 33295, - [SMALL_STATE(1130)] = 33349, - [SMALL_STATE(1131)] = 33403, - [SMALL_STATE(1132)] = 33457, - [SMALL_STATE(1133)] = 33511, - [SMALL_STATE(1134)] = 33565, - [SMALL_STATE(1135)] = 33619, - [SMALL_STATE(1136)] = 33673, - [SMALL_STATE(1137)] = 33727, - [SMALL_STATE(1138)] = 33781, - [SMALL_STATE(1139)] = 33835, - [SMALL_STATE(1140)] = 33889, - [SMALL_STATE(1141)] = 33943, - [SMALL_STATE(1142)] = 33997, - [SMALL_STATE(1143)] = 34051, - [SMALL_STATE(1144)] = 34105, - [SMALL_STATE(1145)] = 34159, - [SMALL_STATE(1146)] = 34213, - [SMALL_STATE(1147)] = 34267, - [SMALL_STATE(1148)] = 34321, - [SMALL_STATE(1149)] = 34375, - [SMALL_STATE(1150)] = 34429, - [SMALL_STATE(1151)] = 34483, - [SMALL_STATE(1152)] = 34537, - [SMALL_STATE(1153)] = 34591, - [SMALL_STATE(1154)] = 34645, - [SMALL_STATE(1155)] = 34699, - [SMALL_STATE(1156)] = 34753, - [SMALL_STATE(1157)] = 34807, - [SMALL_STATE(1158)] = 34861, - [SMALL_STATE(1159)] = 34915, - [SMALL_STATE(1160)] = 34969, - [SMALL_STATE(1161)] = 35036, - [SMALL_STATE(1162)] = 35119, - [SMALL_STATE(1163)] = 35208, - [SMALL_STATE(1164)] = 35291, - [SMALL_STATE(1165)] = 35344, - [SMALL_STATE(1166)] = 35431, - [SMALL_STATE(1167)] = 35486, - [SMALL_STATE(1168)] = 35547, - [SMALL_STATE(1169)] = 35608, - [SMALL_STATE(1170)] = 35661, - [SMALL_STATE(1171)] = 35748, - [SMALL_STATE(1172)] = 35831, - [SMALL_STATE(1173)] = 35884, - [SMALL_STATE(1174)] = 35955, - [SMALL_STATE(1175)] = 36008, - [SMALL_STATE(1176)] = 36097, - [SMALL_STATE(1177)] = 36162, - [SMALL_STATE(1178)] = 36217, - [SMALL_STATE(1179)] = 36274, - [SMALL_STATE(1180)] = 36337, - [SMALL_STATE(1181)] = 36398, - [SMALL_STATE(1182)] = 36471, - [SMALL_STATE(1183)] = 36554, - [SMALL_STATE(1184)] = 36637, - [SMALL_STATE(1185)] = 36690, - [SMALL_STATE(1186)] = 36773, - [SMALL_STATE(1187)] = 36848, - [SMALL_STATE(1188)] = 36917, - [SMALL_STATE(1189)] = 36970, - [SMALL_STATE(1190)] = 37049, - [SMALL_STATE(1191)] = 37130, - [SMALL_STATE(1192)] = 37190, - [SMALL_STATE(1193)] = 37242, - [SMALL_STATE(1194)] = 37294, - [SMALL_STATE(1195)] = 37379, - [SMALL_STATE(1196)] = 37466, - [SMALL_STATE(1197)] = 37553, - [SMALL_STATE(1198)] = 37640, - [SMALL_STATE(1199)] = 37727, - [SMALL_STATE(1200)] = 37778, - [SMALL_STATE(1201)] = 37857, - [SMALL_STATE(1202)] = 37908, - [SMALL_STATE(1203)] = 37993, - [SMALL_STATE(1204)] = 38050, - [SMALL_STATE(1205)] = 38126, - [SMALL_STATE(1206)] = 38180, - [SMALL_STATE(1207)] = 38236, - [SMALL_STATE(1208)] = 38312, - [SMALL_STATE(1209)] = 38388, - [SMALL_STATE(1210)] = 38464, - [SMALL_STATE(1211)] = 38513, - [SMALL_STATE(1212)] = 38562, - [SMALL_STATE(1213)] = 38613, - [SMALL_STATE(1214)] = 38702, - [SMALL_STATE(1215)] = 38755, - [SMALL_STATE(1216)] = 38804, - [SMALL_STATE(1217)] = 38853, - [SMALL_STATE(1218)] = 38906, - [SMALL_STATE(1219)] = 38955, - [SMALL_STATE(1220)] = 39028, - [SMALL_STATE(1221)] = 39077, - [SMALL_STATE(1222)] = 39126, - [SMALL_STATE(1223)] = 39215, - [SMALL_STATE(1224)] = 39266, - [SMALL_STATE(1225)] = 39315, - [SMALL_STATE(1226)] = 39364, - [SMALL_STATE(1227)] = 39414, - [SMALL_STATE(1228)] = 39464, - [SMALL_STATE(1229)] = 39550, - [SMALL_STATE(1230)] = 39636, - [SMALL_STATE(1231)] = 39714, - [SMALL_STATE(1232)] = 39764, - [SMALL_STATE(1233)] = 39842, - [SMALL_STATE(1234)] = 39892, - [SMALL_STATE(1235)] = 39975, - [SMALL_STATE(1236)] = 40058, - [SMALL_STATE(1237)] = 40139, - [SMALL_STATE(1238)] = 40216, - [SMALL_STATE(1239)] = 40271, - [SMALL_STATE(1240)] = 40354, - [SMALL_STATE(1241)] = 40437, - [SMALL_STATE(1242)] = 40520, - [SMALL_STATE(1243)] = 40577, - [SMALL_STATE(1244)] = 40660, - [SMALL_STATE(1245)] = 40743, - [SMALL_STATE(1246)] = 40824, - [SMALL_STATE(1247)] = 40907, - [SMALL_STATE(1248)] = 40990, - [SMALL_STATE(1249)] = 41071, - [SMALL_STATE(1250)] = 41152, - [SMALL_STATE(1251)] = 41235, - [SMALL_STATE(1252)] = 41318, - [SMALL_STATE(1253)] = 41401, - [SMALL_STATE(1254)] = 41478, - [SMALL_STATE(1255)] = 41561, - [SMALL_STATE(1256)] = 41644, - [SMALL_STATE(1257)] = 41727, - [SMALL_STATE(1258)] = 41810, - [SMALL_STATE(1259)] = 41887, - [SMALL_STATE(1260)] = 41942, - [SMALL_STATE(1261)] = 42025, - [SMALL_STATE(1262)] = 42108, - [SMALL_STATE(1263)] = 42189, - [SMALL_STATE(1264)] = 42270, - [SMALL_STATE(1265)] = 42353, - [SMALL_STATE(1266)] = 42436, - [SMALL_STATE(1267)] = 42519, - [SMALL_STATE(1268)] = 42602, - [SMALL_STATE(1269)] = 42685, - [SMALL_STATE(1270)] = 42766, - [SMALL_STATE(1271)] = 42843, - [SMALL_STATE(1272)] = 42924, - [SMALL_STATE(1273)] = 43007, - [SMALL_STATE(1274)] = 43090, - [SMALL_STATE(1275)] = 43145, - [SMALL_STATE(1276)] = 43228, - [SMALL_STATE(1277)] = 43309, - [SMALL_STATE(1278)] = 43392, - [SMALL_STATE(1279)] = 43475, - [SMALL_STATE(1280)] = 43558, - [SMALL_STATE(1281)] = 43641, - [SMALL_STATE(1282)] = 43724, - [SMALL_STATE(1283)] = 43807, - [SMALL_STATE(1284)] = 43890, - [SMALL_STATE(1285)] = 43973, - [SMALL_STATE(1286)] = 44056, - [SMALL_STATE(1287)] = 44139, - [SMALL_STATE(1288)] = 44220, - [SMALL_STATE(1289)] = 44303, - [SMALL_STATE(1290)] = 44384, - [SMALL_STATE(1291)] = 44467, - [SMALL_STATE(1292)] = 44550, - [SMALL_STATE(1293)] = 44633, - [SMALL_STATE(1294)] = 44716, - [SMALL_STATE(1295)] = 44799, - [SMALL_STATE(1296)] = 44880, - [SMALL_STATE(1297)] = 44961, - [SMALL_STATE(1298)] = 45032, - [SMALL_STATE(1299)] = 45115, - [SMALL_STATE(1300)] = 45196, - [SMALL_STATE(1301)] = 45279, - [SMALL_STATE(1302)] = 45362, - [SMALL_STATE(1303)] = 45445, - [SMALL_STATE(1304)] = 45528, - [SMALL_STATE(1305)] = 45611, - [SMALL_STATE(1306)] = 45670, - [SMALL_STATE(1307)] = 45747, - [SMALL_STATE(1308)] = 45816, - [SMALL_STATE(1309)] = 45879, - [SMALL_STATE(1310)] = 45952, - [SMALL_STATE(1311)] = 46035, - [SMALL_STATE(1312)] = 46118, - [SMALL_STATE(1313)] = 46201, - [SMALL_STATE(1314)] = 46276, - [SMALL_STATE(1315)] = 46359, - [SMALL_STATE(1316)] = 46442, - [SMALL_STATE(1317)] = 46519, - [SMALL_STATE(1318)] = 46580, - [SMALL_STATE(1319)] = 46645, - [SMALL_STATE(1320)] = 46712, - [SMALL_STATE(1321)] = 46792, - [SMALL_STATE(1322)] = 46872, - [SMALL_STATE(1323)] = 46952, - [SMALL_STATE(1324)] = 47032, - [SMALL_STATE(1325)] = 47112, - [SMALL_STATE(1326)] = 47192, - [SMALL_STATE(1327)] = 47272, - [SMALL_STATE(1328)] = 47352, - [SMALL_STATE(1329)] = 47432, - [SMALL_STATE(1330)] = 47512, - [SMALL_STATE(1331)] = 47592, - [SMALL_STATE(1332)] = 47672, - [SMALL_STATE(1333)] = 47752, - [SMALL_STATE(1334)] = 47832, - [SMALL_STATE(1335)] = 47912, - [SMALL_STATE(1336)] = 47992, - [SMALL_STATE(1337)] = 48072, - [SMALL_STATE(1338)] = 48152, - [SMALL_STATE(1339)] = 48232, - [SMALL_STATE(1340)] = 48312, - [SMALL_STATE(1341)] = 48392, - [SMALL_STATE(1342)] = 48460, - [SMALL_STATE(1343)] = 48540, - [SMALL_STATE(1344)] = 48608, - [SMALL_STATE(1345)] = 48688, - [SMALL_STATE(1346)] = 48768, - [SMALL_STATE(1347)] = 48848, - [SMALL_STATE(1348)] = 48928, - [SMALL_STATE(1349)] = 48993, - [SMALL_STATE(1350)] = 49058, - [SMALL_STATE(1351)] = 49123, - [SMALL_STATE(1352)] = 49188, - [SMALL_STATE(1353)] = 49253, - [SMALL_STATE(1354)] = 49293, - [SMALL_STATE(1355)] = 49333, - [SMALL_STATE(1356)] = 49373, - [SMALL_STATE(1357)] = 49425, - [SMALL_STATE(1358)] = 49477, - [SMALL_STATE(1359)] = 49508, - [SMALL_STATE(1360)] = 49539, - [SMALL_STATE(1361)] = 49585, - [SMALL_STATE(1362)] = 49626, - [SMALL_STATE(1363)] = 49664, - [SMALL_STATE(1364)] = 49694, - [SMALL_STATE(1365)] = 49724, - [SMALL_STATE(1366)] = 49754, - [SMALL_STATE(1367)] = 49784, - [SMALL_STATE(1368)] = 49814, - [SMALL_STATE(1369)] = 49844, - [SMALL_STATE(1370)] = 49874, - [SMALL_STATE(1371)] = 49912, - [SMALL_STATE(1372)] = 49942, - [SMALL_STATE(1373)] = 49969, - [SMALL_STATE(1374)] = 49996, - [SMALL_STATE(1375)] = 50023, - [SMALL_STATE(1376)] = 50056, - [SMALL_STATE(1377)] = 50089, - [SMALL_STATE(1378)] = 50122, - [SMALL_STATE(1379)] = 50148, - [SMALL_STATE(1380)] = 50202, - [SMALL_STATE(1381)] = 50228, - [SMALL_STATE(1382)] = 50282, - [SMALL_STATE(1383)] = 50316, - [SMALL_STATE(1384)] = 50340, - [SMALL_STATE(1385)] = 50366, - [SMALL_STATE(1386)] = 50392, - [SMALL_STATE(1387)] = 50423, - [SMALL_STATE(1388)] = 50448, - [SMALL_STATE(1389)] = 50473, - [SMALL_STATE(1390)] = 50498, - [SMALL_STATE(1391)] = 50521, - [SMALL_STATE(1392)] = 50546, - [SMALL_STATE(1393)] = 50571, - [SMALL_STATE(1394)] = 50596, - [SMALL_STATE(1395)] = 50618, - [SMALL_STATE(1396)] = 50642, - [SMALL_STATE(1397)] = 50666, - [SMALL_STATE(1398)] = 50688, - [SMALL_STATE(1399)] = 50710, - [SMALL_STATE(1400)] = 50734, - [SMALL_STATE(1401)] = 50756, - [SMALL_STATE(1402)] = 50778, - [SMALL_STATE(1403)] = 50800, - [SMALL_STATE(1404)] = 50828, - [SMALL_STATE(1405)] = 50874, - [SMALL_STATE(1406)] = 50918, - [SMALL_STATE(1407)] = 50940, - [SMALL_STATE(1408)] = 50964, - [SMALL_STATE(1409)] = 50990, - [SMALL_STATE(1410)] = 51014, - [SMALL_STATE(1411)] = 51038, - [SMALL_STATE(1412)] = 51062, - [SMALL_STATE(1413)] = 51086, - [SMALL_STATE(1414)] = 51112, - [SMALL_STATE(1415)] = 51156, - [SMALL_STATE(1416)] = 51180, - [SMALL_STATE(1417)] = 51206, - [SMALL_STATE(1418)] = 51228, - [SMALL_STATE(1419)] = 51254, - [SMALL_STATE(1420)] = 51278, - [SMALL_STATE(1421)] = 51304, - [SMALL_STATE(1422)] = 51325, - [SMALL_STATE(1423)] = 51346, - [SMALL_STATE(1424)] = 51391, - [SMALL_STATE(1425)] = 51416, - [SMALL_STATE(1426)] = 51441, - [SMALL_STATE(1427)] = 51462, - [SMALL_STATE(1428)] = 51483, - [SMALL_STATE(1429)] = 51504, - [SMALL_STATE(1430)] = 51525, - [SMALL_STATE(1431)] = 51546, - [SMALL_STATE(1432)] = 51567, - [SMALL_STATE(1433)] = 51588, - [SMALL_STATE(1434)] = 51611, - [SMALL_STATE(1435)] = 51632, - [SMALL_STATE(1436)] = 51653, - [SMALL_STATE(1437)] = 51674, - [SMALL_STATE(1438)] = 51695, - [SMALL_STATE(1439)] = 51726, - [SMALL_STATE(1440)] = 51747, - [SMALL_STATE(1441)] = 51768, - [SMALL_STATE(1442)] = 51789, - [SMALL_STATE(1443)] = 51810, - [SMALL_STATE(1444)] = 51831, - [SMALL_STATE(1445)] = 51852, - [SMALL_STATE(1446)] = 51873, - [SMALL_STATE(1447)] = 51896, - [SMALL_STATE(1448)] = 51917, - [SMALL_STATE(1449)] = 51938, - [SMALL_STATE(1450)] = 51961, - [SMALL_STATE(1451)] = 51982, - [SMALL_STATE(1452)] = 52004, - [SMALL_STATE(1453)] = 52026, - [SMALL_STATE(1454)] = 52048, - [SMALL_STATE(1455)] = 52072, - [SMALL_STATE(1456)] = 52096, - [SMALL_STATE(1457)] = 52124, - [SMALL_STATE(1458)] = 52148, - [SMALL_STATE(1459)] = 52172, - [SMALL_STATE(1460)] = 52196, - [SMALL_STATE(1461)] = 52220, - [SMALL_STATE(1462)] = 52244, - [SMALL_STATE(1463)] = 52268, - [SMALL_STATE(1464)] = 52293, - [SMALL_STATE(1465)] = 52314, - [SMALL_STATE(1466)] = 52335, - [SMALL_STATE(1467)] = 52356, - [SMALL_STATE(1468)] = 52377, - [SMALL_STATE(1469)] = 52398, - [SMALL_STATE(1470)] = 52419, - [SMALL_STATE(1471)] = 52442, - [SMALL_STATE(1472)] = 52465, - [SMALL_STATE(1473)] = 52486, - [SMALL_STATE(1474)] = 52507, - [SMALL_STATE(1475)] = 52528, - [SMALL_STATE(1476)] = 52551, - [SMALL_STATE(1477)] = 52572, - [SMALL_STATE(1478)] = 52593, - [SMALL_STATE(1479)] = 52614, - [SMALL_STATE(1480)] = 52635, - [SMALL_STATE(1481)] = 52658, - [SMALL_STATE(1482)] = 52679, - [SMALL_STATE(1483)] = 52700, - [SMALL_STATE(1484)] = 52721, - [SMALL_STATE(1485)] = 52742, - [SMALL_STATE(1486)] = 52767, - [SMALL_STATE(1487)] = 52788, - [SMALL_STATE(1488)] = 52813, - [SMALL_STATE(1489)] = 52834, - [SMALL_STATE(1490)] = 52855, - [SMALL_STATE(1491)] = 52876, - [SMALL_STATE(1492)] = 52897, - [SMALL_STATE(1493)] = 52922, - [SMALL_STATE(1494)] = 52943, - [SMALL_STATE(1495)] = 52964, - [SMALL_STATE(1496)] = 52985, - [SMALL_STATE(1497)] = 53010, - [SMALL_STATE(1498)] = 53031, - [SMALL_STATE(1499)] = 53052, - [SMALL_STATE(1500)] = 53073, - [SMALL_STATE(1501)] = 53094, - [SMALL_STATE(1502)] = 53115, - [SMALL_STATE(1503)] = 53144, - [SMALL_STATE(1504)] = 53165, - [SMALL_STATE(1505)] = 53190, - [SMALL_STATE(1506)] = 53215, - [SMALL_STATE(1507)] = 53240, - [SMALL_STATE(1508)] = 53272, - [SMALL_STATE(1509)] = 53304, - [SMALL_STATE(1510)] = 53328, - [SMALL_STATE(1511)] = 53360, - [SMALL_STATE(1512)] = 53384, - [SMALL_STATE(1513)] = 53416, - [SMALL_STATE(1514)] = 53448, - [SMALL_STATE(1515)] = 53472, - [SMALL_STATE(1516)] = 53504, - [SMALL_STATE(1517)] = 53536, - [SMALL_STATE(1518)] = 53560, - [SMALL_STATE(1519)] = 53592, - [SMALL_STATE(1520)] = 53625, - [SMALL_STATE(1521)] = 53650, - [SMALL_STATE(1522)] = 53681, - [SMALL_STATE(1523)] = 53708, - [SMALL_STATE(1524)] = 53737, - [SMALL_STATE(1525)] = 53770, - [SMALL_STATE(1526)] = 53803, - [SMALL_STATE(1527)] = 53836, - [SMALL_STATE(1528)] = 53858, - [SMALL_STATE(1529)] = 53888, - [SMALL_STATE(1530)] = 53914, - [SMALL_STATE(1531)] = 53936, - [SMALL_STATE(1532)] = 53958, - [SMALL_STATE(1533)] = 53984, - [SMALL_STATE(1534)] = 54014, - [SMALL_STATE(1535)] = 54040, - [SMALL_STATE(1536)] = 54066, - [SMALL_STATE(1537)] = 54092, - [SMALL_STATE(1538)] = 54122, - [SMALL_STATE(1539)] = 54148, - [SMALL_STATE(1540)] = 54178, - [SMALL_STATE(1541)] = 54208, - [SMALL_STATE(1542)] = 54238, - [SMALL_STATE(1543)] = 54270, - [SMALL_STATE(1544)] = 54300, - [SMALL_STATE(1545)] = 54322, - [SMALL_STATE(1546)] = 54352, - [SMALL_STATE(1547)] = 54382, - [SMALL_STATE(1548)] = 54404, - [SMALL_STATE(1549)] = 54436, - [SMALL_STATE(1550)] = 54462, - [SMALL_STATE(1551)] = 54492, - [SMALL_STATE(1552)] = 54522, - [SMALL_STATE(1553)] = 54552, - [SMALL_STATE(1554)] = 54584, - [SMALL_STATE(1555)] = 54614, - [SMALL_STATE(1556)] = 54644, - [SMALL_STATE(1557)] = 54674, - [SMALL_STATE(1558)] = 54696, - [SMALL_STATE(1559)] = 54726, - [SMALL_STATE(1560)] = 54752, - [SMALL_STATE(1561)] = 54782, - [SMALL_STATE(1562)] = 54808, - [SMALL_STATE(1563)] = 54838, - [SMALL_STATE(1564)] = 54868, - [SMALL_STATE(1565)] = 54900, - [SMALL_STATE(1566)] = 54930, - [SMALL_STATE(1567)] = 54956, - [SMALL_STATE(1568)] = 54982, - [SMALL_STATE(1569)] = 55012, - [SMALL_STATE(1570)] = 55035, - [SMALL_STATE(1571)] = 55054, - [SMALL_STATE(1572)] = 55081, - [SMALL_STATE(1573)] = 55108, - [SMALL_STATE(1574)] = 55127, - [SMALL_STATE(1575)] = 55154, - [SMALL_STATE(1576)] = 55181, - [SMALL_STATE(1577)] = 55204, - [SMALL_STATE(1578)] = 55227, - [SMALL_STATE(1579)] = 55256, - [SMALL_STATE(1580)] = 55283, - [SMALL_STATE(1581)] = 55306, - [SMALL_STATE(1582)] = 55333, - [SMALL_STATE(1583)] = 55360, - [SMALL_STATE(1584)] = 55381, - [SMALL_STATE(1585)] = 55400, - [SMALL_STATE(1586)] = 55419, - [SMALL_STATE(1587)] = 55448, - [SMALL_STATE(1588)] = 55475, - [SMALL_STATE(1589)] = 55502, - [SMALL_STATE(1590)] = 55529, - [SMALL_STATE(1591)] = 55548, - [SMALL_STATE(1592)] = 55567, - [SMALL_STATE(1593)] = 55586, - [SMALL_STATE(1594)] = 55613, - [SMALL_STATE(1595)] = 55632, - [SMALL_STATE(1596)] = 55651, - [SMALL_STATE(1597)] = 55678, - [SMALL_STATE(1598)] = 55705, - [SMALL_STATE(1599)] = 55726, - [SMALL_STATE(1600)] = 55745, - [SMALL_STATE(1601)] = 55764, - [SMALL_STATE(1602)] = 55791, - [SMALL_STATE(1603)] = 55816, - [SMALL_STATE(1604)] = 55843, - [SMALL_STATE(1605)] = 55872, - [SMALL_STATE(1606)] = 55901, - [SMALL_STATE(1607)] = 55930, - [SMALL_STATE(1608)] = 55959, - [SMALL_STATE(1609)] = 55974, - [SMALL_STATE(1610)] = 55997, - [SMALL_STATE(1611)] = 56011, - [SMALL_STATE(1612)] = 56025, - [SMALL_STATE(1613)] = 56051, - [SMALL_STATE(1614)] = 56073, - [SMALL_STATE(1615)] = 56089, - [SMALL_STATE(1616)] = 56105, - [SMALL_STATE(1617)] = 56121, - [SMALL_STATE(1618)] = 56147, - [SMALL_STATE(1619)] = 56169, - [SMALL_STATE(1620)] = 56195, - [SMALL_STATE(1621)] = 56209, - [SMALL_STATE(1622)] = 56229, - [SMALL_STATE(1623)] = 56255, - [SMALL_STATE(1624)] = 56279, - [SMALL_STATE(1625)] = 56303, - [SMALL_STATE(1626)] = 56329, - [SMALL_STATE(1627)] = 56345, - [SMALL_STATE(1628)] = 56359, - [SMALL_STATE(1629)] = 56373, - [SMALL_STATE(1630)] = 56399, - [SMALL_STATE(1631)] = 56425, - [SMALL_STATE(1632)] = 56451, - [SMALL_STATE(1633)] = 56477, - [SMALL_STATE(1634)] = 56503, - [SMALL_STATE(1635)] = 56529, - [SMALL_STATE(1636)] = 56555, - [SMALL_STATE(1637)] = 56581, - [SMALL_STATE(1638)] = 56605, - [SMALL_STATE(1639)] = 56631, - [SMALL_STATE(1640)] = 56657, - [SMALL_STATE(1641)] = 56673, - [SMALL_STATE(1642)] = 56699, - [SMALL_STATE(1643)] = 56725, - [SMALL_STATE(1644)] = 56749, - [SMALL_STATE(1645)] = 56775, - [SMALL_STATE(1646)] = 56799, - [SMALL_STATE(1647)] = 56813, - [SMALL_STATE(1648)] = 56839, - [SMALL_STATE(1649)] = 56865, - [SMALL_STATE(1650)] = 56891, - [SMALL_STATE(1651)] = 56905, - [SMALL_STATE(1652)] = 56921, - [SMALL_STATE(1653)] = 56947, - [SMALL_STATE(1654)] = 56973, - [SMALL_STATE(1655)] = 56999, - [SMALL_STATE(1656)] = 57015, - [SMALL_STATE(1657)] = 57031, - [SMALL_STATE(1658)] = 57052, - [SMALL_STATE(1659)] = 57075, - [SMALL_STATE(1660)] = 57098, - [SMALL_STATE(1661)] = 57121, - [SMALL_STATE(1662)] = 57144, - [SMALL_STATE(1663)] = 57167, - [SMALL_STATE(1664)] = 57190, - [SMALL_STATE(1665)] = 57213, - [SMALL_STATE(1666)] = 57236, - [SMALL_STATE(1667)] = 57259, - [SMALL_STATE(1668)] = 57278, - [SMALL_STATE(1669)] = 57301, - [SMALL_STATE(1670)] = 57318, - [SMALL_STATE(1671)] = 57341, - [SMALL_STATE(1672)] = 57362, - [SMALL_STATE(1673)] = 57383, - [SMALL_STATE(1674)] = 57404, - [SMALL_STATE(1675)] = 57427, - [SMALL_STATE(1676)] = 57450, - [SMALL_STATE(1677)] = 57473, - [SMALL_STATE(1678)] = 57496, - [SMALL_STATE(1679)] = 57513, - [SMALL_STATE(1680)] = 57536, - [SMALL_STATE(1681)] = 57559, - [SMALL_STATE(1682)] = 57582, - [SMALL_STATE(1683)] = 57605, - [SMALL_STATE(1684)] = 57628, - [SMALL_STATE(1685)] = 57651, - [SMALL_STATE(1686)] = 57674, - [SMALL_STATE(1687)] = 57697, - [SMALL_STATE(1688)] = 57720, - [SMALL_STATE(1689)] = 57743, - [SMALL_STATE(1690)] = 57766, - [SMALL_STATE(1691)] = 57789, - [SMALL_STATE(1692)] = 57812, - [SMALL_STATE(1693)] = 57829, - [SMALL_STATE(1694)] = 57846, - [SMALL_STATE(1695)] = 57867, - [SMALL_STATE(1696)] = 57888, - [SMALL_STATE(1697)] = 57911, - [SMALL_STATE(1698)] = 57928, - [SMALL_STATE(1699)] = 57951, - [SMALL_STATE(1700)] = 57970, - [SMALL_STATE(1701)] = 57987, - [SMALL_STATE(1702)] = 58010, - [SMALL_STATE(1703)] = 58033, - [SMALL_STATE(1704)] = 58056, - [SMALL_STATE(1705)] = 58079, - [SMALL_STATE(1706)] = 58102, - [SMALL_STATE(1707)] = 58125, - [SMALL_STATE(1708)] = 58142, - [SMALL_STATE(1709)] = 58165, - [SMALL_STATE(1710)] = 58188, - [SMALL_STATE(1711)] = 58211, - [SMALL_STATE(1712)] = 58232, - [SMALL_STATE(1713)] = 58255, - [SMALL_STATE(1714)] = 58278, - [SMALL_STATE(1715)] = 58301, - [SMALL_STATE(1716)] = 58324, - [SMALL_STATE(1717)] = 58347, - [SMALL_STATE(1718)] = 58370, - [SMALL_STATE(1719)] = 58387, - [SMALL_STATE(1720)] = 58410, - [SMALL_STATE(1721)] = 58427, - [SMALL_STATE(1722)] = 58450, - [SMALL_STATE(1723)] = 58469, - [SMALL_STATE(1724)] = 58486, - [SMALL_STATE(1725)] = 58509, - [SMALL_STATE(1726)] = 58526, - [SMALL_STATE(1727)] = 58543, - [SMALL_STATE(1728)] = 58566, - [SMALL_STATE(1729)] = 58589, - [SMALL_STATE(1730)] = 58604, - [SMALL_STATE(1731)] = 58627, - [SMALL_STATE(1732)] = 58650, - [SMALL_STATE(1733)] = 58673, - [SMALL_STATE(1734)] = 58696, - [SMALL_STATE(1735)] = 58719, - [SMALL_STATE(1736)] = 58742, - [SMALL_STATE(1737)] = 58765, - [SMALL_STATE(1738)] = 58788, - [SMALL_STATE(1739)] = 58811, - [SMALL_STATE(1740)] = 58828, - [SMALL_STATE(1741)] = 58851, - [SMALL_STATE(1742)] = 58874, - [SMALL_STATE(1743)] = 58889, - [SMALL_STATE(1744)] = 58912, - [SMALL_STATE(1745)] = 58935, - [SMALL_STATE(1746)] = 58958, - [SMALL_STATE(1747)] = 58975, - [SMALL_STATE(1748)] = 58998, - [SMALL_STATE(1749)] = 59021, - [SMALL_STATE(1750)] = 59038, - [SMALL_STATE(1751)] = 59061, - [SMALL_STATE(1752)] = 59084, - [SMALL_STATE(1753)] = 59107, - [SMALL_STATE(1754)] = 59130, - [SMALL_STATE(1755)] = 59150, - [SMALL_STATE(1756)] = 59166, - [SMALL_STATE(1757)] = 59184, - [SMALL_STATE(1758)] = 59196, - [SMALL_STATE(1759)] = 59208, - [SMALL_STATE(1760)] = 59226, - [SMALL_STATE(1761)] = 59244, - [SMALL_STATE(1762)] = 59264, - [SMALL_STATE(1763)] = 59280, - [SMALL_STATE(1764)] = 59292, - [SMALL_STATE(1765)] = 59306, - [SMALL_STATE(1766)] = 59322, - [SMALL_STATE(1767)] = 59338, - [SMALL_STATE(1768)] = 59350, - [SMALL_STATE(1769)] = 59366, - [SMALL_STATE(1770)] = 59378, - [SMALL_STATE(1771)] = 59394, - [SMALL_STATE(1772)] = 59406, - [SMALL_STATE(1773)] = 59426, - [SMALL_STATE(1774)] = 59438, - [SMALL_STATE(1775)] = 59450, - [SMALL_STATE(1776)] = 59462, - [SMALL_STATE(1777)] = 59474, - [SMALL_STATE(1778)] = 59490, - [SMALL_STATE(1779)] = 59506, - [SMALL_STATE(1780)] = 59526, - [SMALL_STATE(1781)] = 59538, - [SMALL_STATE(1782)] = 59558, - [SMALL_STATE(1783)] = 59574, - [SMALL_STATE(1784)] = 59594, - [SMALL_STATE(1785)] = 59614, - [SMALL_STATE(1786)] = 59630, - [SMALL_STATE(1787)] = 59642, - [SMALL_STATE(1788)] = 59660, - [SMALL_STATE(1789)] = 59680, - [SMALL_STATE(1790)] = 59692, - [SMALL_STATE(1791)] = 59708, - [SMALL_STATE(1792)] = 59724, - [SMALL_STATE(1793)] = 59742, - [SMALL_STATE(1794)] = 59754, - [SMALL_STATE(1795)] = 59766, - [SMALL_STATE(1796)] = 59778, - [SMALL_STATE(1797)] = 59794, - [SMALL_STATE(1798)] = 59806, - [SMALL_STATE(1799)] = 59826, - [SMALL_STATE(1800)] = 59838, - [SMALL_STATE(1801)] = 59854, - [SMALL_STATE(1802)] = 59868, - [SMALL_STATE(1803)] = 59884, - [SMALL_STATE(1804)] = 59904, - [SMALL_STATE(1805)] = 59918, - [SMALL_STATE(1806)] = 59936, - [SMALL_STATE(1807)] = 59948, - [SMALL_STATE(1808)] = 59960, - [SMALL_STATE(1809)] = 59972, - [SMALL_STATE(1810)] = 59987, - [SMALL_STATE(1811)] = 60004, - [SMALL_STATE(1812)] = 60021, - [SMALL_STATE(1813)] = 60038, - [SMALL_STATE(1814)] = 60055, - [SMALL_STATE(1815)] = 60072, - [SMALL_STATE(1816)] = 60089, - [SMALL_STATE(1817)] = 60106, - [SMALL_STATE(1818)] = 60123, - [SMALL_STATE(1819)] = 60140, - [SMALL_STATE(1820)] = 60157, - [SMALL_STATE(1821)] = 60174, - [SMALL_STATE(1822)] = 60191, - [SMALL_STATE(1823)] = 60208, - [SMALL_STATE(1824)] = 60225, - [SMALL_STATE(1825)] = 60242, - [SMALL_STATE(1826)] = 60257, - [SMALL_STATE(1827)] = 60274, - [SMALL_STATE(1828)] = 60291, - [SMALL_STATE(1829)] = 60308, - [SMALL_STATE(1830)] = 60325, - [SMALL_STATE(1831)] = 60342, - [SMALL_STATE(1832)] = 60359, - [SMALL_STATE(1833)] = 60374, - [SMALL_STATE(1834)] = 60391, - [SMALL_STATE(1835)] = 60408, - [SMALL_STATE(1836)] = 60425, - [SMALL_STATE(1837)] = 60442, - [SMALL_STATE(1838)] = 60459, - [SMALL_STATE(1839)] = 60472, - [SMALL_STATE(1840)] = 60487, - [SMALL_STATE(1841)] = 60504, - [SMALL_STATE(1842)] = 60521, - [SMALL_STATE(1843)] = 60538, - [SMALL_STATE(1844)] = 60555, - [SMALL_STATE(1845)] = 60572, - [SMALL_STATE(1846)] = 60589, - [SMALL_STATE(1847)] = 60606, - [SMALL_STATE(1848)] = 60623, - [SMALL_STATE(1849)] = 60638, - [SMALL_STATE(1850)] = 60655, - [SMALL_STATE(1851)] = 60672, - [SMALL_STATE(1852)] = 60689, - [SMALL_STATE(1853)] = 60706, - [SMALL_STATE(1854)] = 60721, - [SMALL_STATE(1855)] = 60734, - [SMALL_STATE(1856)] = 60751, - [SMALL_STATE(1857)] = 60766, - [SMALL_STATE(1858)] = 60783, - [SMALL_STATE(1859)] = 60798, - [SMALL_STATE(1860)] = 60813, - [SMALL_STATE(1861)] = 60830, - [SMALL_STATE(1862)] = 60847, - [SMALL_STATE(1863)] = 60862, - [SMALL_STATE(1864)] = 60879, - [SMALL_STATE(1865)] = 60894, - [SMALL_STATE(1866)] = 60911, - [SMALL_STATE(1867)] = 60926, - [SMALL_STATE(1868)] = 60943, - [SMALL_STATE(1869)] = 60960, - [SMALL_STATE(1870)] = 60975, - [SMALL_STATE(1871)] = 60990, - [SMALL_STATE(1872)] = 61007, - [SMALL_STATE(1873)] = 61024, - [SMALL_STATE(1874)] = 61041, - [SMALL_STATE(1875)] = 61054, - [SMALL_STATE(1876)] = 61069, - [SMALL_STATE(1877)] = 61086, - [SMALL_STATE(1878)] = 61101, - [SMALL_STATE(1879)] = 61114, - [SMALL_STATE(1880)] = 61127, - [SMALL_STATE(1881)] = 61144, - [SMALL_STATE(1882)] = 61161, - [SMALL_STATE(1883)] = 61178, - [SMALL_STATE(1884)] = 61193, - [SMALL_STATE(1885)] = 61210, - [SMALL_STATE(1886)] = 61225, - [SMALL_STATE(1887)] = 61242, - [SMALL_STATE(1888)] = 61255, - [SMALL_STATE(1889)] = 61272, - [SMALL_STATE(1890)] = 61285, - [SMALL_STATE(1891)] = 61300, - [SMALL_STATE(1892)] = 61317, - [SMALL_STATE(1893)] = 61332, - [SMALL_STATE(1894)] = 61345, - [SMALL_STATE(1895)] = 61362, - [SMALL_STATE(1896)] = 61379, - [SMALL_STATE(1897)] = 61394, - [SMALL_STATE(1898)] = 61411, - [SMALL_STATE(1899)] = 61428, - [SMALL_STATE(1900)] = 61445, - [SMALL_STATE(1901)] = 61460, - [SMALL_STATE(1902)] = 61477, - [SMALL_STATE(1903)] = 61494, - [SMALL_STATE(1904)] = 61511, - [SMALL_STATE(1905)] = 61528, - [SMALL_STATE(1906)] = 61540, - [SMALL_STATE(1907)] = 61552, - [SMALL_STATE(1908)] = 61566, - [SMALL_STATE(1909)] = 61580, - [SMALL_STATE(1910)] = 61594, - [SMALL_STATE(1911)] = 61608, - [SMALL_STATE(1912)] = 61622, - [SMALL_STATE(1913)] = 61636, - [SMALL_STATE(1914)] = 61650, - [SMALL_STATE(1915)] = 61660, - [SMALL_STATE(1916)] = 61674, - [SMALL_STATE(1917)] = 61688, - [SMALL_STATE(1918)] = 61702, - [SMALL_STATE(1919)] = 61716, - [SMALL_STATE(1920)] = 61730, - [SMALL_STATE(1921)] = 61744, - [SMALL_STATE(1922)] = 61758, - [SMALL_STATE(1923)] = 61772, - [SMALL_STATE(1924)] = 61782, - [SMALL_STATE(1925)] = 61796, - [SMALL_STATE(1926)] = 61810, - [SMALL_STATE(1927)] = 61824, - [SMALL_STATE(1928)] = 61838, - [SMALL_STATE(1929)] = 61852, - [SMALL_STATE(1930)] = 61864, - [SMALL_STATE(1931)] = 61878, - [SMALL_STATE(1932)] = 61892, - [SMALL_STATE(1933)] = 61906, - [SMALL_STATE(1934)] = 61920, - [SMALL_STATE(1935)] = 61934, - [SMALL_STATE(1936)] = 61946, - [SMALL_STATE(1937)] = 61960, - [SMALL_STATE(1938)] = 61972, - [SMALL_STATE(1939)] = 61986, - [SMALL_STATE(1940)] = 62000, - [SMALL_STATE(1941)] = 62014, - [SMALL_STATE(1942)] = 62028, - [SMALL_STATE(1943)] = 62042, - [SMALL_STATE(1944)] = 62056, - [SMALL_STATE(1945)] = 62066, - [SMALL_STATE(1946)] = 62080, - [SMALL_STATE(1947)] = 62090, - [SMALL_STATE(1948)] = 62104, - [SMALL_STATE(1949)] = 62118, - [SMALL_STATE(1950)] = 62132, - [SMALL_STATE(1951)] = 62146, - [SMALL_STATE(1952)] = 62160, - [SMALL_STATE(1953)] = 62172, - [SMALL_STATE(1954)] = 62186, - [SMALL_STATE(1955)] = 62200, - [SMALL_STATE(1956)] = 62212, - [SMALL_STATE(1957)] = 62226, - [SMALL_STATE(1958)] = 62240, - [SMALL_STATE(1959)] = 62252, - [SMALL_STATE(1960)] = 62266, - [SMALL_STATE(1961)] = 62278, - [SMALL_STATE(1962)] = 62292, - [SMALL_STATE(1963)] = 62306, - [SMALL_STATE(1964)] = 62316, - [SMALL_STATE(1965)] = 62330, - [SMALL_STATE(1966)] = 62342, - [SMALL_STATE(1967)] = 62354, - [SMALL_STATE(1968)] = 62368, - [SMALL_STATE(1969)] = 62378, - [SMALL_STATE(1970)] = 62392, - [SMALL_STATE(1971)] = 62406, - [SMALL_STATE(1972)] = 62418, - [SMALL_STATE(1973)] = 62432, - [SMALL_STATE(1974)] = 62446, - [SMALL_STATE(1975)] = 62456, - [SMALL_STATE(1976)] = 62468, - [SMALL_STATE(1977)] = 62478, - [SMALL_STATE(1978)] = 62492, - [SMALL_STATE(1979)] = 62506, - [SMALL_STATE(1980)] = 62520, - [SMALL_STATE(1981)] = 62534, - [SMALL_STATE(1982)] = 62548, - [SMALL_STATE(1983)] = 62562, - [SMALL_STATE(1984)] = 62574, - [SMALL_STATE(1985)] = 62588, - [SMALL_STATE(1986)] = 62598, - [SMALL_STATE(1987)] = 62612, - [SMALL_STATE(1988)] = 62626, - [SMALL_STATE(1989)] = 62640, - [SMALL_STATE(1990)] = 62654, - [SMALL_STATE(1991)] = 62668, - [SMALL_STATE(1992)] = 62682, - [SMALL_STATE(1993)] = 62696, - [SMALL_STATE(1994)] = 62710, - [SMALL_STATE(1995)] = 62724, - [SMALL_STATE(1996)] = 62738, - [SMALL_STATE(1997)] = 62752, - [SMALL_STATE(1998)] = 62766, - [SMALL_STATE(1999)] = 62776, - [SMALL_STATE(2000)] = 62790, - [SMALL_STATE(2001)] = 62804, - [SMALL_STATE(2002)] = 62818, - [SMALL_STATE(2003)] = 62830, - [SMALL_STATE(2004)] = 62844, - [SMALL_STATE(2005)] = 62858, - [SMALL_STATE(2006)] = 62872, - [SMALL_STATE(2007)] = 62884, - [SMALL_STATE(2008)] = 62898, - [SMALL_STATE(2009)] = 62912, - [SMALL_STATE(2010)] = 62924, - [SMALL_STATE(2011)] = 62938, - [SMALL_STATE(2012)] = 62952, - [SMALL_STATE(2013)] = 62966, - [SMALL_STATE(2014)] = 62980, - [SMALL_STATE(2015)] = 62994, - [SMALL_STATE(2016)] = 63008, - [SMALL_STATE(2017)] = 63022, - [SMALL_STATE(2018)] = 63032, - [SMALL_STATE(2019)] = 63044, - [SMALL_STATE(2020)] = 63054, - [SMALL_STATE(2021)] = 63068, - [SMALL_STATE(2022)] = 63082, - [SMALL_STATE(2023)] = 63092, - [SMALL_STATE(2024)] = 63106, - [SMALL_STATE(2025)] = 63120, - [SMALL_STATE(2026)] = 63134, - [SMALL_STATE(2027)] = 63146, - [SMALL_STATE(2028)] = 63160, - [SMALL_STATE(2029)] = 63174, - [SMALL_STATE(2030)] = 63188, - [SMALL_STATE(2031)] = 63202, - [SMALL_STATE(2032)] = 63214, - [SMALL_STATE(2033)] = 63228, - [SMALL_STATE(2034)] = 63242, - [SMALL_STATE(2035)] = 63256, - [SMALL_STATE(2036)] = 63270, - [SMALL_STATE(2037)] = 63284, - [SMALL_STATE(2038)] = 63298, - [SMALL_STATE(2039)] = 63312, - [SMALL_STATE(2040)] = 63326, - [SMALL_STATE(2041)] = 63340, - [SMALL_STATE(2042)] = 63354, - [SMALL_STATE(2043)] = 63368, - [SMALL_STATE(2044)] = 63382, - [SMALL_STATE(2045)] = 63396, - [SMALL_STATE(2046)] = 63410, - [SMALL_STATE(2047)] = 63422, - [SMALL_STATE(2048)] = 63436, - [SMALL_STATE(2049)] = 63446, - [SMALL_STATE(2050)] = 63460, - [SMALL_STATE(2051)] = 63474, - [SMALL_STATE(2052)] = 63488, - [SMALL_STATE(2053)] = 63502, - [SMALL_STATE(2054)] = 63516, - [SMALL_STATE(2055)] = 63530, - [SMALL_STATE(2056)] = 63544, - [SMALL_STATE(2057)] = 63558, - [SMALL_STATE(2058)] = 63572, - [SMALL_STATE(2059)] = 63584, - [SMALL_STATE(2060)] = 63598, - [SMALL_STATE(2061)] = 63610, - [SMALL_STATE(2062)] = 63624, - [SMALL_STATE(2063)] = 63638, - [SMALL_STATE(2064)] = 63652, - [SMALL_STATE(2065)] = 63666, - [SMALL_STATE(2066)] = 63678, - [SMALL_STATE(2067)] = 63688, - [SMALL_STATE(2068)] = 63702, - [SMALL_STATE(2069)] = 63716, - [SMALL_STATE(2070)] = 63726, - [SMALL_STATE(2071)] = 63738, - [SMALL_STATE(2072)] = 63752, - [SMALL_STATE(2073)] = 63762, - [SMALL_STATE(2074)] = 63776, - [SMALL_STATE(2075)] = 63786, - [SMALL_STATE(2076)] = 63796, - [SMALL_STATE(2077)] = 63810, - [SMALL_STATE(2078)] = 63820, - [SMALL_STATE(2079)] = 63834, - [SMALL_STATE(2080)] = 63848, - [SMALL_STATE(2081)] = 63862, - [SMALL_STATE(2082)] = 63876, - [SMALL_STATE(2083)] = 63890, - [SMALL_STATE(2084)] = 63904, - [SMALL_STATE(2085)] = 63914, - [SMALL_STATE(2086)] = 63928, - [SMALL_STATE(2087)] = 63942, - [SMALL_STATE(2088)] = 63956, - [SMALL_STATE(2089)] = 63966, - [SMALL_STATE(2090)] = 63978, - [SMALL_STATE(2091)] = 63992, - [SMALL_STATE(2092)] = 64006, - [SMALL_STATE(2093)] = 64016, - [SMALL_STATE(2094)] = 64030, - [SMALL_STATE(2095)] = 64044, - [SMALL_STATE(2096)] = 64058, - [SMALL_STATE(2097)] = 64072, - [SMALL_STATE(2098)] = 64086, - [SMALL_STATE(2099)] = 64096, - [SMALL_STATE(2100)] = 64110, - [SMALL_STATE(2101)] = 64124, - [SMALL_STATE(2102)] = 64138, - [SMALL_STATE(2103)] = 64148, - [SMALL_STATE(2104)] = 64162, - [SMALL_STATE(2105)] = 64176, - [SMALL_STATE(2106)] = 64190, - [SMALL_STATE(2107)] = 64204, - [SMALL_STATE(2108)] = 64218, - [SMALL_STATE(2109)] = 64230, - [SMALL_STATE(2110)] = 64244, - [SMALL_STATE(2111)] = 64258, - [SMALL_STATE(2112)] = 64272, - [SMALL_STATE(2113)] = 64286, - [SMALL_STATE(2114)] = 64298, - [SMALL_STATE(2115)] = 64312, - [SMALL_STATE(2116)] = 64326, - [SMALL_STATE(2117)] = 64336, - [SMALL_STATE(2118)] = 64350, - [SMALL_STATE(2119)] = 64364, - [SMALL_STATE(2120)] = 64378, - [SMALL_STATE(2121)] = 64392, - [SMALL_STATE(2122)] = 64406, - [SMALL_STATE(2123)] = 64420, - [SMALL_STATE(2124)] = 64434, - [SMALL_STATE(2125)] = 64444, - [SMALL_STATE(2126)] = 64458, - [SMALL_STATE(2127)] = 64472, - [SMALL_STATE(2128)] = 64486, - [SMALL_STATE(2129)] = 64500, - [SMALL_STATE(2130)] = 64514, - [SMALL_STATE(2131)] = 64528, - [SMALL_STATE(2132)] = 64542, - [SMALL_STATE(2133)] = 64556, - [SMALL_STATE(2134)] = 64570, - [SMALL_STATE(2135)] = 64580, - [SMALL_STATE(2136)] = 64592, - [SMALL_STATE(2137)] = 64606, - [SMALL_STATE(2138)] = 64620, - [SMALL_STATE(2139)] = 64632, - [SMALL_STATE(2140)] = 64646, - [SMALL_STATE(2141)] = 64660, - [SMALL_STATE(2142)] = 64672, - [SMALL_STATE(2143)] = 64686, - [SMALL_STATE(2144)] = 64700, - [SMALL_STATE(2145)] = 64712, - [SMALL_STATE(2146)] = 64726, - [SMALL_STATE(2147)] = 64738, - [SMALL_STATE(2148)] = 64752, - [SMALL_STATE(2149)] = 64764, - [SMALL_STATE(2150)] = 64778, - [SMALL_STATE(2151)] = 64792, - [SMALL_STATE(2152)] = 64806, - [SMALL_STATE(2153)] = 64820, - [SMALL_STATE(2154)] = 64834, - [SMALL_STATE(2155)] = 64848, - [SMALL_STATE(2156)] = 64862, - [SMALL_STATE(2157)] = 64872, - [SMALL_STATE(2158)] = 64886, - [SMALL_STATE(2159)] = 64900, - [SMALL_STATE(2160)] = 64914, - [SMALL_STATE(2161)] = 64928, - [SMALL_STATE(2162)] = 64940, - [SMALL_STATE(2163)] = 64954, - [SMALL_STATE(2164)] = 64968, - [SMALL_STATE(2165)] = 64979, - [SMALL_STATE(2166)] = 64990, - [SMALL_STATE(2167)] = 65001, - [SMALL_STATE(2168)] = 65012, - [SMALL_STATE(2169)] = 65021, - [SMALL_STATE(2170)] = 65032, - [SMALL_STATE(2171)] = 65043, - [SMALL_STATE(2172)] = 65054, - [SMALL_STATE(2173)] = 65065, - [SMALL_STATE(2174)] = 65076, - [SMALL_STATE(2175)] = 65087, - [SMALL_STATE(2176)] = 65098, - [SMALL_STATE(2177)] = 65107, - [SMALL_STATE(2178)] = 65118, - [SMALL_STATE(2179)] = 65129, - [SMALL_STATE(2180)] = 65140, - [SMALL_STATE(2181)] = 65151, - [SMALL_STATE(2182)] = 65162, - [SMALL_STATE(2183)] = 65173, - [SMALL_STATE(2184)] = 65184, - [SMALL_STATE(2185)] = 65195, - [SMALL_STATE(2186)] = 65206, - [SMALL_STATE(2187)] = 65217, - [SMALL_STATE(2188)] = 65228, - [SMALL_STATE(2189)] = 65239, - [SMALL_STATE(2190)] = 65250, - [SMALL_STATE(2191)] = 65261, - [SMALL_STATE(2192)] = 65272, - [SMALL_STATE(2193)] = 65283, - [SMALL_STATE(2194)] = 65292, - [SMALL_STATE(2195)] = 65303, - [SMALL_STATE(2196)] = 65314, - [SMALL_STATE(2197)] = 65325, - [SMALL_STATE(2198)] = 65334, - [SMALL_STATE(2199)] = 65345, - [SMALL_STATE(2200)] = 65356, - [SMALL_STATE(2201)] = 65367, - [SMALL_STATE(2202)] = 65378, - [SMALL_STATE(2203)] = 65389, - [SMALL_STATE(2204)] = 65400, - [SMALL_STATE(2205)] = 65411, - [SMALL_STATE(2206)] = 65422, - [SMALL_STATE(2207)] = 65433, - [SMALL_STATE(2208)] = 65444, - [SMALL_STATE(2209)] = 65455, - [SMALL_STATE(2210)] = 65466, - [SMALL_STATE(2211)] = 65477, - [SMALL_STATE(2212)] = 65486, - [SMALL_STATE(2213)] = 65497, - [SMALL_STATE(2214)] = 65508, - [SMALL_STATE(2215)] = 65519, - [SMALL_STATE(2216)] = 65530, - [SMALL_STATE(2217)] = 65541, - [SMALL_STATE(2218)] = 65552, - [SMALL_STATE(2219)] = 65563, - [SMALL_STATE(2220)] = 65574, - [SMALL_STATE(2221)] = 65585, - [SMALL_STATE(2222)] = 65596, - [SMALL_STATE(2223)] = 65607, - [SMALL_STATE(2224)] = 65618, - [SMALL_STATE(2225)] = 65629, - [SMALL_STATE(2226)] = 65640, - [SMALL_STATE(2227)] = 65651, - [SMALL_STATE(2228)] = 65662, - [SMALL_STATE(2229)] = 65673, - [SMALL_STATE(2230)] = 65684, - [SMALL_STATE(2231)] = 65695, - [SMALL_STATE(2232)] = 65706, - [SMALL_STATE(2233)] = 65717, - [SMALL_STATE(2234)] = 65728, - [SMALL_STATE(2235)] = 65739, - [SMALL_STATE(2236)] = 65750, - [SMALL_STATE(2237)] = 65759, - [SMALL_STATE(2238)] = 65768, - [SMALL_STATE(2239)] = 65777, - [SMALL_STATE(2240)] = 65788, - [SMALL_STATE(2241)] = 65799, - [SMALL_STATE(2242)] = 65808, - [SMALL_STATE(2243)] = 65819, - [SMALL_STATE(2244)] = 65830, - [SMALL_STATE(2245)] = 65839, - [SMALL_STATE(2246)] = 65850, - [SMALL_STATE(2247)] = 65859, - [SMALL_STATE(2248)] = 65870, - [SMALL_STATE(2249)] = 65881, - [SMALL_STATE(2250)] = 65892, - [SMALL_STATE(2251)] = 65903, - [SMALL_STATE(2252)] = 65912, - [SMALL_STATE(2253)] = 65921, - [SMALL_STATE(2254)] = 65930, - [SMALL_STATE(2255)] = 65941, - [SMALL_STATE(2256)] = 65952, - [SMALL_STATE(2257)] = 65961, - [SMALL_STATE(2258)] = 65972, - [SMALL_STATE(2259)] = 65983, - [SMALL_STATE(2260)] = 65994, - [SMALL_STATE(2261)] = 66005, - [SMALL_STATE(2262)] = 66016, - [SMALL_STATE(2263)] = 66027, - [SMALL_STATE(2264)] = 66038, - [SMALL_STATE(2265)] = 66049, - [SMALL_STATE(2266)] = 66060, - [SMALL_STATE(2267)] = 66071, - [SMALL_STATE(2268)] = 66082, - [SMALL_STATE(2269)] = 66093, - [SMALL_STATE(2270)] = 66104, - [SMALL_STATE(2271)] = 66115, - [SMALL_STATE(2272)] = 66126, - [SMALL_STATE(2273)] = 66137, - [SMALL_STATE(2274)] = 66148, - [SMALL_STATE(2275)] = 66157, - [SMALL_STATE(2276)] = 66168, - [SMALL_STATE(2277)] = 66177, - [SMALL_STATE(2278)] = 66186, - [SMALL_STATE(2279)] = 66197, - [SMALL_STATE(2280)] = 66208, - [SMALL_STATE(2281)] = 66219, - [SMALL_STATE(2282)] = 66230, - [SMALL_STATE(2283)] = 66241, - [SMALL_STATE(2284)] = 66252, - [SMALL_STATE(2285)] = 66263, - [SMALL_STATE(2286)] = 66272, - [SMALL_STATE(2287)] = 66283, - [SMALL_STATE(2288)] = 66294, - [SMALL_STATE(2289)] = 66305, - [SMALL_STATE(2290)] = 66316, - [SMALL_STATE(2291)] = 66327, - [SMALL_STATE(2292)] = 66338, - [SMALL_STATE(2293)] = 66349, - [SMALL_STATE(2294)] = 66358, - [SMALL_STATE(2295)] = 66369, - [SMALL_STATE(2296)] = 66380, - [SMALL_STATE(2297)] = 66391, - [SMALL_STATE(2298)] = 66402, - [SMALL_STATE(2299)] = 66411, - [SMALL_STATE(2300)] = 66422, - [SMALL_STATE(2301)] = 66433, - [SMALL_STATE(2302)] = 66444, - [SMALL_STATE(2303)] = 66455, - [SMALL_STATE(2304)] = 66466, - [SMALL_STATE(2305)] = 66477, - [SMALL_STATE(2306)] = 66488, - [SMALL_STATE(2307)] = 66497, - [SMALL_STATE(2308)] = 66508, - [SMALL_STATE(2309)] = 66519, - [SMALL_STATE(2310)] = 66530, - [SMALL_STATE(2311)] = 66541, - [SMALL_STATE(2312)] = 66552, - [SMALL_STATE(2313)] = 66563, - [SMALL_STATE(2314)] = 66574, - [SMALL_STATE(2315)] = 66585, - [SMALL_STATE(2316)] = 66596, - [SMALL_STATE(2317)] = 66607, - [SMALL_STATE(2318)] = 66618, - [SMALL_STATE(2319)] = 66629, - [SMALL_STATE(2320)] = 66638, - [SMALL_STATE(2321)] = 66649, - [SMALL_STATE(2322)] = 66658, - [SMALL_STATE(2323)] = 66669, - [SMALL_STATE(2324)] = 66678, - [SMALL_STATE(2325)] = 66689, - [SMALL_STATE(2326)] = 66700, - [SMALL_STATE(2327)] = 66711, - [SMALL_STATE(2328)] = 66722, - [SMALL_STATE(2329)] = 66733, - [SMALL_STATE(2330)] = 66744, - [SMALL_STATE(2331)] = 66755, - [SMALL_STATE(2332)] = 66766, - [SMALL_STATE(2333)] = 66777, - [SMALL_STATE(2334)] = 66788, - [SMALL_STATE(2335)] = 66799, - [SMALL_STATE(2336)] = 66810, - [SMALL_STATE(2337)] = 66819, - [SMALL_STATE(2338)] = 66830, - [SMALL_STATE(2339)] = 66841, - [SMALL_STATE(2340)] = 66850, - [SMALL_STATE(2341)] = 66861, - [SMALL_STATE(2342)] = 66870, - [SMALL_STATE(2343)] = 66879, - [SMALL_STATE(2344)] = 66890, - [SMALL_STATE(2345)] = 66901, - [SMALL_STATE(2346)] = 66912, - [SMALL_STATE(2347)] = 66923, - [SMALL_STATE(2348)] = 66934, - [SMALL_STATE(2349)] = 66945, - [SMALL_STATE(2350)] = 66956, - [SMALL_STATE(2351)] = 66967, - [SMALL_STATE(2352)] = 66978, - [SMALL_STATE(2353)] = 66989, - [SMALL_STATE(2354)] = 67000, - [SMALL_STATE(2355)] = 67011, - [SMALL_STATE(2356)] = 67022, - [SMALL_STATE(2357)] = 67033, - [SMALL_STATE(2358)] = 67044, - [SMALL_STATE(2359)] = 67055, - [SMALL_STATE(2360)] = 67066, - [SMALL_STATE(2361)] = 67077, - [SMALL_STATE(2362)] = 67088, - [SMALL_STATE(2363)] = 67097, - [SMALL_STATE(2364)] = 67108, - [SMALL_STATE(2365)] = 67119, - [SMALL_STATE(2366)] = 67130, - [SMALL_STATE(2367)] = 67141, - [SMALL_STATE(2368)] = 67152, - [SMALL_STATE(2369)] = 67160, - [SMALL_STATE(2370)] = 67168, - [SMALL_STATE(2371)] = 67176, - [SMALL_STATE(2372)] = 67184, - [SMALL_STATE(2373)] = 67192, - [SMALL_STATE(2374)] = 67200, - [SMALL_STATE(2375)] = 67208, - [SMALL_STATE(2376)] = 67216, - [SMALL_STATE(2377)] = 67224, - [SMALL_STATE(2378)] = 67232, - [SMALL_STATE(2379)] = 67240, - [SMALL_STATE(2380)] = 67248, - [SMALL_STATE(2381)] = 67256, - [SMALL_STATE(2382)] = 67264, - [SMALL_STATE(2383)] = 67272, - [SMALL_STATE(2384)] = 67280, - [SMALL_STATE(2385)] = 67288, - [SMALL_STATE(2386)] = 67296, - [SMALL_STATE(2387)] = 67304, - [SMALL_STATE(2388)] = 67312, - [SMALL_STATE(2389)] = 67320, - [SMALL_STATE(2390)] = 67328, - [SMALL_STATE(2391)] = 67336, - [SMALL_STATE(2392)] = 67344, - [SMALL_STATE(2393)] = 67352, - [SMALL_STATE(2394)] = 67360, - [SMALL_STATE(2395)] = 67368, - [SMALL_STATE(2396)] = 67376, - [SMALL_STATE(2397)] = 67384, - [SMALL_STATE(2398)] = 67392, - [SMALL_STATE(2399)] = 67400, - [SMALL_STATE(2400)] = 67408, - [SMALL_STATE(2401)] = 67416, - [SMALL_STATE(2402)] = 67424, - [SMALL_STATE(2403)] = 67432, - [SMALL_STATE(2404)] = 67440, - [SMALL_STATE(2405)] = 67448, - [SMALL_STATE(2406)] = 67456, - [SMALL_STATE(2407)] = 67464, - [SMALL_STATE(2408)] = 67472, - [SMALL_STATE(2409)] = 67480, - [SMALL_STATE(2410)] = 67488, - [SMALL_STATE(2411)] = 67496, - [SMALL_STATE(2412)] = 67504, - [SMALL_STATE(2413)] = 67512, - [SMALL_STATE(2414)] = 67520, - [SMALL_STATE(2415)] = 67528, - [SMALL_STATE(2416)] = 67536, - [SMALL_STATE(2417)] = 67544, - [SMALL_STATE(2418)] = 67552, - [SMALL_STATE(2419)] = 67560, - [SMALL_STATE(2420)] = 67568, - [SMALL_STATE(2421)] = 67576, - [SMALL_STATE(2422)] = 67584, - [SMALL_STATE(2423)] = 67592, - [SMALL_STATE(2424)] = 67600, - [SMALL_STATE(2425)] = 67608, - [SMALL_STATE(2426)] = 67616, - [SMALL_STATE(2427)] = 67624, - [SMALL_STATE(2428)] = 67632, - [SMALL_STATE(2429)] = 67640, - [SMALL_STATE(2430)] = 67648, - [SMALL_STATE(2431)] = 67656, - [SMALL_STATE(2432)] = 67664, - [SMALL_STATE(2433)] = 67672, - [SMALL_STATE(2434)] = 67680, - [SMALL_STATE(2435)] = 67688, - [SMALL_STATE(2436)] = 67696, - [SMALL_STATE(2437)] = 67704, - [SMALL_STATE(2438)] = 67712, - [SMALL_STATE(2439)] = 67720, - [SMALL_STATE(2440)] = 67728, - [SMALL_STATE(2441)] = 67736, - [SMALL_STATE(2442)] = 67744, - [SMALL_STATE(2443)] = 67752, - [SMALL_STATE(2444)] = 67760, - [SMALL_STATE(2445)] = 67768, - [SMALL_STATE(2446)] = 67776, - [SMALL_STATE(2447)] = 67784, - [SMALL_STATE(2448)] = 67792, - [SMALL_STATE(2449)] = 67800, - [SMALL_STATE(2450)] = 67808, - [SMALL_STATE(2451)] = 67816, - [SMALL_STATE(2452)] = 67824, - [SMALL_STATE(2453)] = 67832, - [SMALL_STATE(2454)] = 67840, - [SMALL_STATE(2455)] = 67848, - [SMALL_STATE(2456)] = 67856, - [SMALL_STATE(2457)] = 67864, - [SMALL_STATE(2458)] = 67872, - [SMALL_STATE(2459)] = 67880, - [SMALL_STATE(2460)] = 67888, - [SMALL_STATE(2461)] = 67896, - [SMALL_STATE(2462)] = 67904, - [SMALL_STATE(2463)] = 67912, - [SMALL_STATE(2464)] = 67920, - [SMALL_STATE(2465)] = 67928, - [SMALL_STATE(2466)] = 67936, - [SMALL_STATE(2467)] = 67944, - [SMALL_STATE(2468)] = 67952, - [SMALL_STATE(2469)] = 67960, - [SMALL_STATE(2470)] = 67968, - [SMALL_STATE(2471)] = 67976, - [SMALL_STATE(2472)] = 67984, - [SMALL_STATE(2473)] = 67992, - [SMALL_STATE(2474)] = 68000, - [SMALL_STATE(2475)] = 68008, - [SMALL_STATE(2476)] = 68016, - [SMALL_STATE(2477)] = 68024, - [SMALL_STATE(2478)] = 68032, - [SMALL_STATE(2479)] = 68040, - [SMALL_STATE(2480)] = 68048, - [SMALL_STATE(2481)] = 68056, - [SMALL_STATE(2482)] = 68064, - [SMALL_STATE(2483)] = 68072, - [SMALL_STATE(2484)] = 68080, - [SMALL_STATE(2485)] = 68088, - [SMALL_STATE(2486)] = 68096, - [SMALL_STATE(2487)] = 68104, - [SMALL_STATE(2488)] = 68112, - [SMALL_STATE(2489)] = 68120, - [SMALL_STATE(2490)] = 68128, - [SMALL_STATE(2491)] = 68136, - [SMALL_STATE(2492)] = 68144, - [SMALL_STATE(2493)] = 68152, - [SMALL_STATE(2494)] = 68160, - [SMALL_STATE(2495)] = 68168, - [SMALL_STATE(2496)] = 68176, - [SMALL_STATE(2497)] = 68184, - [SMALL_STATE(2498)] = 68192, - [SMALL_STATE(2499)] = 68200, - [SMALL_STATE(2500)] = 68208, - [SMALL_STATE(2501)] = 68216, - [SMALL_STATE(2502)] = 68224, - [SMALL_STATE(2503)] = 68232, - [SMALL_STATE(2504)] = 68240, - [SMALL_STATE(2505)] = 68248, - [SMALL_STATE(2506)] = 68256, - [SMALL_STATE(2507)] = 68264, - [SMALL_STATE(2508)] = 68272, - [SMALL_STATE(2509)] = 68280, - [SMALL_STATE(2510)] = 68288, - [SMALL_STATE(2511)] = 68296, - [SMALL_STATE(2512)] = 68304, - [SMALL_STATE(2513)] = 68312, - [SMALL_STATE(2514)] = 68320, - [SMALL_STATE(2515)] = 68328, - [SMALL_STATE(2516)] = 68336, - [SMALL_STATE(2517)] = 68344, - [SMALL_STATE(2518)] = 68352, - [SMALL_STATE(2519)] = 68360, - [SMALL_STATE(2520)] = 68368, - [SMALL_STATE(2521)] = 68376, - [SMALL_STATE(2522)] = 68384, - [SMALL_STATE(2523)] = 68392, - [SMALL_STATE(2524)] = 68400, - [SMALL_STATE(2525)] = 68408, - [SMALL_STATE(2526)] = 68416, - [SMALL_STATE(2527)] = 68424, - [SMALL_STATE(2528)] = 68432, - [SMALL_STATE(2529)] = 68440, - [SMALL_STATE(2530)] = 68448, - [SMALL_STATE(2531)] = 68456, - [SMALL_STATE(2532)] = 68464, - [SMALL_STATE(2533)] = 68472, - [SMALL_STATE(2534)] = 68480, - [SMALL_STATE(2535)] = 68488, - [SMALL_STATE(2536)] = 68496, - [SMALL_STATE(2537)] = 68504, - [SMALL_STATE(2538)] = 68512, - [SMALL_STATE(2539)] = 68520, - [SMALL_STATE(2540)] = 68528, - [SMALL_STATE(2541)] = 68536, - [SMALL_STATE(2542)] = 68544, - [SMALL_STATE(2543)] = 68552, - [SMALL_STATE(2544)] = 68560, - [SMALL_STATE(2545)] = 68568, - [SMALL_STATE(2546)] = 68576, - [SMALL_STATE(2547)] = 68584, - [SMALL_STATE(2548)] = 68592, - [SMALL_STATE(2549)] = 68600, - [SMALL_STATE(2550)] = 68608, - [SMALL_STATE(2551)] = 68616, - [SMALL_STATE(2552)] = 68624, - [SMALL_STATE(2553)] = 68632, - [SMALL_STATE(2554)] = 68640, - [SMALL_STATE(2555)] = 68648, - [SMALL_STATE(2556)] = 68656, - [SMALL_STATE(2557)] = 68664, - [SMALL_STATE(2558)] = 68672, - [SMALL_STATE(2559)] = 68680, - [SMALL_STATE(2560)] = 68688, - [SMALL_STATE(2561)] = 68696, - [SMALL_STATE(2562)] = 68704, - [SMALL_STATE(2563)] = 68712, - [SMALL_STATE(2564)] = 68720, - [SMALL_STATE(2565)] = 68728, - [SMALL_STATE(2566)] = 68736, - [SMALL_STATE(2567)] = 68744, - [SMALL_STATE(2568)] = 68752, - [SMALL_STATE(2569)] = 68760, - [SMALL_STATE(2570)] = 68768, - [SMALL_STATE(2571)] = 68776, - [SMALL_STATE(2572)] = 68784, - [SMALL_STATE(2573)] = 68792, - [SMALL_STATE(2574)] = 68800, - [SMALL_STATE(2575)] = 68808, - [SMALL_STATE(2576)] = 68816, - [SMALL_STATE(2577)] = 68824, - [SMALL_STATE(2578)] = 68832, - [SMALL_STATE(2579)] = 68840, - [SMALL_STATE(2580)] = 68848, - [SMALL_STATE(2581)] = 68856, - [SMALL_STATE(2582)] = 68864, - [SMALL_STATE(2583)] = 68872, - [SMALL_STATE(2584)] = 68880, - [SMALL_STATE(2585)] = 68888, - [SMALL_STATE(2586)] = 68896, - [SMALL_STATE(2587)] = 68904, - [SMALL_STATE(2588)] = 68912, - [SMALL_STATE(2589)] = 68920, - [SMALL_STATE(2590)] = 68928, - [SMALL_STATE(2591)] = 68936, - [SMALL_STATE(2592)] = 68944, - [SMALL_STATE(2593)] = 68952, - [SMALL_STATE(2594)] = 68960, - [SMALL_STATE(2595)] = 68968, - [SMALL_STATE(2596)] = 68976, - [SMALL_STATE(2597)] = 68984, - [SMALL_STATE(2598)] = 68992, - [SMALL_STATE(2599)] = 69000, - [SMALL_STATE(2600)] = 69008, - [SMALL_STATE(2601)] = 69016, - [SMALL_STATE(2602)] = 69024, - [SMALL_STATE(2603)] = 69032, - [SMALL_STATE(2604)] = 69040, - [SMALL_STATE(2605)] = 69048, - [SMALL_STATE(2606)] = 69056, - [SMALL_STATE(2607)] = 69064, - [SMALL_STATE(2608)] = 69072, - [SMALL_STATE(2609)] = 69080, - [SMALL_STATE(2610)] = 69088, - [SMALL_STATE(2611)] = 69096, - [SMALL_STATE(2612)] = 69104, - [SMALL_STATE(2613)] = 69112, - [SMALL_STATE(2614)] = 69120, - [SMALL_STATE(2615)] = 69128, - [SMALL_STATE(2616)] = 69136, - [SMALL_STATE(2617)] = 69144, - [SMALL_STATE(2618)] = 69152, - [SMALL_STATE(2619)] = 69160, + [SMALL_STATE(657)] = 0, + [SMALL_STATE(658)] = 129, + [SMALL_STATE(659)] = 258, + [SMALL_STATE(660)] = 387, + [SMALL_STATE(661)] = 516, + [SMALL_STATE(662)] = 645, + [SMALL_STATE(663)] = 774, + [SMALL_STATE(664)] = 903, + [SMALL_STATE(665)] = 1032, + [SMALL_STATE(666)] = 1161, + [SMALL_STATE(667)] = 1290, + [SMALL_STATE(668)] = 1419, + [SMALL_STATE(669)] = 1548, + [SMALL_STATE(670)] = 1677, + [SMALL_STATE(671)] = 1806, + [SMALL_STATE(672)] = 1935, + [SMALL_STATE(673)] = 2064, + [SMALL_STATE(674)] = 2193, + [SMALL_STATE(675)] = 2322, + [SMALL_STATE(676)] = 2451, + [SMALL_STATE(677)] = 2580, + [SMALL_STATE(678)] = 2709, + [SMALL_STATE(679)] = 2838, + [SMALL_STATE(680)] = 2967, + [SMALL_STATE(681)] = 3096, + [SMALL_STATE(682)] = 3225, + [SMALL_STATE(683)] = 3354, + [SMALL_STATE(684)] = 3483, + [SMALL_STATE(685)] = 3612, + [SMALL_STATE(686)] = 3741, + [SMALL_STATE(687)] = 3870, + [SMALL_STATE(688)] = 3999, + [SMALL_STATE(689)] = 4128, + [SMALL_STATE(690)] = 4257, + [SMALL_STATE(691)] = 4386, + [SMALL_STATE(692)] = 4515, + [SMALL_STATE(693)] = 4644, + [SMALL_STATE(694)] = 4773, + [SMALL_STATE(695)] = 4902, + [SMALL_STATE(696)] = 5031, + [SMALL_STATE(697)] = 5160, + [SMALL_STATE(698)] = 5289, + [SMALL_STATE(699)] = 5418, + [SMALL_STATE(700)] = 5547, + [SMALL_STATE(701)] = 5676, + [SMALL_STATE(702)] = 5805, + [SMALL_STATE(703)] = 5934, + [SMALL_STATE(704)] = 6063, + [SMALL_STATE(705)] = 6192, + [SMALL_STATE(706)] = 6321, + [SMALL_STATE(707)] = 6450, + [SMALL_STATE(708)] = 6579, + [SMALL_STATE(709)] = 6708, + [SMALL_STATE(710)] = 6837, + [SMALL_STATE(711)] = 6966, + [SMALL_STATE(712)] = 7095, + [SMALL_STATE(713)] = 7224, + [SMALL_STATE(714)] = 7353, + [SMALL_STATE(715)] = 7482, + [SMALL_STATE(716)] = 7611, + [SMALL_STATE(717)] = 7740, + [SMALL_STATE(718)] = 7869, + [SMALL_STATE(719)] = 7998, + [SMALL_STATE(720)] = 8127, + [SMALL_STATE(721)] = 8256, + [SMALL_STATE(722)] = 8385, + [SMALL_STATE(723)] = 8514, + [SMALL_STATE(724)] = 8643, + [SMALL_STATE(725)] = 8772, + [SMALL_STATE(726)] = 8901, + [SMALL_STATE(727)] = 9030, + [SMALL_STATE(728)] = 9159, + [SMALL_STATE(729)] = 9288, + [SMALL_STATE(730)] = 9417, + [SMALL_STATE(731)] = 9546, + [SMALL_STATE(732)] = 9617, + [SMALL_STATE(733)] = 9746, + [SMALL_STATE(734)] = 9875, + [SMALL_STATE(735)] = 10004, + [SMALL_STATE(736)] = 10133, + [SMALL_STATE(737)] = 10262, + [SMALL_STATE(738)] = 10391, + [SMALL_STATE(739)] = 10520, + [SMALL_STATE(740)] = 10649, + [SMALL_STATE(741)] = 10778, + [SMALL_STATE(742)] = 10907, + [SMALL_STATE(743)] = 11036, + [SMALL_STATE(744)] = 11165, + [SMALL_STATE(745)] = 11294, + [SMALL_STATE(746)] = 11423, + [SMALL_STATE(747)] = 11552, + [SMALL_STATE(748)] = 11681, + [SMALL_STATE(749)] = 11810, + [SMALL_STATE(750)] = 11939, + [SMALL_STATE(751)] = 12068, + [SMALL_STATE(752)] = 12199, + [SMALL_STATE(753)] = 12328, + [SMALL_STATE(754)] = 12457, + [SMALL_STATE(755)] = 12586, + [SMALL_STATE(756)] = 12715, + [SMALL_STATE(757)] = 12844, + [SMALL_STATE(758)] = 12973, + [SMALL_STATE(759)] = 13102, + [SMALL_STATE(760)] = 13231, + [SMALL_STATE(761)] = 13360, + [SMALL_STATE(762)] = 13489, + [SMALL_STATE(763)] = 13618, + [SMALL_STATE(764)] = 13747, + [SMALL_STATE(765)] = 13876, + [SMALL_STATE(766)] = 13942, + [SMALL_STATE(767)] = 14008, + [SMALL_STATE(768)] = 14074, + [SMALL_STATE(769)] = 14140, + [SMALL_STATE(770)] = 14202, + [SMALL_STATE(771)] = 14273, + [SMALL_STATE(772)] = 14341, + [SMALL_STATE(773)] = 14409, + [SMALL_STATE(774)] = 14474, + [SMALL_STATE(775)] = 14535, + [SMALL_STATE(776)] = 14600, + [SMALL_STATE(777)] = 14661, + [SMALL_STATE(778)] = 14726, + [SMALL_STATE(779)] = 14791, + [SMALL_STATE(780)] = 14852, + [SMALL_STATE(781)] = 14913, + [SMALL_STATE(782)] = 14973, + [SMALL_STATE(783)] = 15035, + [SMALL_STATE(784)] = 15091, + [SMALL_STATE(785)] = 15149, + [SMALL_STATE(786)] = 15205, + [SMALL_STATE(787)] = 15263, + [SMALL_STATE(788)] = 15319, + [SMALL_STATE(789)] = 15377, + [SMALL_STATE(790)] = 15433, + [SMALL_STATE(791)] = 15489, + [SMALL_STATE(792)] = 15545, + [SMALL_STATE(793)] = 15603, + [SMALL_STATE(794)] = 15660, + [SMALL_STATE(795)] = 15715, + [SMALL_STATE(796)] = 15772, + [SMALL_STATE(797)] = 15829, + [SMALL_STATE(798)] = 15886, + [SMALL_STATE(799)] = 15945, + [SMALL_STATE(800)] = 16000, + [SMALL_STATE(801)] = 16055, + [SMALL_STATE(802)] = 16112, + [SMALL_STATE(803)] = 16169, + [SMALL_STATE(804)] = 16228, + [SMALL_STATE(805)] = 16283, + [SMALL_STATE(806)] = 16338, + [SMALL_STATE(807)] = 16395, + [SMALL_STATE(808)] = 16450, + [SMALL_STATE(809)] = 16505, + [SMALL_STATE(810)] = 16564, + [SMALL_STATE(811)] = 16621, + [SMALL_STATE(812)] = 16676, + [SMALL_STATE(813)] = 16733, + [SMALL_STATE(814)] = 16790, + [SMALL_STATE(815)] = 16845, + [SMALL_STATE(816)] = 16904, + [SMALL_STATE(817)] = 16961, + [SMALL_STATE(818)] = 17018, + [SMALL_STATE(819)] = 17075, + [SMALL_STATE(820)] = 17132, + [SMALL_STATE(821)] = 17187, + [SMALL_STATE(822)] = 17242, + [SMALL_STATE(823)] = 17301, + [SMALL_STATE(824)] = 17358, + [SMALL_STATE(825)] = 17413, + [SMALL_STATE(826)] = 17468, + [SMALL_STATE(827)] = 17523, + [SMALL_STATE(828)] = 17577, + [SMALL_STATE(829)] = 17631, + [SMALL_STATE(830)] = 17685, + [SMALL_STATE(831)] = 17739, + [SMALL_STATE(832)] = 17793, + [SMALL_STATE(833)] = 17847, + [SMALL_STATE(834)] = 17901, + [SMALL_STATE(835)] = 17955, + [SMALL_STATE(836)] = 18009, + [SMALL_STATE(837)] = 18063, + [SMALL_STATE(838)] = 18117, + [SMALL_STATE(839)] = 18173, + [SMALL_STATE(840)] = 18227, + [SMALL_STATE(841)] = 18281, + [SMALL_STATE(842)] = 18335, + [SMALL_STATE(843)] = 18389, + [SMALL_STATE(844)] = 18443, + [SMALL_STATE(845)] = 18497, + [SMALL_STATE(846)] = 18551, + [SMALL_STATE(847)] = 18605, + [SMALL_STATE(848)] = 18659, + [SMALL_STATE(849)] = 18713, + [SMALL_STATE(850)] = 18767, + [SMALL_STATE(851)] = 18821, + [SMALL_STATE(852)] = 18875, + [SMALL_STATE(853)] = 18929, + [SMALL_STATE(854)] = 18983, + [SMALL_STATE(855)] = 19037, + [SMALL_STATE(856)] = 19091, + [SMALL_STATE(857)] = 19145, + [SMALL_STATE(858)] = 19199, + [SMALL_STATE(859)] = 19253, + [SMALL_STATE(860)] = 19307, + [SMALL_STATE(861)] = 19361, + [SMALL_STATE(862)] = 19415, + [SMALL_STATE(863)] = 19469, + [SMALL_STATE(864)] = 19523, + [SMALL_STATE(865)] = 19577, + [SMALL_STATE(866)] = 19631, + [SMALL_STATE(867)] = 19685, + [SMALL_STATE(868)] = 19739, + [SMALL_STATE(869)] = 19793, + [SMALL_STATE(870)] = 19847, + [SMALL_STATE(871)] = 19901, + [SMALL_STATE(872)] = 19955, + [SMALL_STATE(873)] = 20009, + [SMALL_STATE(874)] = 20063, + [SMALL_STATE(875)] = 20117, + [SMALL_STATE(876)] = 20171, + [SMALL_STATE(877)] = 20225, + [SMALL_STATE(878)] = 20279, + [SMALL_STATE(879)] = 20333, + [SMALL_STATE(880)] = 20387, + [SMALL_STATE(881)] = 20441, + [SMALL_STATE(882)] = 20495, + [SMALL_STATE(883)] = 20549, + [SMALL_STATE(884)] = 20603, + [SMALL_STATE(885)] = 20657, + [SMALL_STATE(886)] = 20711, + [SMALL_STATE(887)] = 20765, + [SMALL_STATE(888)] = 20819, + [SMALL_STATE(889)] = 20873, + [SMALL_STATE(890)] = 20927, + [SMALL_STATE(891)] = 20981, + [SMALL_STATE(892)] = 21035, + [SMALL_STATE(893)] = 21089, + [SMALL_STATE(894)] = 21143, + [SMALL_STATE(895)] = 21197, + [SMALL_STATE(896)] = 21251, + [SMALL_STATE(897)] = 21305, + [SMALL_STATE(898)] = 21359, + [SMALL_STATE(899)] = 21413, + [SMALL_STATE(900)] = 21467, + [SMALL_STATE(901)] = 21521, + [SMALL_STATE(902)] = 21575, + [SMALL_STATE(903)] = 21629, + [SMALL_STATE(904)] = 21683, + [SMALL_STATE(905)] = 21737, + [SMALL_STATE(906)] = 21791, + [SMALL_STATE(907)] = 21845, + [SMALL_STATE(908)] = 21899, + [SMALL_STATE(909)] = 21953, + [SMALL_STATE(910)] = 22007, + [SMALL_STATE(911)] = 22061, + [SMALL_STATE(912)] = 22115, + [SMALL_STATE(913)] = 22169, + [SMALL_STATE(914)] = 22223, + [SMALL_STATE(915)] = 22277, + [SMALL_STATE(916)] = 22331, + [SMALL_STATE(917)] = 22385, + [SMALL_STATE(918)] = 22439, + [SMALL_STATE(919)] = 22493, + [SMALL_STATE(920)] = 22547, + [SMALL_STATE(921)] = 22601, + [SMALL_STATE(922)] = 22655, + [SMALL_STATE(923)] = 22709, + [SMALL_STATE(924)] = 22763, + [SMALL_STATE(925)] = 22817, + [SMALL_STATE(926)] = 22871, + [SMALL_STATE(927)] = 22925, + [SMALL_STATE(928)] = 22979, + [SMALL_STATE(929)] = 23033, + [SMALL_STATE(930)] = 23087, + [SMALL_STATE(931)] = 23141, + [SMALL_STATE(932)] = 23195, + [SMALL_STATE(933)] = 23249, + [SMALL_STATE(934)] = 23303, + [SMALL_STATE(935)] = 23357, + [SMALL_STATE(936)] = 23411, + [SMALL_STATE(937)] = 23465, + [SMALL_STATE(938)] = 23519, + [SMALL_STATE(939)] = 23573, + [SMALL_STATE(940)] = 23627, + [SMALL_STATE(941)] = 23681, + [SMALL_STATE(942)] = 23735, + [SMALL_STATE(943)] = 23789, + [SMALL_STATE(944)] = 23843, + [SMALL_STATE(945)] = 23897, + [SMALL_STATE(946)] = 23951, + [SMALL_STATE(947)] = 24005, + [SMALL_STATE(948)] = 24059, + [SMALL_STATE(949)] = 24113, + [SMALL_STATE(950)] = 24167, + [SMALL_STATE(951)] = 24221, + [SMALL_STATE(952)] = 24275, + [SMALL_STATE(953)] = 24329, + [SMALL_STATE(954)] = 24383, + [SMALL_STATE(955)] = 24437, + [SMALL_STATE(956)] = 24491, + [SMALL_STATE(957)] = 24545, + [SMALL_STATE(958)] = 24599, + [SMALL_STATE(959)] = 24653, + [SMALL_STATE(960)] = 24707, + [SMALL_STATE(961)] = 24761, + [SMALL_STATE(962)] = 24815, + [SMALL_STATE(963)] = 24869, + [SMALL_STATE(964)] = 24923, + [SMALL_STATE(965)] = 24977, + [SMALL_STATE(966)] = 25031, + [SMALL_STATE(967)] = 25085, + [SMALL_STATE(968)] = 25139, + [SMALL_STATE(969)] = 25193, + [SMALL_STATE(970)] = 25247, + [SMALL_STATE(971)] = 25301, + [SMALL_STATE(972)] = 25355, + [SMALL_STATE(973)] = 25409, + [SMALL_STATE(974)] = 25463, + [SMALL_STATE(975)] = 25517, + [SMALL_STATE(976)] = 25571, + [SMALL_STATE(977)] = 25625, + [SMALL_STATE(978)] = 25679, + [SMALL_STATE(979)] = 25733, + [SMALL_STATE(980)] = 25787, + [SMALL_STATE(981)] = 25841, + [SMALL_STATE(982)] = 25895, + [SMALL_STATE(983)] = 25949, + [SMALL_STATE(984)] = 26003, + [SMALL_STATE(985)] = 26057, + [SMALL_STATE(986)] = 26111, + [SMALL_STATE(987)] = 26165, + [SMALL_STATE(988)] = 26219, + [SMALL_STATE(989)] = 26273, + [SMALL_STATE(990)] = 26327, + [SMALL_STATE(991)] = 26381, + [SMALL_STATE(992)] = 26435, + [SMALL_STATE(993)] = 26489, + [SMALL_STATE(994)] = 26543, + [SMALL_STATE(995)] = 26597, + [SMALL_STATE(996)] = 26651, + [SMALL_STATE(997)] = 26705, + [SMALL_STATE(998)] = 26759, + [SMALL_STATE(999)] = 26813, + [SMALL_STATE(1000)] = 26867, + [SMALL_STATE(1001)] = 26921, + [SMALL_STATE(1002)] = 26975, + [SMALL_STATE(1003)] = 27029, + [SMALL_STATE(1004)] = 27083, + [SMALL_STATE(1005)] = 27137, + [SMALL_STATE(1006)] = 27191, + [SMALL_STATE(1007)] = 27245, + [SMALL_STATE(1008)] = 27299, + [SMALL_STATE(1009)] = 27353, + [SMALL_STATE(1010)] = 27407, + [SMALL_STATE(1011)] = 27461, + [SMALL_STATE(1012)] = 27515, + [SMALL_STATE(1013)] = 27569, + [SMALL_STATE(1014)] = 27623, + [SMALL_STATE(1015)] = 27677, + [SMALL_STATE(1016)] = 27731, + [SMALL_STATE(1017)] = 27785, + [SMALL_STATE(1018)] = 27839, + [SMALL_STATE(1019)] = 27893, + [SMALL_STATE(1020)] = 27947, + [SMALL_STATE(1021)] = 28001, + [SMALL_STATE(1022)] = 28055, + [SMALL_STATE(1023)] = 28109, + [SMALL_STATE(1024)] = 28163, + [SMALL_STATE(1025)] = 28217, + [SMALL_STATE(1026)] = 28271, + [SMALL_STATE(1027)] = 28325, + [SMALL_STATE(1028)] = 28379, + [SMALL_STATE(1029)] = 28433, + [SMALL_STATE(1030)] = 28487, + [SMALL_STATE(1031)] = 28541, + [SMALL_STATE(1032)] = 28595, + [SMALL_STATE(1033)] = 28649, + [SMALL_STATE(1034)] = 28703, + [SMALL_STATE(1035)] = 28757, + [SMALL_STATE(1036)] = 28811, + [SMALL_STATE(1037)] = 28865, + [SMALL_STATE(1038)] = 28919, + [SMALL_STATE(1039)] = 28973, + [SMALL_STATE(1040)] = 29027, + [SMALL_STATE(1041)] = 29081, + [SMALL_STATE(1042)] = 29135, + [SMALL_STATE(1043)] = 29189, + [SMALL_STATE(1044)] = 29243, + [SMALL_STATE(1045)] = 29297, + [SMALL_STATE(1046)] = 29351, + [SMALL_STATE(1047)] = 29405, + [SMALL_STATE(1048)] = 29459, + [SMALL_STATE(1049)] = 29513, + [SMALL_STATE(1050)] = 29567, + [SMALL_STATE(1051)] = 29621, + [SMALL_STATE(1052)] = 29675, + [SMALL_STATE(1053)] = 29729, + [SMALL_STATE(1054)] = 29783, + [SMALL_STATE(1055)] = 29837, + [SMALL_STATE(1056)] = 29891, + [SMALL_STATE(1057)] = 29945, + [SMALL_STATE(1058)] = 29999, + [SMALL_STATE(1059)] = 30053, + [SMALL_STATE(1060)] = 30107, + [SMALL_STATE(1061)] = 30161, + [SMALL_STATE(1062)] = 30215, + [SMALL_STATE(1063)] = 30269, + [SMALL_STATE(1064)] = 30323, + [SMALL_STATE(1065)] = 30377, + [SMALL_STATE(1066)] = 30431, + [SMALL_STATE(1067)] = 30485, + [SMALL_STATE(1068)] = 30539, + [SMALL_STATE(1069)] = 30593, + [SMALL_STATE(1070)] = 30647, + [SMALL_STATE(1071)] = 30701, + [SMALL_STATE(1072)] = 30755, + [SMALL_STATE(1073)] = 30809, + [SMALL_STATE(1074)] = 30863, + [SMALL_STATE(1075)] = 30917, + [SMALL_STATE(1076)] = 30971, + [SMALL_STATE(1077)] = 31025, + [SMALL_STATE(1078)] = 31079, + [SMALL_STATE(1079)] = 31133, + [SMALL_STATE(1080)] = 31187, + [SMALL_STATE(1081)] = 31241, + [SMALL_STATE(1082)] = 31295, + [SMALL_STATE(1083)] = 31349, + [SMALL_STATE(1084)] = 31405, + [SMALL_STATE(1085)] = 31459, + [SMALL_STATE(1086)] = 31513, + [SMALL_STATE(1087)] = 31567, + [SMALL_STATE(1088)] = 31621, + [SMALL_STATE(1089)] = 31675, + [SMALL_STATE(1090)] = 31729, + [SMALL_STATE(1091)] = 31783, + [SMALL_STATE(1092)] = 31837, + [SMALL_STATE(1093)] = 31891, + [SMALL_STATE(1094)] = 31945, + [SMALL_STATE(1095)] = 31999, + [SMALL_STATE(1096)] = 32053, + [SMALL_STATE(1097)] = 32107, + [SMALL_STATE(1098)] = 32161, + [SMALL_STATE(1099)] = 32215, + [SMALL_STATE(1100)] = 32269, + [SMALL_STATE(1101)] = 32323, + [SMALL_STATE(1102)] = 32377, + [SMALL_STATE(1103)] = 32431, + [SMALL_STATE(1104)] = 32485, + [SMALL_STATE(1105)] = 32539, + [SMALL_STATE(1106)] = 32593, + [SMALL_STATE(1107)] = 32647, + [SMALL_STATE(1108)] = 32701, + [SMALL_STATE(1109)] = 32755, + [SMALL_STATE(1110)] = 32809, + [SMALL_STATE(1111)] = 32863, + [SMALL_STATE(1112)] = 32917, + [SMALL_STATE(1113)] = 32971, + [SMALL_STATE(1114)] = 33025, + [SMALL_STATE(1115)] = 33079, + [SMALL_STATE(1116)] = 33133, + [SMALL_STATE(1117)] = 33187, + [SMALL_STATE(1118)] = 33241, + [SMALL_STATE(1119)] = 33295, + [SMALL_STATE(1120)] = 33349, + [SMALL_STATE(1121)] = 33403, + [SMALL_STATE(1122)] = 33457, + [SMALL_STATE(1123)] = 33511, + [SMALL_STATE(1124)] = 33565, + [SMALL_STATE(1125)] = 33619, + [SMALL_STATE(1126)] = 33673, + [SMALL_STATE(1127)] = 33727, + [SMALL_STATE(1128)] = 33781, + [SMALL_STATE(1129)] = 33835, + [SMALL_STATE(1130)] = 33889, + [SMALL_STATE(1131)] = 33943, + [SMALL_STATE(1132)] = 33997, + [SMALL_STATE(1133)] = 34051, + [SMALL_STATE(1134)] = 34105, + [SMALL_STATE(1135)] = 34159, + [SMALL_STATE(1136)] = 34213, + [SMALL_STATE(1137)] = 34267, + [SMALL_STATE(1138)] = 34321, + [SMALL_STATE(1139)] = 34375, + [SMALL_STATE(1140)] = 34429, + [SMALL_STATE(1141)] = 34483, + [SMALL_STATE(1142)] = 34537, + [SMALL_STATE(1143)] = 34591, + [SMALL_STATE(1144)] = 34645, + [SMALL_STATE(1145)] = 34699, + [SMALL_STATE(1146)] = 34753, + [SMALL_STATE(1147)] = 34807, + [SMALL_STATE(1148)] = 34861, + [SMALL_STATE(1149)] = 34915, + [SMALL_STATE(1150)] = 34969, + [SMALL_STATE(1151)] = 35036, + [SMALL_STATE(1152)] = 35119, + [SMALL_STATE(1153)] = 35174, + [SMALL_STATE(1154)] = 35257, + [SMALL_STATE(1155)] = 35318, + [SMALL_STATE(1156)] = 35405, + [SMALL_STATE(1157)] = 35494, + [SMALL_STATE(1158)] = 35569, + [SMALL_STATE(1159)] = 35630, + [SMALL_STATE(1160)] = 35683, + [SMALL_STATE(1161)] = 35736, + [SMALL_STATE(1162)] = 35791, + [SMALL_STATE(1163)] = 35844, + [SMALL_STATE(1164)] = 35907, + [SMALL_STATE(1165)] = 35976, + [SMALL_STATE(1166)] = 36065, + [SMALL_STATE(1167)] = 36148, + [SMALL_STATE(1168)] = 36201, + [SMALL_STATE(1169)] = 36280, + [SMALL_STATE(1170)] = 36361, + [SMALL_STATE(1171)] = 36418, + [SMALL_STATE(1172)] = 36505, + [SMALL_STATE(1173)] = 36558, + [SMALL_STATE(1174)] = 36611, + [SMALL_STATE(1175)] = 36676, + [SMALL_STATE(1176)] = 36759, + [SMALL_STATE(1177)] = 36832, + [SMALL_STATE(1178)] = 36893, + [SMALL_STATE(1179)] = 36976, + [SMALL_STATE(1180)] = 37059, + [SMALL_STATE(1181)] = 37130, + [SMALL_STATE(1182)] = 37190, + [SMALL_STATE(1183)] = 37242, + [SMALL_STATE(1184)] = 37294, + [SMALL_STATE(1185)] = 37345, + [SMALL_STATE(1186)] = 37396, + [SMALL_STATE(1187)] = 37481, + [SMALL_STATE(1188)] = 37568, + [SMALL_STATE(1189)] = 37653, + [SMALL_STATE(1190)] = 37710, + [SMALL_STATE(1191)] = 37797, + [SMALL_STATE(1192)] = 37884, + [SMALL_STATE(1193)] = 37971, + [SMALL_STATE(1194)] = 38027, + [SMALL_STATE(1195)] = 38103, + [SMALL_STATE(1196)] = 38157, + [SMALL_STATE(1197)] = 38233, + [SMALL_STATE(1198)] = 38284, + [SMALL_STATE(1199)] = 38333, + [SMALL_STATE(1200)] = 38422, + [SMALL_STATE(1201)] = 38511, + [SMALL_STATE(1202)] = 38560, + [SMALL_STATE(1203)] = 38609, + [SMALL_STATE(1204)] = 38658, + [SMALL_STATE(1205)] = 38711, + [SMALL_STATE(1206)] = 38760, + [SMALL_STATE(1207)] = 38809, + [SMALL_STATE(1208)] = 38858, + [SMALL_STATE(1209)] = 38911, + [SMALL_STATE(1210)] = 38962, + [SMALL_STATE(1211)] = 39011, + [SMALL_STATE(1212)] = 39060, + [SMALL_STATE(1213)] = 39146, + [SMALL_STATE(1214)] = 39196, + [SMALL_STATE(1215)] = 39246, + [SMALL_STATE(1216)] = 39296, + [SMALL_STATE(1217)] = 39346, + [SMALL_STATE(1218)] = 39424, + [SMALL_STATE(1219)] = 39502, + [SMALL_STATE(1220)] = 39588, + [SMALL_STATE(1221)] = 39671, + [SMALL_STATE(1222)] = 39754, + [SMALL_STATE(1223)] = 39837, + [SMALL_STATE(1224)] = 39896, + [SMALL_STATE(1225)] = 39979, + [SMALL_STATE(1226)] = 40062, + [SMALL_STATE(1227)] = 40145, + [SMALL_STATE(1228)] = 40228, + [SMALL_STATE(1229)] = 40311, + [SMALL_STATE(1230)] = 40388, + [SMALL_STATE(1231)] = 40471, + [SMALL_STATE(1232)] = 40540, + [SMALL_STATE(1233)] = 40603, + [SMALL_STATE(1234)] = 40676, + [SMALL_STATE(1235)] = 40759, + [SMALL_STATE(1236)] = 40834, + [SMALL_STATE(1237)] = 40915, + [SMALL_STATE(1238)] = 40996, + [SMALL_STATE(1239)] = 41063, + [SMALL_STATE(1240)] = 41144, + [SMALL_STATE(1241)] = 41227, + [SMALL_STATE(1242)] = 41292, + [SMALL_STATE(1243)] = 41353, + [SMALL_STATE(1244)] = 41430, + [SMALL_STATE(1245)] = 41513, + [SMALL_STATE(1246)] = 41594, + [SMALL_STATE(1247)] = 41677, + [SMALL_STATE(1248)] = 41760, + [SMALL_STATE(1249)] = 41843, + [SMALL_STATE(1250)] = 41926, + [SMALL_STATE(1251)] = 42009, + [SMALL_STATE(1252)] = 42080, + [SMALL_STATE(1253)] = 42163, + [SMALL_STATE(1254)] = 42244, + [SMALL_STATE(1255)] = 42327, + [SMALL_STATE(1256)] = 42408, + [SMALL_STATE(1257)] = 42491, + [SMALL_STATE(1258)] = 42574, + [SMALL_STATE(1259)] = 42657, + [SMALL_STATE(1260)] = 42740, + [SMALL_STATE(1261)] = 42823, + [SMALL_STATE(1262)] = 42906, + [SMALL_STATE(1263)] = 42987, + [SMALL_STATE(1264)] = 43068, + [SMALL_STATE(1265)] = 43125, + [SMALL_STATE(1266)] = 43208, + [SMALL_STATE(1267)] = 43291, + [SMALL_STATE(1268)] = 43374, + [SMALL_STATE(1269)] = 43457, + [SMALL_STATE(1270)] = 43540, + [SMALL_STATE(1271)] = 43623, + [SMALL_STATE(1272)] = 43706, + [SMALL_STATE(1273)] = 43787, + [SMALL_STATE(1274)] = 43842, + [SMALL_STATE(1275)] = 43925, + [SMALL_STATE(1276)] = 44008, + [SMALL_STATE(1277)] = 44091, + [SMALL_STATE(1278)] = 44174, + [SMALL_STATE(1279)] = 44255, + [SMALL_STATE(1280)] = 44338, + [SMALL_STATE(1281)] = 44419, + [SMALL_STATE(1282)] = 44502, + [SMALL_STATE(1283)] = 44585, + [SMALL_STATE(1284)] = 44668, + [SMALL_STATE(1285)] = 44751, + [SMALL_STATE(1286)] = 44834, + [SMALL_STATE(1287)] = 44917, + [SMALL_STATE(1288)] = 45000, + [SMALL_STATE(1289)] = 45083, + [SMALL_STATE(1290)] = 45164, + [SMALL_STATE(1291)] = 45241, + [SMALL_STATE(1292)] = 45324, + [SMALL_STATE(1293)] = 45407, + [SMALL_STATE(1294)] = 45462, + [SMALL_STATE(1295)] = 45545, + [SMALL_STATE(1296)] = 45622, + [SMALL_STATE(1297)] = 45705, + [SMALL_STATE(1298)] = 45788, + [SMALL_STATE(1299)] = 45871, + [SMALL_STATE(1300)] = 45948, + [SMALL_STATE(1301)] = 46031, + [SMALL_STATE(1302)] = 46086, + [SMALL_STATE(1303)] = 46163, + [SMALL_STATE(1304)] = 46246, + [SMALL_STATE(1305)] = 46326, + [SMALL_STATE(1306)] = 46406, + [SMALL_STATE(1307)] = 46486, + [SMALL_STATE(1308)] = 46566, + [SMALL_STATE(1309)] = 46646, + [SMALL_STATE(1310)] = 46726, + [SMALL_STATE(1311)] = 46806, + [SMALL_STATE(1312)] = 46874, + [SMALL_STATE(1313)] = 46954, + [SMALL_STATE(1314)] = 47034, + [SMALL_STATE(1315)] = 47114, + [SMALL_STATE(1316)] = 47194, + [SMALL_STATE(1317)] = 47274, + [SMALL_STATE(1318)] = 47342, + [SMALL_STATE(1319)] = 47422, + [SMALL_STATE(1320)] = 47502, + [SMALL_STATE(1321)] = 47582, + [SMALL_STATE(1322)] = 47662, + [SMALL_STATE(1323)] = 47742, + [SMALL_STATE(1324)] = 47822, + [SMALL_STATE(1325)] = 47902, + [SMALL_STATE(1326)] = 47982, + [SMALL_STATE(1327)] = 48062, + [SMALL_STATE(1328)] = 48142, + [SMALL_STATE(1329)] = 48222, + [SMALL_STATE(1330)] = 48302, + [SMALL_STATE(1331)] = 48382, + [SMALL_STATE(1332)] = 48447, + [SMALL_STATE(1333)] = 48512, + [SMALL_STATE(1334)] = 48577, + [SMALL_STATE(1335)] = 48642, + [SMALL_STATE(1336)] = 48707, + [SMALL_STATE(1337)] = 48747, + [SMALL_STATE(1338)] = 48787, + [SMALL_STATE(1339)] = 48827, + [SMALL_STATE(1340)] = 48882, + [SMALL_STATE(1341)] = 48937, + [SMALL_STATE(1342)] = 48992, + [SMALL_STATE(1343)] = 49047, + [SMALL_STATE(1344)] = 49102, + [SMALL_STATE(1345)] = 49157, + [SMALL_STATE(1346)] = 49212, + [SMALL_STATE(1347)] = 49264, + [SMALL_STATE(1348)] = 49316, + [SMALL_STATE(1349)] = 49347, + [SMALL_STATE(1350)] = 49378, + [SMALL_STATE(1351)] = 49424, + [SMALL_STATE(1352)] = 49465, + [SMALL_STATE(1353)] = 49503, + [SMALL_STATE(1354)] = 49533, + [SMALL_STATE(1355)] = 49563, + [SMALL_STATE(1356)] = 49593, + [SMALL_STATE(1357)] = 49623, + [SMALL_STATE(1358)] = 49653, + [SMALL_STATE(1359)] = 49683, + [SMALL_STATE(1360)] = 49713, + [SMALL_STATE(1361)] = 49743, + [SMALL_STATE(1362)] = 49781, + [SMALL_STATE(1363)] = 49808, + [SMALL_STATE(1364)] = 49841, + [SMALL_STATE(1365)] = 49874, + [SMALL_STATE(1366)] = 49901, + [SMALL_STATE(1367)] = 49934, + [SMALL_STATE(1368)] = 49961, + [SMALL_STATE(1369)] = 49987, + [SMALL_STATE(1370)] = 50041, + [SMALL_STATE(1371)] = 50067, + [SMALL_STATE(1372)] = 50101, + [SMALL_STATE(1373)] = 50127, + [SMALL_STATE(1374)] = 50153, + [SMALL_STATE(1375)] = 50207, + [SMALL_STATE(1376)] = 50231, + [SMALL_STATE(1377)] = 50256, + [SMALL_STATE(1378)] = 50281, + [SMALL_STATE(1379)] = 50304, + [SMALL_STATE(1380)] = 50335, + [SMALL_STATE(1381)] = 50360, + [SMALL_STATE(1382)] = 50385, + [SMALL_STATE(1383)] = 50410, + [SMALL_STATE(1384)] = 50435, + [SMALL_STATE(1385)] = 50457, + [SMALL_STATE(1386)] = 50481, + [SMALL_STATE(1387)] = 50505, + [SMALL_STATE(1388)] = 50527, + [SMALL_STATE(1389)] = 50549, + [SMALL_STATE(1390)] = 50573, + [SMALL_STATE(1391)] = 50595, + [SMALL_STATE(1392)] = 50617, + [SMALL_STATE(1393)] = 50643, + [SMALL_STATE(1394)] = 50667, + [SMALL_STATE(1395)] = 50689, + [SMALL_STATE(1396)] = 50713, + [SMALL_STATE(1397)] = 50757, + [SMALL_STATE(1398)] = 50779, + [SMALL_STATE(1399)] = 50805, + [SMALL_STATE(1400)] = 50849, + [SMALL_STATE(1401)] = 50871, + [SMALL_STATE(1402)] = 50895, + [SMALL_STATE(1403)] = 50919, + [SMALL_STATE(1404)] = 50965, + [SMALL_STATE(1405)] = 50989, + [SMALL_STATE(1406)] = 51015, + [SMALL_STATE(1407)] = 51041, + [SMALL_STATE(1408)] = 51069, + [SMALL_STATE(1409)] = 51095, + [SMALL_STATE(1410)] = 51119, + [SMALL_STATE(1411)] = 51143, + [SMALL_STATE(1412)] = 51164, + [SMALL_STATE(1413)] = 51185, + [SMALL_STATE(1414)] = 51206, + [SMALL_STATE(1415)] = 51227, + [SMALL_STATE(1416)] = 51248, + [SMALL_STATE(1417)] = 51269, + [SMALL_STATE(1418)] = 51290, + [SMALL_STATE(1419)] = 51313, + [SMALL_STATE(1420)] = 51334, + [SMALL_STATE(1421)] = 51359, + [SMALL_STATE(1422)] = 51380, + [SMALL_STATE(1423)] = 51405, + [SMALL_STATE(1424)] = 51436, + [SMALL_STATE(1425)] = 51459, + [SMALL_STATE(1426)] = 51480, + [SMALL_STATE(1427)] = 51501, + [SMALL_STATE(1428)] = 51522, + [SMALL_STATE(1429)] = 51543, + [SMALL_STATE(1430)] = 51564, + [SMALL_STATE(1431)] = 51587, + [SMALL_STATE(1432)] = 51608, + [SMALL_STATE(1433)] = 51629, + [SMALL_STATE(1434)] = 51650, + [SMALL_STATE(1435)] = 51671, + [SMALL_STATE(1436)] = 51692, + [SMALL_STATE(1437)] = 51713, + [SMALL_STATE(1438)] = 51734, + [SMALL_STATE(1439)] = 51755, + [SMALL_STATE(1440)] = 51776, + [SMALL_STATE(1441)] = 51821, + [SMALL_STATE(1442)] = 51843, + [SMALL_STATE(1443)] = 51867, + [SMALL_STATE(1444)] = 51889, + [SMALL_STATE(1445)] = 51913, + [SMALL_STATE(1446)] = 51941, + [SMALL_STATE(1447)] = 51965, + [SMALL_STATE(1448)] = 51987, + [SMALL_STATE(1449)] = 52011, + [SMALL_STATE(1450)] = 52035, + [SMALL_STATE(1451)] = 52059, + [SMALL_STATE(1452)] = 52083, + [SMALL_STATE(1453)] = 52107, + [SMALL_STATE(1454)] = 52128, + [SMALL_STATE(1455)] = 52151, + [SMALL_STATE(1456)] = 52172, + [SMALL_STATE(1457)] = 52193, + [SMALL_STATE(1458)] = 52214, + [SMALL_STATE(1459)] = 52235, + [SMALL_STATE(1460)] = 52256, + [SMALL_STATE(1461)] = 52277, + [SMALL_STATE(1462)] = 52298, + [SMALL_STATE(1463)] = 52327, + [SMALL_STATE(1464)] = 52348, + [SMALL_STATE(1465)] = 52369, + [SMALL_STATE(1466)] = 52392, + [SMALL_STATE(1467)] = 52413, + [SMALL_STATE(1468)] = 52434, + [SMALL_STATE(1469)] = 52457, + [SMALL_STATE(1470)] = 52478, + [SMALL_STATE(1471)] = 52499, + [SMALL_STATE(1472)] = 52520, + [SMALL_STATE(1473)] = 52541, + [SMALL_STATE(1474)] = 52562, + [SMALL_STATE(1475)] = 52583, + [SMALL_STATE(1476)] = 52608, + [SMALL_STATE(1477)] = 52629, + [SMALL_STATE(1478)] = 52652, + [SMALL_STATE(1479)] = 52673, + [SMALL_STATE(1480)] = 52694, + [SMALL_STATE(1481)] = 52715, + [SMALL_STATE(1482)] = 52740, + [SMALL_STATE(1483)] = 52765, + [SMALL_STATE(1484)] = 52786, + [SMALL_STATE(1485)] = 52807, + [SMALL_STATE(1486)] = 52832, + [SMALL_STATE(1487)] = 52857, + [SMALL_STATE(1488)] = 52882, + [SMALL_STATE(1489)] = 52907, + [SMALL_STATE(1490)] = 52928, + [SMALL_STATE(1491)] = 52949, + [SMALL_STATE(1492)] = 52974, + [SMALL_STATE(1493)] = 52995, + [SMALL_STATE(1494)] = 53016, + [SMALL_STATE(1495)] = 53037, + [SMALL_STATE(1496)] = 53058, + [SMALL_STATE(1497)] = 53079, + [SMALL_STATE(1498)] = 53111, + [SMALL_STATE(1499)] = 53135, + [SMALL_STATE(1500)] = 53167, + [SMALL_STATE(1501)] = 53191, + [SMALL_STATE(1502)] = 53223, + [SMALL_STATE(1503)] = 53255, + [SMALL_STATE(1504)] = 53279, + [SMALL_STATE(1505)] = 53311, + [SMALL_STATE(1506)] = 53343, + [SMALL_STATE(1507)] = 53375, + [SMALL_STATE(1508)] = 53399, + [SMALL_STATE(1509)] = 53431, + [SMALL_STATE(1510)] = 53464, + [SMALL_STATE(1511)] = 53497, + [SMALL_STATE(1512)] = 53526, + [SMALL_STATE(1513)] = 53559, + [SMALL_STATE(1514)] = 53584, + [SMALL_STATE(1515)] = 53617, + [SMALL_STATE(1516)] = 53648, + [SMALL_STATE(1517)] = 53675, + [SMALL_STATE(1518)] = 53701, + [SMALL_STATE(1519)] = 53731, + [SMALL_STATE(1520)] = 53753, + [SMALL_STATE(1521)] = 53783, + [SMALL_STATE(1522)] = 53813, + [SMALL_STATE(1523)] = 53835, + [SMALL_STATE(1524)] = 53861, + [SMALL_STATE(1525)] = 53891, + [SMALL_STATE(1526)] = 53921, + [SMALL_STATE(1527)] = 53947, + [SMALL_STATE(1528)] = 53969, + [SMALL_STATE(1529)] = 53999, + [SMALL_STATE(1530)] = 54025, + [SMALL_STATE(1531)] = 54055, + [SMALL_STATE(1532)] = 54085, + [SMALL_STATE(1533)] = 54117, + [SMALL_STATE(1534)] = 54147, + [SMALL_STATE(1535)] = 54169, + [SMALL_STATE(1536)] = 54195, + [SMALL_STATE(1537)] = 54225, + [SMALL_STATE(1538)] = 54247, + [SMALL_STATE(1539)] = 54277, + [SMALL_STATE(1540)] = 54307, + [SMALL_STATE(1541)] = 54337, + [SMALL_STATE(1542)] = 54363, + [SMALL_STATE(1543)] = 54393, + [SMALL_STATE(1544)] = 54419, + [SMALL_STATE(1545)] = 54449, + [SMALL_STATE(1546)] = 54479, + [SMALL_STATE(1547)] = 54505, + [SMALL_STATE(1548)] = 54531, + [SMALL_STATE(1549)] = 54563, + [SMALL_STATE(1550)] = 54589, + [SMALL_STATE(1551)] = 54615, + [SMALL_STATE(1552)] = 54645, + [SMALL_STATE(1553)] = 54677, + [SMALL_STATE(1554)] = 54699, + [SMALL_STATE(1555)] = 54729, + [SMALL_STATE(1556)] = 54761, + [SMALL_STATE(1557)] = 54791, + [SMALL_STATE(1558)] = 54821, + [SMALL_STATE(1559)] = 54851, + [SMALL_STATE(1560)] = 54870, + [SMALL_STATE(1561)] = 54899, + [SMALL_STATE(1562)] = 54922, + [SMALL_STATE(1563)] = 54951, + [SMALL_STATE(1564)] = 54978, + [SMALL_STATE(1565)] = 54997, + [SMALL_STATE(1566)] = 55020, + [SMALL_STATE(1567)] = 55039, + [SMALL_STATE(1568)] = 55062, + [SMALL_STATE(1569)] = 55089, + [SMALL_STATE(1570)] = 55110, + [SMALL_STATE(1571)] = 55139, + [SMALL_STATE(1572)] = 55166, + [SMALL_STATE(1573)] = 55189, + [SMALL_STATE(1574)] = 55216, + [SMALL_STATE(1575)] = 55243, + [SMALL_STATE(1576)] = 55270, + [SMALL_STATE(1577)] = 55297, + [SMALL_STATE(1578)] = 55312, + [SMALL_STATE(1579)] = 55333, + [SMALL_STATE(1580)] = 55360, + [SMALL_STATE(1581)] = 55379, + [SMALL_STATE(1582)] = 55404, + [SMALL_STATE(1583)] = 55431, + [SMALL_STATE(1584)] = 55450, + [SMALL_STATE(1585)] = 55477, + [SMALL_STATE(1586)] = 55504, + [SMALL_STATE(1587)] = 55523, + [SMALL_STATE(1588)] = 55546, + [SMALL_STATE(1589)] = 55565, + [SMALL_STATE(1590)] = 55584, + [SMALL_STATE(1591)] = 55611, + [SMALL_STATE(1592)] = 55638, + [SMALL_STATE(1593)] = 55657, + [SMALL_STATE(1594)] = 55676, + [SMALL_STATE(1595)] = 55705, + [SMALL_STATE(1596)] = 55724, + [SMALL_STATE(1597)] = 55751, + [SMALL_STATE(1598)] = 55778, + [SMALL_STATE(1599)] = 55807, + [SMALL_STATE(1600)] = 55836, + [SMALL_STATE(1601)] = 55858, + [SMALL_STATE(1602)] = 55884, + [SMALL_STATE(1603)] = 55900, + [SMALL_STATE(1604)] = 55914, + [SMALL_STATE(1605)] = 55940, + [SMALL_STATE(1606)] = 55954, + [SMALL_STATE(1607)] = 55980, + [SMALL_STATE(1608)] = 56006, + [SMALL_STATE(1609)] = 56032, + [SMALL_STATE(1610)] = 56054, + [SMALL_STATE(1611)] = 56080, + [SMALL_STATE(1612)] = 56106, + [SMALL_STATE(1613)] = 56122, + [SMALL_STATE(1614)] = 56146, + [SMALL_STATE(1615)] = 56170, + [SMALL_STATE(1616)] = 56184, + [SMALL_STATE(1617)] = 56210, + [SMALL_STATE(1618)] = 56234, + [SMALL_STATE(1619)] = 56248, + [SMALL_STATE(1620)] = 56274, + [SMALL_STATE(1621)] = 56288, + [SMALL_STATE(1622)] = 56304, + [SMALL_STATE(1623)] = 56330, + [SMALL_STATE(1624)] = 56344, + [SMALL_STATE(1625)] = 56370, + [SMALL_STATE(1626)] = 56386, + [SMALL_STATE(1627)] = 56412, + [SMALL_STATE(1628)] = 56438, + [SMALL_STATE(1629)] = 56464, + [SMALL_STATE(1630)] = 56480, + [SMALL_STATE(1631)] = 56504, + [SMALL_STATE(1632)] = 56530, + [SMALL_STATE(1633)] = 56554, + [SMALL_STATE(1634)] = 56568, + [SMALL_STATE(1635)] = 56594, + [SMALL_STATE(1636)] = 56610, + [SMALL_STATE(1637)] = 56636, + [SMALL_STATE(1638)] = 56662, + [SMALL_STATE(1639)] = 56688, + [SMALL_STATE(1640)] = 56714, + [SMALL_STATE(1641)] = 56734, + [SMALL_STATE(1642)] = 56760, + [SMALL_STATE(1643)] = 56786, + [SMALL_STATE(1644)] = 56802, + [SMALL_STATE(1645)] = 56828, + [SMALL_STATE(1646)] = 56854, + [SMALL_STATE(1647)] = 56870, + [SMALL_STATE(1648)] = 56893, + [SMALL_STATE(1649)] = 56916, + [SMALL_STATE(1650)] = 56939, + [SMALL_STATE(1651)] = 56962, + [SMALL_STATE(1652)] = 56985, + [SMALL_STATE(1653)] = 57008, + [SMALL_STATE(1654)] = 57031, + [SMALL_STATE(1655)] = 57048, + [SMALL_STATE(1656)] = 57071, + [SMALL_STATE(1657)] = 57094, + [SMALL_STATE(1658)] = 57117, + [SMALL_STATE(1659)] = 57140, + [SMALL_STATE(1660)] = 57163, + [SMALL_STATE(1661)] = 57180, + [SMALL_STATE(1662)] = 57203, + [SMALL_STATE(1663)] = 57226, + [SMALL_STATE(1664)] = 57249, + [SMALL_STATE(1665)] = 57272, + [SMALL_STATE(1666)] = 57293, + [SMALL_STATE(1667)] = 57310, + [SMALL_STATE(1668)] = 57333, + [SMALL_STATE(1669)] = 57356, + [SMALL_STATE(1670)] = 57379, + [SMALL_STATE(1671)] = 57402, + [SMALL_STATE(1672)] = 57425, + [SMALL_STATE(1673)] = 57448, + [SMALL_STATE(1674)] = 57471, + [SMALL_STATE(1675)] = 57492, + [SMALL_STATE(1676)] = 57515, + [SMALL_STATE(1677)] = 57538, + [SMALL_STATE(1678)] = 57561, + [SMALL_STATE(1679)] = 57584, + [SMALL_STATE(1680)] = 57607, + [SMALL_STATE(1681)] = 57630, + [SMALL_STATE(1682)] = 57645, + [SMALL_STATE(1683)] = 57668, + [SMALL_STATE(1684)] = 57691, + [SMALL_STATE(1685)] = 57708, + [SMALL_STATE(1686)] = 57731, + [SMALL_STATE(1687)] = 57754, + [SMALL_STATE(1688)] = 57773, + [SMALL_STATE(1689)] = 57796, + [SMALL_STATE(1690)] = 57819, + [SMALL_STATE(1691)] = 57842, + [SMALL_STATE(1692)] = 57865, + [SMALL_STATE(1693)] = 57888, + [SMALL_STATE(1694)] = 57911, + [SMALL_STATE(1695)] = 57934, + [SMALL_STATE(1696)] = 57951, + [SMALL_STATE(1697)] = 57974, + [SMALL_STATE(1698)] = 57993, + [SMALL_STATE(1699)] = 58016, + [SMALL_STATE(1700)] = 58039, + [SMALL_STATE(1701)] = 58056, + [SMALL_STATE(1702)] = 58073, + [SMALL_STATE(1703)] = 58090, + [SMALL_STATE(1704)] = 58113, + [SMALL_STATE(1705)] = 58130, + [SMALL_STATE(1706)] = 58153, + [SMALL_STATE(1707)] = 58176, + [SMALL_STATE(1708)] = 58199, + [SMALL_STATE(1709)] = 58222, + [SMALL_STATE(1710)] = 58245, + [SMALL_STATE(1711)] = 58268, + [SMALL_STATE(1712)] = 58291, + [SMALL_STATE(1713)] = 58314, + [SMALL_STATE(1714)] = 58337, + [SMALL_STATE(1715)] = 58360, + [SMALL_STATE(1716)] = 58383, + [SMALL_STATE(1717)] = 58398, + [SMALL_STATE(1718)] = 58421, + [SMALL_STATE(1719)] = 58444, + [SMALL_STATE(1720)] = 58467, + [SMALL_STATE(1721)] = 58484, + [SMALL_STATE(1722)] = 58507, + [SMALL_STATE(1723)] = 58524, + [SMALL_STATE(1724)] = 58541, + [SMALL_STATE(1725)] = 58558, + [SMALL_STATE(1726)] = 58581, + [SMALL_STATE(1727)] = 58604, + [SMALL_STATE(1728)] = 58627, + [SMALL_STATE(1729)] = 58650, + [SMALL_STATE(1730)] = 58673, + [SMALL_STATE(1731)] = 58696, + [SMALL_STATE(1732)] = 58719, + [SMALL_STATE(1733)] = 58742, + [SMALL_STATE(1734)] = 58765, + [SMALL_STATE(1735)] = 58782, + [SMALL_STATE(1736)] = 58805, + [SMALL_STATE(1737)] = 58828, + [SMALL_STATE(1738)] = 58849, + [SMALL_STATE(1739)] = 58866, + [SMALL_STATE(1740)] = 58885, + [SMALL_STATE(1741)] = 58897, + [SMALL_STATE(1742)] = 58915, + [SMALL_STATE(1743)] = 58935, + [SMALL_STATE(1744)] = 58955, + [SMALL_STATE(1745)] = 58967, + [SMALL_STATE(1746)] = 58981, + [SMALL_STATE(1747)] = 58993, + [SMALL_STATE(1748)] = 59005, + [SMALL_STATE(1749)] = 59023, + [SMALL_STATE(1750)] = 59035, + [SMALL_STATE(1751)] = 59055, + [SMALL_STATE(1752)] = 59067, + [SMALL_STATE(1753)] = 59087, + [SMALL_STATE(1754)] = 59103, + [SMALL_STATE(1755)] = 59119, + [SMALL_STATE(1756)] = 59139, + [SMALL_STATE(1757)] = 59155, + [SMALL_STATE(1758)] = 59167, + [SMALL_STATE(1759)] = 59185, + [SMALL_STATE(1760)] = 59201, + [SMALL_STATE(1761)] = 59221, + [SMALL_STATE(1762)] = 59239, + [SMALL_STATE(1763)] = 59255, + [SMALL_STATE(1764)] = 59269, + [SMALL_STATE(1765)] = 59285, + [SMALL_STATE(1766)] = 59303, + [SMALL_STATE(1767)] = 59315, + [SMALL_STATE(1768)] = 59327, + [SMALL_STATE(1769)] = 59343, + [SMALL_STATE(1770)] = 59363, + [SMALL_STATE(1771)] = 59383, + [SMALL_STATE(1772)] = 59397, + [SMALL_STATE(1773)] = 59417, + [SMALL_STATE(1774)] = 59433, + [SMALL_STATE(1775)] = 59445, + [SMALL_STATE(1776)] = 59457, + [SMALL_STATE(1777)] = 59469, + [SMALL_STATE(1778)] = 59481, + [SMALL_STATE(1779)] = 59493, + [SMALL_STATE(1780)] = 59505, + [SMALL_STATE(1781)] = 59521, + [SMALL_STATE(1782)] = 59539, + [SMALL_STATE(1783)] = 59551, + [SMALL_STATE(1784)] = 59563, + [SMALL_STATE(1785)] = 59579, + [SMALL_STATE(1786)] = 59595, + [SMALL_STATE(1787)] = 59611, + [SMALL_STATE(1788)] = 59627, + [SMALL_STATE(1789)] = 59647, + [SMALL_STATE(1790)] = 59663, + [SMALL_STATE(1791)] = 59679, + [SMALL_STATE(1792)] = 59691, + [SMALL_STATE(1793)] = 59703, + [SMALL_STATE(1794)] = 59715, + [SMALL_STATE(1795)] = 59727, + [SMALL_STATE(1796)] = 59742, + [SMALL_STATE(1797)] = 59759, + [SMALL_STATE(1798)] = 59774, + [SMALL_STATE(1799)] = 59791, + [SMALL_STATE(1800)] = 59808, + [SMALL_STATE(1801)] = 59823, + [SMALL_STATE(1802)] = 59838, + [SMALL_STATE(1803)] = 59855, + [SMALL_STATE(1804)] = 59870, + [SMALL_STATE(1805)] = 59887, + [SMALL_STATE(1806)] = 59902, + [SMALL_STATE(1807)] = 59917, + [SMALL_STATE(1808)] = 59934, + [SMALL_STATE(1809)] = 59951, + [SMALL_STATE(1810)] = 59968, + [SMALL_STATE(1811)] = 59983, + [SMALL_STATE(1812)] = 60000, + [SMALL_STATE(1813)] = 60015, + [SMALL_STATE(1814)] = 60032, + [SMALL_STATE(1815)] = 60049, + [SMALL_STATE(1816)] = 60066, + [SMALL_STATE(1817)] = 60081, + [SMALL_STATE(1818)] = 60096, + [SMALL_STATE(1819)] = 60109, + [SMALL_STATE(1820)] = 60122, + [SMALL_STATE(1821)] = 60137, + [SMALL_STATE(1822)] = 60154, + [SMALL_STATE(1823)] = 60171, + [SMALL_STATE(1824)] = 60188, + [SMALL_STATE(1825)] = 60205, + [SMALL_STATE(1826)] = 60222, + [SMALL_STATE(1827)] = 60237, + [SMALL_STATE(1828)] = 60254, + [SMALL_STATE(1829)] = 60271, + [SMALL_STATE(1830)] = 60284, + [SMALL_STATE(1831)] = 60301, + [SMALL_STATE(1832)] = 60318, + [SMALL_STATE(1833)] = 60335, + [SMALL_STATE(1834)] = 60352, + [SMALL_STATE(1835)] = 60369, + [SMALL_STATE(1836)] = 60386, + [SMALL_STATE(1837)] = 60403, + [SMALL_STATE(1838)] = 60420, + [SMALL_STATE(1839)] = 60437, + [SMALL_STATE(1840)] = 60454, + [SMALL_STATE(1841)] = 60471, + [SMALL_STATE(1842)] = 60484, + [SMALL_STATE(1843)] = 60501, + [SMALL_STATE(1844)] = 60518, + [SMALL_STATE(1845)] = 60533, + [SMALL_STATE(1846)] = 60550, + [SMALL_STATE(1847)] = 60567, + [SMALL_STATE(1848)] = 60584, + [SMALL_STATE(1849)] = 60601, + [SMALL_STATE(1850)] = 60618, + [SMALL_STATE(1851)] = 60635, + [SMALL_STATE(1852)] = 60652, + [SMALL_STATE(1853)] = 60669, + [SMALL_STATE(1854)] = 60686, + [SMALL_STATE(1855)] = 60699, + [SMALL_STATE(1856)] = 60716, + [SMALL_STATE(1857)] = 60733, + [SMALL_STATE(1858)] = 60750, + [SMALL_STATE(1859)] = 60767, + [SMALL_STATE(1860)] = 60784, + [SMALL_STATE(1861)] = 60801, + [SMALL_STATE(1862)] = 60818, + [SMALL_STATE(1863)] = 60835, + [SMALL_STATE(1864)] = 60852, + [SMALL_STATE(1865)] = 60865, + [SMALL_STATE(1866)] = 60882, + [SMALL_STATE(1867)] = 60897, + [SMALL_STATE(1868)] = 60914, + [SMALL_STATE(1869)] = 60931, + [SMALL_STATE(1870)] = 60948, + [SMALL_STATE(1871)] = 60963, + [SMALL_STATE(1872)] = 60980, + [SMALL_STATE(1873)] = 60997, + [SMALL_STATE(1874)] = 61014, + [SMALL_STATE(1875)] = 61029, + [SMALL_STATE(1876)] = 61046, + [SMALL_STATE(1877)] = 61063, + [SMALL_STATE(1878)] = 61080, + [SMALL_STATE(1879)] = 61095, + [SMALL_STATE(1880)] = 61108, + [SMALL_STATE(1881)] = 61123, + [SMALL_STATE(1882)] = 61140, + [SMALL_STATE(1883)] = 61153, + [SMALL_STATE(1884)] = 61168, + [SMALL_STATE(1885)] = 61185, + [SMALL_STATE(1886)] = 61200, + [SMALL_STATE(1887)] = 61217, + [SMALL_STATE(1888)] = 61232, + [SMALL_STATE(1889)] = 61249, + [SMALL_STATE(1890)] = 61266, + [SMALL_STATE(1891)] = 61280, + [SMALL_STATE(1892)] = 61294, + [SMALL_STATE(1893)] = 61308, + [SMALL_STATE(1894)] = 61322, + [SMALL_STATE(1895)] = 61336, + [SMALL_STATE(1896)] = 61350, + [SMALL_STATE(1897)] = 61362, + [SMALL_STATE(1898)] = 61376, + [SMALL_STATE(1899)] = 61390, + [SMALL_STATE(1900)] = 61404, + [SMALL_STATE(1901)] = 61416, + [SMALL_STATE(1902)] = 61426, + [SMALL_STATE(1903)] = 61440, + [SMALL_STATE(1904)] = 61454, + [SMALL_STATE(1905)] = 61466, + [SMALL_STATE(1906)] = 61480, + [SMALL_STATE(1907)] = 61494, + [SMALL_STATE(1908)] = 61508, + [SMALL_STATE(1909)] = 61522, + [SMALL_STATE(1910)] = 61536, + [SMALL_STATE(1911)] = 61546, + [SMALL_STATE(1912)] = 61560, + [SMALL_STATE(1913)] = 61574, + [SMALL_STATE(1914)] = 61588, + [SMALL_STATE(1915)] = 61602, + [SMALL_STATE(1916)] = 61616, + [SMALL_STATE(1917)] = 61630, + [SMALL_STATE(1918)] = 61644, + [SMALL_STATE(1919)] = 61654, + [SMALL_STATE(1920)] = 61668, + [SMALL_STATE(1921)] = 61682, + [SMALL_STATE(1922)] = 61692, + [SMALL_STATE(1923)] = 61706, + [SMALL_STATE(1924)] = 61718, + [SMALL_STATE(1925)] = 61732, + [SMALL_STATE(1926)] = 61746, + [SMALL_STATE(1927)] = 61760, + [SMALL_STATE(1928)] = 61774, + [SMALL_STATE(1929)] = 61788, + [SMALL_STATE(1930)] = 61802, + [SMALL_STATE(1931)] = 61812, + [SMALL_STATE(1932)] = 61822, + [SMALL_STATE(1933)] = 61832, + [SMALL_STATE(1934)] = 61846, + [SMALL_STATE(1935)] = 61860, + [SMALL_STATE(1936)] = 61874, + [SMALL_STATE(1937)] = 61888, + [SMALL_STATE(1938)] = 61902, + [SMALL_STATE(1939)] = 61916, + [SMALL_STATE(1940)] = 61928, + [SMALL_STATE(1941)] = 61942, + [SMALL_STATE(1942)] = 61956, + [SMALL_STATE(1943)] = 61970, + [SMALL_STATE(1944)] = 61984, + [SMALL_STATE(1945)] = 61998, + [SMALL_STATE(1946)] = 62012, + [SMALL_STATE(1947)] = 62026, + [SMALL_STATE(1948)] = 62036, + [SMALL_STATE(1949)] = 62050, + [SMALL_STATE(1950)] = 62064, + [SMALL_STATE(1951)] = 62078, + [SMALL_STATE(1952)] = 62092, + [SMALL_STATE(1953)] = 62104, + [SMALL_STATE(1954)] = 62118, + [SMALL_STATE(1955)] = 62132, + [SMALL_STATE(1956)] = 62146, + [SMALL_STATE(1957)] = 62160, + [SMALL_STATE(1958)] = 62172, + [SMALL_STATE(1959)] = 62186, + [SMALL_STATE(1960)] = 62200, + [SMALL_STATE(1961)] = 62210, + [SMALL_STATE(1962)] = 62222, + [SMALL_STATE(1963)] = 62234, + [SMALL_STATE(1964)] = 62248, + [SMALL_STATE(1965)] = 62260, + [SMALL_STATE(1966)] = 62274, + [SMALL_STATE(1967)] = 62288, + [SMALL_STATE(1968)] = 62302, + [SMALL_STATE(1969)] = 62316, + [SMALL_STATE(1970)] = 62330, + [SMALL_STATE(1971)] = 62344, + [SMALL_STATE(1972)] = 62356, + [SMALL_STATE(1973)] = 62368, + [SMALL_STATE(1974)] = 62380, + [SMALL_STATE(1975)] = 62394, + [SMALL_STATE(1976)] = 62408, + [SMALL_STATE(1977)] = 62420, + [SMALL_STATE(1978)] = 62434, + [SMALL_STATE(1979)] = 62444, + [SMALL_STATE(1980)] = 62456, + [SMALL_STATE(1981)] = 62470, + [SMALL_STATE(1982)] = 62484, + [SMALL_STATE(1983)] = 62498, + [SMALL_STATE(1984)] = 62510, + [SMALL_STATE(1985)] = 62524, + [SMALL_STATE(1986)] = 62538, + [SMALL_STATE(1987)] = 62552, + [SMALL_STATE(1988)] = 62566, + [SMALL_STATE(1989)] = 62576, + [SMALL_STATE(1990)] = 62588, + [SMALL_STATE(1991)] = 62602, + [SMALL_STATE(1992)] = 62616, + [SMALL_STATE(1993)] = 62630, + [SMALL_STATE(1994)] = 62642, + [SMALL_STATE(1995)] = 62654, + [SMALL_STATE(1996)] = 62668, + [SMALL_STATE(1997)] = 62682, + [SMALL_STATE(1998)] = 62696, + [SMALL_STATE(1999)] = 62708, + [SMALL_STATE(2000)] = 62722, + [SMALL_STATE(2001)] = 62736, + [SMALL_STATE(2002)] = 62750, + [SMALL_STATE(2003)] = 62764, + [SMALL_STATE(2004)] = 62776, + [SMALL_STATE(2005)] = 62788, + [SMALL_STATE(2006)] = 62802, + [SMALL_STATE(2007)] = 62812, + [SMALL_STATE(2008)] = 62826, + [SMALL_STATE(2009)] = 62840, + [SMALL_STATE(2010)] = 62854, + [SMALL_STATE(2011)] = 62868, + [SMALL_STATE(2012)] = 62882, + [SMALL_STATE(2013)] = 62896, + [SMALL_STATE(2014)] = 62906, + [SMALL_STATE(2015)] = 62920, + [SMALL_STATE(2016)] = 62934, + [SMALL_STATE(2017)] = 62948, + [SMALL_STATE(2018)] = 62962, + [SMALL_STATE(2019)] = 62976, + [SMALL_STATE(2020)] = 62990, + [SMALL_STATE(2021)] = 63004, + [SMALL_STATE(2022)] = 63018, + [SMALL_STATE(2023)] = 63028, + [SMALL_STATE(2024)] = 63042, + [SMALL_STATE(2025)] = 63056, + [SMALL_STATE(2026)] = 63070, + [SMALL_STATE(2027)] = 63084, + [SMALL_STATE(2028)] = 63098, + [SMALL_STATE(2029)] = 63112, + [SMALL_STATE(2030)] = 63126, + [SMALL_STATE(2031)] = 63140, + [SMALL_STATE(2032)] = 63154, + [SMALL_STATE(2033)] = 63168, + [SMALL_STATE(2034)] = 63182, + [SMALL_STATE(2035)] = 63196, + [SMALL_STATE(2036)] = 63210, + [SMALL_STATE(2037)] = 63220, + [SMALL_STATE(2038)] = 63234, + [SMALL_STATE(2039)] = 63248, + [SMALL_STATE(2040)] = 63262, + [SMALL_STATE(2041)] = 63276, + [SMALL_STATE(2042)] = 63290, + [SMALL_STATE(2043)] = 63304, + [SMALL_STATE(2044)] = 63318, + [SMALL_STATE(2045)] = 63328, + [SMALL_STATE(2046)] = 63342, + [SMALL_STATE(2047)] = 63356, + [SMALL_STATE(2048)] = 63366, + [SMALL_STATE(2049)] = 63380, + [SMALL_STATE(2050)] = 63394, + [SMALL_STATE(2051)] = 63408, + [SMALL_STATE(2052)] = 63422, + [SMALL_STATE(2053)] = 63436, + [SMALL_STATE(2054)] = 63450, + [SMALL_STATE(2055)] = 63464, + [SMALL_STATE(2056)] = 63474, + [SMALL_STATE(2057)] = 63484, + [SMALL_STATE(2058)] = 63498, + [SMALL_STATE(2059)] = 63512, + [SMALL_STATE(2060)] = 63526, + [SMALL_STATE(2061)] = 63540, + [SMALL_STATE(2062)] = 63554, + [SMALL_STATE(2063)] = 63568, + [SMALL_STATE(2064)] = 63582, + [SMALL_STATE(2065)] = 63594, + [SMALL_STATE(2066)] = 63608, + [SMALL_STATE(2067)] = 63622, + [SMALL_STATE(2068)] = 63636, + [SMALL_STATE(2069)] = 63650, + [SMALL_STATE(2070)] = 63664, + [SMALL_STATE(2071)] = 63678, + [SMALL_STATE(2072)] = 63692, + [SMALL_STATE(2073)] = 63706, + [SMALL_STATE(2074)] = 63718, + [SMALL_STATE(2075)] = 63732, + [SMALL_STATE(2076)] = 63746, + [SMALL_STATE(2077)] = 63760, + [SMALL_STATE(2078)] = 63774, + [SMALL_STATE(2079)] = 63788, + [SMALL_STATE(2080)] = 63798, + [SMALL_STATE(2081)] = 63812, + [SMALL_STATE(2082)] = 63826, + [SMALL_STATE(2083)] = 63840, + [SMALL_STATE(2084)] = 63854, + [SMALL_STATE(2085)] = 63868, + [SMALL_STATE(2086)] = 63882, + [SMALL_STATE(2087)] = 63896, + [SMALL_STATE(2088)] = 63910, + [SMALL_STATE(2089)] = 63924, + [SMALL_STATE(2090)] = 63934, + [SMALL_STATE(2091)] = 63948, + [SMALL_STATE(2092)] = 63960, + [SMALL_STATE(2093)] = 63974, + [SMALL_STATE(2094)] = 63986, + [SMALL_STATE(2095)] = 64000, + [SMALL_STATE(2096)] = 64014, + [SMALL_STATE(2097)] = 64028, + [SMALL_STATE(2098)] = 64042, + [SMALL_STATE(2099)] = 64056, + [SMALL_STATE(2100)] = 64070, + [SMALL_STATE(2101)] = 64080, + [SMALL_STATE(2102)] = 64094, + [SMALL_STATE(2103)] = 64108, + [SMALL_STATE(2104)] = 64118, + [SMALL_STATE(2105)] = 64132, + [SMALL_STATE(2106)] = 64142, + [SMALL_STATE(2107)] = 64156, + [SMALL_STATE(2108)] = 64170, + [SMALL_STATE(2109)] = 64184, + [SMALL_STATE(2110)] = 64196, + [SMALL_STATE(2111)] = 64210, + [SMALL_STATE(2112)] = 64224, + [SMALL_STATE(2113)] = 64238, + [SMALL_STATE(2114)] = 64252, + [SMALL_STATE(2115)] = 64266, + [SMALL_STATE(2116)] = 64280, + [SMALL_STATE(2117)] = 64294, + [SMALL_STATE(2118)] = 64308, + [SMALL_STATE(2119)] = 64322, + [SMALL_STATE(2120)] = 64336, + [SMALL_STATE(2121)] = 64350, + [SMALL_STATE(2122)] = 64364, + [SMALL_STATE(2123)] = 64376, + [SMALL_STATE(2124)] = 64390, + [SMALL_STATE(2125)] = 64404, + [SMALL_STATE(2126)] = 64418, + [SMALL_STATE(2127)] = 64430, + [SMALL_STATE(2128)] = 64442, + [SMALL_STATE(2129)] = 64454, + [SMALL_STATE(2130)] = 64468, + [SMALL_STATE(2131)] = 64482, + [SMALL_STATE(2132)] = 64496, + [SMALL_STATE(2133)] = 64508, + [SMALL_STATE(2134)] = 64522, + [SMALL_STATE(2135)] = 64534, + [SMALL_STATE(2136)] = 64548, + [SMALL_STATE(2137)] = 64562, + [SMALL_STATE(2138)] = 64574, + [SMALL_STATE(2139)] = 64588, + [SMALL_STATE(2140)] = 64602, + [SMALL_STATE(2141)] = 64614, + [SMALL_STATE(2142)] = 64625, + [SMALL_STATE(2143)] = 64636, + [SMALL_STATE(2144)] = 64647, + [SMALL_STATE(2145)] = 64656, + [SMALL_STATE(2146)] = 64667, + [SMALL_STATE(2147)] = 64678, + [SMALL_STATE(2148)] = 64689, + [SMALL_STATE(2149)] = 64700, + [SMALL_STATE(2150)] = 64711, + [SMALL_STATE(2151)] = 64722, + [SMALL_STATE(2152)] = 64733, + [SMALL_STATE(2153)] = 64744, + [SMALL_STATE(2154)] = 64755, + [SMALL_STATE(2155)] = 64766, + [SMALL_STATE(2156)] = 64775, + [SMALL_STATE(2157)] = 64786, + [SMALL_STATE(2158)] = 64797, + [SMALL_STATE(2159)] = 64808, + [SMALL_STATE(2160)] = 64819, + [SMALL_STATE(2161)] = 64828, + [SMALL_STATE(2162)] = 64839, + [SMALL_STATE(2163)] = 64850, + [SMALL_STATE(2164)] = 64861, + [SMALL_STATE(2165)] = 64872, + [SMALL_STATE(2166)] = 64883, + [SMALL_STATE(2167)] = 64894, + [SMALL_STATE(2168)] = 64905, + [SMALL_STATE(2169)] = 64914, + [SMALL_STATE(2170)] = 64925, + [SMALL_STATE(2171)] = 64936, + [SMALL_STATE(2172)] = 64947, + [SMALL_STATE(2173)] = 64958, + [SMALL_STATE(2174)] = 64969, + [SMALL_STATE(2175)] = 64980, + [SMALL_STATE(2176)] = 64991, + [SMALL_STATE(2177)] = 65000, + [SMALL_STATE(2178)] = 65011, + [SMALL_STATE(2179)] = 65022, + [SMALL_STATE(2180)] = 65031, + [SMALL_STATE(2181)] = 65042, + [SMALL_STATE(2182)] = 65053, + [SMALL_STATE(2183)] = 65064, + [SMALL_STATE(2184)] = 65075, + [SMALL_STATE(2185)] = 65086, + [SMALL_STATE(2186)] = 65097, + [SMALL_STATE(2187)] = 65108, + [SMALL_STATE(2188)] = 65119, + [SMALL_STATE(2189)] = 65130, + [SMALL_STATE(2190)] = 65141, + [SMALL_STATE(2191)] = 65152, + [SMALL_STATE(2192)] = 65163, + [SMALL_STATE(2193)] = 65174, + [SMALL_STATE(2194)] = 65185, + [SMALL_STATE(2195)] = 65196, + [SMALL_STATE(2196)] = 65207, + [SMALL_STATE(2197)] = 65218, + [SMALL_STATE(2198)] = 65229, + [SMALL_STATE(2199)] = 65240, + [SMALL_STATE(2200)] = 65251, + [SMALL_STATE(2201)] = 65262, + [SMALL_STATE(2202)] = 65273, + [SMALL_STATE(2203)] = 65284, + [SMALL_STATE(2204)] = 65293, + [SMALL_STATE(2205)] = 65302, + [SMALL_STATE(2206)] = 65313, + [SMALL_STATE(2207)] = 65324, + [SMALL_STATE(2208)] = 65335, + [SMALL_STATE(2209)] = 65346, + [SMALL_STATE(2210)] = 65357, + [SMALL_STATE(2211)] = 65368, + [SMALL_STATE(2212)] = 65379, + [SMALL_STATE(2213)] = 65390, + [SMALL_STATE(2214)] = 65401, + [SMALL_STATE(2215)] = 65412, + [SMALL_STATE(2216)] = 65423, + [SMALL_STATE(2217)] = 65434, + [SMALL_STATE(2218)] = 65445, + [SMALL_STATE(2219)] = 65456, + [SMALL_STATE(2220)] = 65467, + [SMALL_STATE(2221)] = 65478, + [SMALL_STATE(2222)] = 65489, + [SMALL_STATE(2223)] = 65498, + [SMALL_STATE(2224)] = 65509, + [SMALL_STATE(2225)] = 65520, + [SMALL_STATE(2226)] = 65529, + [SMALL_STATE(2227)] = 65540, + [SMALL_STATE(2228)] = 65551, + [SMALL_STATE(2229)] = 65562, + [SMALL_STATE(2230)] = 65573, + [SMALL_STATE(2231)] = 65584, + [SMALL_STATE(2232)] = 65595, + [SMALL_STATE(2233)] = 65606, + [SMALL_STATE(2234)] = 65617, + [SMALL_STATE(2235)] = 65628, + [SMALL_STATE(2236)] = 65639, + [SMALL_STATE(2237)] = 65650, + [SMALL_STATE(2238)] = 65661, + [SMALL_STATE(2239)] = 65672, + [SMALL_STATE(2240)] = 65681, + [SMALL_STATE(2241)] = 65690, + [SMALL_STATE(2242)] = 65701, + [SMALL_STATE(2243)] = 65712, + [SMALL_STATE(2244)] = 65721, + [SMALL_STATE(2245)] = 65732, + [SMALL_STATE(2246)] = 65743, + [SMALL_STATE(2247)] = 65752, + [SMALL_STATE(2248)] = 65763, + [SMALL_STATE(2249)] = 65772, + [SMALL_STATE(2250)] = 65783, + [SMALL_STATE(2251)] = 65794, + [SMALL_STATE(2252)] = 65805, + [SMALL_STATE(2253)] = 65814, + [SMALL_STATE(2254)] = 65825, + [SMALL_STATE(2255)] = 65836, + [SMALL_STATE(2256)] = 65845, + [SMALL_STATE(2257)] = 65856, + [SMALL_STATE(2258)] = 65867, + [SMALL_STATE(2259)] = 65876, + [SMALL_STATE(2260)] = 65887, + [SMALL_STATE(2261)] = 65898, + [SMALL_STATE(2262)] = 65909, + [SMALL_STATE(2263)] = 65920, + [SMALL_STATE(2264)] = 65931, + [SMALL_STATE(2265)] = 65942, + [SMALL_STATE(2266)] = 65953, + [SMALL_STATE(2267)] = 65964, + [SMALL_STATE(2268)] = 65973, + [SMALL_STATE(2269)] = 65984, + [SMALL_STATE(2270)] = 65995, + [SMALL_STATE(2271)] = 66006, + [SMALL_STATE(2272)] = 66017, + [SMALL_STATE(2273)] = 66028, + [SMALL_STATE(2274)] = 66039, + [SMALL_STATE(2275)] = 66050, + [SMALL_STATE(2276)] = 66059, + [SMALL_STATE(2277)] = 66070, + [SMALL_STATE(2278)] = 66079, + [SMALL_STATE(2279)] = 66090, + [SMALL_STATE(2280)] = 66101, + [SMALL_STATE(2281)] = 66112, + [SMALL_STATE(2282)] = 66123, + [SMALL_STATE(2283)] = 66132, + [SMALL_STATE(2284)] = 66143, + [SMALL_STATE(2285)] = 66154, + [SMALL_STATE(2286)] = 66165, + [SMALL_STATE(2287)] = 66176, + [SMALL_STATE(2288)] = 66187, + [SMALL_STATE(2289)] = 66198, + [SMALL_STATE(2290)] = 66209, + [SMALL_STATE(2291)] = 66220, + [SMALL_STATE(2292)] = 66231, + [SMALL_STATE(2293)] = 66242, + [SMALL_STATE(2294)] = 66253, + [SMALL_STATE(2295)] = 66264, + [SMALL_STATE(2296)] = 66275, + [SMALL_STATE(2297)] = 66286, + [SMALL_STATE(2298)] = 66297, + [SMALL_STATE(2299)] = 66308, + [SMALL_STATE(2300)] = 66319, + [SMALL_STATE(2301)] = 66330, + [SMALL_STATE(2302)] = 66339, + [SMALL_STATE(2303)] = 66348, + [SMALL_STATE(2304)] = 66357, + [SMALL_STATE(2305)] = 66368, + [SMALL_STATE(2306)] = 66379, + [SMALL_STATE(2307)] = 66390, + [SMALL_STATE(2308)] = 66401, + [SMALL_STATE(2309)] = 66412, + [SMALL_STATE(2310)] = 66423, + [SMALL_STATE(2311)] = 66434, + [SMALL_STATE(2312)] = 66445, + [SMALL_STATE(2313)] = 66456, + [SMALL_STATE(2314)] = 66467, + [SMALL_STATE(2315)] = 66478, + [SMALL_STATE(2316)] = 66489, + [SMALL_STATE(2317)] = 66500, + [SMALL_STATE(2318)] = 66511, + [SMALL_STATE(2319)] = 66522, + [SMALL_STATE(2320)] = 66533, + [SMALL_STATE(2321)] = 66542, + [SMALL_STATE(2322)] = 66553, + [SMALL_STATE(2323)] = 66564, + [SMALL_STATE(2324)] = 66575, + [SMALL_STATE(2325)] = 66586, + [SMALL_STATE(2326)] = 66597, + [SMALL_STATE(2327)] = 66608, + [SMALL_STATE(2328)] = 66619, + [SMALL_STATE(2329)] = 66630, + [SMALL_STATE(2330)] = 66641, + [SMALL_STATE(2331)] = 66652, + [SMALL_STATE(2332)] = 66663, + [SMALL_STATE(2333)] = 66674, + [SMALL_STATE(2334)] = 66685, + [SMALL_STATE(2335)] = 66696, + [SMALL_STATE(2336)] = 66707, + [SMALL_STATE(2337)] = 66718, + [SMALL_STATE(2338)] = 66729, + [SMALL_STATE(2339)] = 66738, + [SMALL_STATE(2340)] = 66749, + [SMALL_STATE(2341)] = 66760, + [SMALL_STATE(2342)] = 66771, + [SMALL_STATE(2343)] = 66779, + [SMALL_STATE(2344)] = 66787, + [SMALL_STATE(2345)] = 66795, + [SMALL_STATE(2346)] = 66803, + [SMALL_STATE(2347)] = 66811, + [SMALL_STATE(2348)] = 66819, + [SMALL_STATE(2349)] = 66827, + [SMALL_STATE(2350)] = 66835, + [SMALL_STATE(2351)] = 66843, + [SMALL_STATE(2352)] = 66851, + [SMALL_STATE(2353)] = 66859, + [SMALL_STATE(2354)] = 66867, + [SMALL_STATE(2355)] = 66875, + [SMALL_STATE(2356)] = 66883, + [SMALL_STATE(2357)] = 66891, + [SMALL_STATE(2358)] = 66899, + [SMALL_STATE(2359)] = 66907, + [SMALL_STATE(2360)] = 66915, + [SMALL_STATE(2361)] = 66923, + [SMALL_STATE(2362)] = 66931, + [SMALL_STATE(2363)] = 66939, + [SMALL_STATE(2364)] = 66947, + [SMALL_STATE(2365)] = 66955, + [SMALL_STATE(2366)] = 66963, + [SMALL_STATE(2367)] = 66971, + [SMALL_STATE(2368)] = 66979, + [SMALL_STATE(2369)] = 66987, + [SMALL_STATE(2370)] = 66995, + [SMALL_STATE(2371)] = 67003, + [SMALL_STATE(2372)] = 67011, + [SMALL_STATE(2373)] = 67019, + [SMALL_STATE(2374)] = 67027, + [SMALL_STATE(2375)] = 67035, + [SMALL_STATE(2376)] = 67043, + [SMALL_STATE(2377)] = 67051, + [SMALL_STATE(2378)] = 67059, + [SMALL_STATE(2379)] = 67067, + [SMALL_STATE(2380)] = 67075, + [SMALL_STATE(2381)] = 67083, + [SMALL_STATE(2382)] = 67091, + [SMALL_STATE(2383)] = 67099, + [SMALL_STATE(2384)] = 67107, + [SMALL_STATE(2385)] = 67115, + [SMALL_STATE(2386)] = 67123, + [SMALL_STATE(2387)] = 67131, + [SMALL_STATE(2388)] = 67139, + [SMALL_STATE(2389)] = 67147, + [SMALL_STATE(2390)] = 67155, + [SMALL_STATE(2391)] = 67163, + [SMALL_STATE(2392)] = 67171, + [SMALL_STATE(2393)] = 67179, + [SMALL_STATE(2394)] = 67187, + [SMALL_STATE(2395)] = 67195, + [SMALL_STATE(2396)] = 67203, + [SMALL_STATE(2397)] = 67211, + [SMALL_STATE(2398)] = 67219, + [SMALL_STATE(2399)] = 67227, + [SMALL_STATE(2400)] = 67235, + [SMALL_STATE(2401)] = 67243, + [SMALL_STATE(2402)] = 67251, + [SMALL_STATE(2403)] = 67259, + [SMALL_STATE(2404)] = 67267, + [SMALL_STATE(2405)] = 67275, + [SMALL_STATE(2406)] = 67283, + [SMALL_STATE(2407)] = 67291, + [SMALL_STATE(2408)] = 67299, + [SMALL_STATE(2409)] = 67307, + [SMALL_STATE(2410)] = 67315, + [SMALL_STATE(2411)] = 67323, + [SMALL_STATE(2412)] = 67331, + [SMALL_STATE(2413)] = 67339, + [SMALL_STATE(2414)] = 67347, + [SMALL_STATE(2415)] = 67355, + [SMALL_STATE(2416)] = 67363, + [SMALL_STATE(2417)] = 67371, + [SMALL_STATE(2418)] = 67379, + [SMALL_STATE(2419)] = 67387, + [SMALL_STATE(2420)] = 67395, + [SMALL_STATE(2421)] = 67403, + [SMALL_STATE(2422)] = 67411, + [SMALL_STATE(2423)] = 67419, + [SMALL_STATE(2424)] = 67427, + [SMALL_STATE(2425)] = 67435, + [SMALL_STATE(2426)] = 67443, + [SMALL_STATE(2427)] = 67451, + [SMALL_STATE(2428)] = 67459, + [SMALL_STATE(2429)] = 67467, + [SMALL_STATE(2430)] = 67475, + [SMALL_STATE(2431)] = 67483, + [SMALL_STATE(2432)] = 67491, + [SMALL_STATE(2433)] = 67499, + [SMALL_STATE(2434)] = 67507, + [SMALL_STATE(2435)] = 67515, + [SMALL_STATE(2436)] = 67523, + [SMALL_STATE(2437)] = 67531, + [SMALL_STATE(2438)] = 67539, + [SMALL_STATE(2439)] = 67547, + [SMALL_STATE(2440)] = 67555, + [SMALL_STATE(2441)] = 67563, + [SMALL_STATE(2442)] = 67571, + [SMALL_STATE(2443)] = 67579, + [SMALL_STATE(2444)] = 67587, + [SMALL_STATE(2445)] = 67595, + [SMALL_STATE(2446)] = 67603, + [SMALL_STATE(2447)] = 67611, + [SMALL_STATE(2448)] = 67619, + [SMALL_STATE(2449)] = 67627, + [SMALL_STATE(2450)] = 67635, + [SMALL_STATE(2451)] = 67643, + [SMALL_STATE(2452)] = 67651, + [SMALL_STATE(2453)] = 67659, + [SMALL_STATE(2454)] = 67667, + [SMALL_STATE(2455)] = 67675, + [SMALL_STATE(2456)] = 67683, + [SMALL_STATE(2457)] = 67691, + [SMALL_STATE(2458)] = 67699, + [SMALL_STATE(2459)] = 67707, + [SMALL_STATE(2460)] = 67715, + [SMALL_STATE(2461)] = 67723, + [SMALL_STATE(2462)] = 67731, + [SMALL_STATE(2463)] = 67739, + [SMALL_STATE(2464)] = 67747, + [SMALL_STATE(2465)] = 67755, + [SMALL_STATE(2466)] = 67763, + [SMALL_STATE(2467)] = 67771, + [SMALL_STATE(2468)] = 67779, + [SMALL_STATE(2469)] = 67787, + [SMALL_STATE(2470)] = 67795, + [SMALL_STATE(2471)] = 67803, + [SMALL_STATE(2472)] = 67811, + [SMALL_STATE(2473)] = 67819, + [SMALL_STATE(2474)] = 67827, + [SMALL_STATE(2475)] = 67835, + [SMALL_STATE(2476)] = 67843, + [SMALL_STATE(2477)] = 67851, + [SMALL_STATE(2478)] = 67859, + [SMALL_STATE(2479)] = 67867, + [SMALL_STATE(2480)] = 67875, + [SMALL_STATE(2481)] = 67883, + [SMALL_STATE(2482)] = 67891, + [SMALL_STATE(2483)] = 67899, + [SMALL_STATE(2484)] = 67907, + [SMALL_STATE(2485)] = 67915, + [SMALL_STATE(2486)] = 67923, + [SMALL_STATE(2487)] = 67931, + [SMALL_STATE(2488)] = 67939, + [SMALL_STATE(2489)] = 67947, + [SMALL_STATE(2490)] = 67955, + [SMALL_STATE(2491)] = 67963, + [SMALL_STATE(2492)] = 67971, + [SMALL_STATE(2493)] = 67979, + [SMALL_STATE(2494)] = 67987, + [SMALL_STATE(2495)] = 67995, + [SMALL_STATE(2496)] = 68003, + [SMALL_STATE(2497)] = 68011, + [SMALL_STATE(2498)] = 68019, + [SMALL_STATE(2499)] = 68027, + [SMALL_STATE(2500)] = 68035, + [SMALL_STATE(2501)] = 68043, + [SMALL_STATE(2502)] = 68051, + [SMALL_STATE(2503)] = 68059, + [SMALL_STATE(2504)] = 68067, + [SMALL_STATE(2505)] = 68075, + [SMALL_STATE(2506)] = 68083, + [SMALL_STATE(2507)] = 68091, + [SMALL_STATE(2508)] = 68099, + [SMALL_STATE(2509)] = 68107, + [SMALL_STATE(2510)] = 68115, + [SMALL_STATE(2511)] = 68123, + [SMALL_STATE(2512)] = 68131, + [SMALL_STATE(2513)] = 68139, + [SMALL_STATE(2514)] = 68147, + [SMALL_STATE(2515)] = 68155, + [SMALL_STATE(2516)] = 68163, + [SMALL_STATE(2517)] = 68171, + [SMALL_STATE(2518)] = 68179, + [SMALL_STATE(2519)] = 68187, + [SMALL_STATE(2520)] = 68195, + [SMALL_STATE(2521)] = 68203, + [SMALL_STATE(2522)] = 68211, + [SMALL_STATE(2523)] = 68219, + [SMALL_STATE(2524)] = 68227, + [SMALL_STATE(2525)] = 68235, + [SMALL_STATE(2526)] = 68243, + [SMALL_STATE(2527)] = 68251, + [SMALL_STATE(2528)] = 68259, + [SMALL_STATE(2529)] = 68267, + [SMALL_STATE(2530)] = 68275, + [SMALL_STATE(2531)] = 68283, + [SMALL_STATE(2532)] = 68291, + [SMALL_STATE(2533)] = 68299, + [SMALL_STATE(2534)] = 68307, + [SMALL_STATE(2535)] = 68315, + [SMALL_STATE(2536)] = 68323, + [SMALL_STATE(2537)] = 68331, + [SMALL_STATE(2538)] = 68339, + [SMALL_STATE(2539)] = 68347, + [SMALL_STATE(2540)] = 68355, + [SMALL_STATE(2541)] = 68363, + [SMALL_STATE(2542)] = 68371, + [SMALL_STATE(2543)] = 68379, + [SMALL_STATE(2544)] = 68387, + [SMALL_STATE(2545)] = 68395, + [SMALL_STATE(2546)] = 68403, + [SMALL_STATE(2547)] = 68411, + [SMALL_STATE(2548)] = 68419, + [SMALL_STATE(2549)] = 68427, + [SMALL_STATE(2550)] = 68435, + [SMALL_STATE(2551)] = 68443, + [SMALL_STATE(2552)] = 68451, + [SMALL_STATE(2553)] = 68459, + [SMALL_STATE(2554)] = 68467, + [SMALL_STATE(2555)] = 68475, + [SMALL_STATE(2556)] = 68483, + [SMALL_STATE(2557)] = 68491, + [SMALL_STATE(2558)] = 68499, + [SMALL_STATE(2559)] = 68507, + [SMALL_STATE(2560)] = 68515, + [SMALL_STATE(2561)] = 68523, + [SMALL_STATE(2562)] = 68531, + [SMALL_STATE(2563)] = 68539, + [SMALL_STATE(2564)] = 68547, + [SMALL_STATE(2565)] = 68555, + [SMALL_STATE(2566)] = 68563, + [SMALL_STATE(2567)] = 68571, + [SMALL_STATE(2568)] = 68579, + [SMALL_STATE(2569)] = 68587, + [SMALL_STATE(2570)] = 68595, + [SMALL_STATE(2571)] = 68603, + [SMALL_STATE(2572)] = 68611, + [SMALL_STATE(2573)] = 68619, + [SMALL_STATE(2574)] = 68627, + [SMALL_STATE(2575)] = 68635, + [SMALL_STATE(2576)] = 68643, + [SMALL_STATE(2577)] = 68651, + [SMALL_STATE(2578)] = 68659, + [SMALL_STATE(2579)] = 68667, + [SMALL_STATE(2580)] = 68675, + [SMALL_STATE(2581)] = 68683, + [SMALL_STATE(2582)] = 68691, + [SMALL_STATE(2583)] = 68699, + [SMALL_STATE(2584)] = 68707, + [SMALL_STATE(2585)] = 68715, + [SMALL_STATE(2586)] = 68723, + [SMALL_STATE(2587)] = 68731, + [SMALL_STATE(2588)] = 68739, + [SMALL_STATE(2589)] = 68747, + [SMALL_STATE(2590)] = 68755, + [SMALL_STATE(2591)] = 68763, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -135234,2771 +132622,2739 @@ 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(1191), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1191), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(440), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2148), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(38), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [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(100), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(839), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2617), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1530), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1531), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(794), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(796), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2614), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2362), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(645), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(58), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(653), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(624), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2358), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(183), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2602), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1391), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1961), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2550), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2544), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2543), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1203), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1520), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1348), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(71), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2261), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1514), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(666), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2534), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(56), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(576), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2254), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(924), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1870), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(899), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(904), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2521), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1419), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(904), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1181), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(267), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1993), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(34), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(100), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(838), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2591), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1527), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1522), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(781), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(782), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2588), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2282), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(615), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(60), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(645), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(599), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2271), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(160), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2584), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1381), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2038), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2574), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2571), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2525), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1189), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1513), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1331), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(58), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2329), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1503), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(646), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2514), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(568), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2297), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(986), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1817), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1080), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1083), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2509), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1409), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1083), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [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(2480), + [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(646), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [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(1193), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 141), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 141), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(787), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(38), - [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(13), - [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(100), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(839), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2617), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2023), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2205), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(794), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(830), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(643), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(67), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2270), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(128), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2204), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(68), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(666), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2534), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(56), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(576), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2254), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(924), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1870), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(899), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(904), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2521), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(904), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(775), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(16), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(34), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(100), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(838), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2591), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1915), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2318), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(781), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(803), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(609), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(54), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2285), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(176), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2317), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(52), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(646), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2514), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(62), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(568), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2297), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(986), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1817), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1080), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1083), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2509), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1083), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 141), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 141), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 89), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 89), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 220), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 220), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 89), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 89), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 220), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 220), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 132), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 132), [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 239), [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 239), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [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_else_clause, 2), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 97), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 97), [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [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), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 132), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 132), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 111), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 111), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(262), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(506), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(511), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(513), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2545), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(594), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1875), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(585), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(575), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2347), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1122), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1955), - [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(2596), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1583), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1655), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1592), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2392), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2285), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(660), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(630), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2397), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1391), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2071), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2398), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2399), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2400), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2011), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1591), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1352), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2286), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1509), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(666), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2603), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2407), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1412), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2407), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 129), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 129), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 128), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 128), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 130), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 130), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 131), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 131), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 127), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 127), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 136), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 136), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 94), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 94), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 135), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 135), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 137), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 137), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 102), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 102), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 107), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 107), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 197), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 197), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 198), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 198), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 199), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 199), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 87), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 87), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 248), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 248), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 243), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 243), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 247), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 247), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 246), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 246), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 91), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 91), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 207), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 207), - [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_function_item, 6, .production_id = 175), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 127), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 127), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 245), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 245), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 237), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 237), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 244), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 244), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 243), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 243), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 242), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 242), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 231), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 231), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 241), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 241), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 240), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 240), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 208), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 208), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 238), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 238), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 237), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 237), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 236), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 236), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 217), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 217), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 235), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 235), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 85), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 85), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 234), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 234), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 227), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 227), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 210), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 210), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 231), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 231), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 230), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 230), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 205), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 205), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 229), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 229), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 227), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 227), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 110), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 110), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 86), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 86), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 226), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 226), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 225), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 225), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 224), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 224), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 222), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 222), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 219), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 219), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 218), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 218), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 217), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 217), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 216), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 216), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 210), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 210), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 215), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 215), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 211), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 211), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 214), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 214), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 212), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 212), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(507), - [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(541), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(540), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(539), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2549), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(594), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1875), - [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(585), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(507), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(508), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(531), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(530), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(526), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(508), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(610), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1900), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(633), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1360), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(577), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(581), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1403), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2267), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1386), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2487), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(666), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2456), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1466), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(616), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(617), - [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1467), - [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2241), - [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1446), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1877), - [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1409), - [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2018), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2018), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 111), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 111), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(250), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(493), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(495), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(498), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2546), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(596), + [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1805), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(587), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(572), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2309), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(932), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1973), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2463), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1569), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1621), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1583), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2364), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2243), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(651), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(601), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1381), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2085), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2371), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2372), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1929), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1580), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1335), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2234), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1498), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(646), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2476), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2379), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1404), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2379), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 229), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 229), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 205), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 205), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 230), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 230), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 231), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 231), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 227), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 227), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 226), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 226), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 225), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 225), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 210), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 210), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 224), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 224), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 233), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 233), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 222), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 222), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 227), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 227), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 234), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 234), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 219), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 219), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 235), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 235), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 218), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 218), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 217), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 217), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 217), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 217), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 216), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 216), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 236), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 236), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 215), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 215), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 214), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 214), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 212), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 212), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 237), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 237), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 211), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 211), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 238), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 238), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 210), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 210), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 208), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 208), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 85), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 85), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 207), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 207), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 86), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 86), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 87), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 87), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 240), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 240), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 241), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 241), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 231), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 231), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 242), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 242), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 91), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 91), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 92), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 92), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 243), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 243), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 244), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 244), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 94), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 94), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 237), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 237), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 245), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 245), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 199), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 199), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 110), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 110), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 91), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 91), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 198), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 198), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 197), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 197), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 92), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 92), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 246), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 246), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 247), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 247), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 92), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 92), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 243), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 243), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 248), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 248), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 92), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 92), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 136), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 136), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 127), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 127), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 128), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 128), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 129), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 129), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 130), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 130), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 131), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 131), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 135), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 135), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 137), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 102), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 102), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 127), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 127), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 107), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 107), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(492), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(529), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(522), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(520), + [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2583), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(596), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1805), + [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(587), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(492), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(502), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(514), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(540), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(533), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(502), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(636), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1816), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(597), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1350), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(565), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(571), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1407), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2281), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1379), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2487), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(598), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(646), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2473), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1476), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(627), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(625), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1494), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2203), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1418), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1874), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1393), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2003), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2003), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2487), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2487), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [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 = false}}, REDUCE(sym_closure_parameters, 2), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), [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_except_range, 1, .production_id = 1), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [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(706), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [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_field_expression, 3, .production_id = 44), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 90), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 90), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 88), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 88), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 109), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 109), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 104), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 104), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 101), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 101), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 98), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 98), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 125), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 125), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 133), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 133), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 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_field_initializer_list, 2), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 111), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 111), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 111), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2561), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [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 = false}}, REDUCE(sym_visibility_modifier, 1), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 221), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 134), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 111), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 126), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 124), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [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}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(626), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(504), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(503), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(517), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1598), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1599), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1397), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(199), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 200), - [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 101), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 101), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 228), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 228), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 200), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1194), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1858), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 110), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(631), - [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 99), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1219), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(73), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 201), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(40), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 223), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 101), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1577), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(701), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(602), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1603), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1589), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1601), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [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(695), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 90), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 90), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 109), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 109), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 104), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 104), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 101), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 101), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 98), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 98), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 88), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 88), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 125), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 125), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 133), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 133), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 111), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 111), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 111), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2533), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 134), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 111), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 126), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 221), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 124), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 31), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [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(1622), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [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, 6, .production_id = 54), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(494), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1578), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1564), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(620), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 228), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1387), + [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(192), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 200), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 101), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 228), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 200), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 101), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1188), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 110), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(633), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1883), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1579), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 101), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 223), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 201), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(745), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 99), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1568), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(595), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(127), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1334), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1587), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), - [4966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(578), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 91), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [5089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2283), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(257), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1349), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 140), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [5146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1711), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 138), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(200), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 80), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 81), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5588] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(570), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(43), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1596), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 91), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2268), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(248), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(197), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 140), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1674), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 138), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5525] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 80), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 81), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), }; #ifdef __cplusplus